PaintDesktop(HDC);//Paint the form with the Desktop BackGround
g.ReleaseHdc(HDC);//Release the Device Context
g.Dispose();
}
Alternative Managed API:
Do you know one? Please contribute it!
The PaintDesktop API
4/24/2008 6:20:10 PM - -67.40.219.42
An IntPtr is a pointer to a memory location (unmanaged) that adapts to the platform it is running on (64-bit, etc.) UNLIKE a standard int/Integer. You should always use this type for unmanaged calls that require it, even though an int will appear to work on your development machine.