Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than user32, prefix the name with the module name and a period.
<DllImport("user32.dll")> _
Private Shared Function ReleaseDC(ByVal hWnd As IntPtr, ByVal hDC As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
End Function
VB Signature:
Public Declare Function ReleaseDC Lib "user32.dll" _
(ByVal hWnd As Long, _
ByVal prmlngHDc As Long) As Long
Notes:
The application must call the ReleaseDC function for each call to the GetWindowDC function and for each call to the GetDC function that retrieves a common DC.
An application cannot use the ReleaseDC function to release a DC that was created by calling the CreateDC function; instead, it must use the DeleteDC function. ReleaseDC must be called from the same thread that called GetDC.
The effect of the ReleaseDC function depends on the type of DC. It frees only common and window DCs. It has no effect on class or private DCs.
Tips & Tricks:
Using managed DC functions for API's that require the DC work almost just as well as the API DC functions themselves.
For .NET Compact Framework, change user32.dll to coredll.dll.
8-5-06 Update by Gabriel T. Sharp (osirisgothra@hotmail.com)
[DllImport("user32.dll", ExactSpelling = true)]
public static extern int ReleaseDC(IntPtr hWnd, IntPtr hDC);
Creates a device context for a device using the specified name.
10/27/2016 8:27:49 AM - -202.74.138.1
The DeleteDC function deletes the specified device context (DC).
7/18/2014 6:45:54 PM - Seri-109.90.29.109
The TextOut API
4/21/2013 6:44:24 AM - -81.217.152.144
The GetTextExtentPoint32 API
3/3/2011 4:42:48 AM - -129.188.33.26
Please edit this page!
Do you have...
helpful tips or sample code to share for using this API in managed code?
corrections to the existing content?
variations of the signature you want to share?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing supporting types needed for this API (structures, delegates, and more).