Blog

COBOL Runtime Error Code – 012 Attempt to open a file which is already

In this post, you’ll learn about the COBOL runtime Error Code 012 and the reason why you are receiving it COBOL Error Code : 012 Reason for this Error in COBOL Attempt to open a file which is already open (Recoverable) -You have tried to open a file which is already open and so cannot be opened again. -Cancel your second attempt to open the…

Windows System Error Code 1400 – ERROR_INVALID_WINDOW_HANDLE (0x578)]

In this post, you’ll learn about the Windows System Error ERROR_INVALID_WINDOW_HANDLE (0x578)] and the reason why you are receiving the error message How does this Error in Windows Look like? Error Code 1400 ERROR_INVALID_WINDOW_HANDLE (0x578)] Why do you receive the System Error Error Code 1400 ERROR_INVALID_WINDOW_HANDLE (0x578)] in Windows? Invalid window handle.

Creating a Simple Canvas in Silverlight using XAML

Below is a sample code snippet for creating a canvas control in Silverlight 5 using XAML. Creating a Simple Canvas in Silverlight using XAML <Canvas x:Name=”ACCanvas” xmlns=”http://schemas.microsoft.com/client/2007″ xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml” Background=”Green” Width=”400″ Height=”300″ > </Canvas>