Skip to content

Latest commit

 

History

History
119 lines (99 loc) · 6.76 KB

ReleaseDC.md

File metadata and controls

119 lines (99 loc) · 6.76 KB

Home

Function name : ReleaseDC

Group: Device Context - Library: user32


The ReleaseDC function releases a device context (DC), freeing it for use by other applications. For memory device contexts use the DeleteDC function.


Code examples:

How to view icons stored in executable files (Icon Viewer) - II
Printing text on the client area of the main VFP window
Printing text on the main VFP window
Using GetNearestColor
Creating a window using CreateWindowEx function
Placing an arbitrary rectangular area of main VFP window on the Clipboard
How to copy the image of a form to the Clipboard using Bitmap API functions
Drawing standard Windows icons
How to view icons stored in executable files (Icon Viewer)
Using FrameRgn for displaying system colors
Creating a clipping region from the path selected into the device context of a form
How to print FoxPro form
Converting twips to pixels and vice versa
Storing screen shot of a form to bitmap file
Retrieving graphic capabilities of your display
Storing content of the Clipboard to a bitmap file
Drawing icons associated with the VFP main window
Drawing cursors for the classes defined by the system (preregistered): BUTTON, EDIT, LISTBOX etc.
Using the LoadImage function to have a bitmap file loaded and displayed on VFP main window
How to print a bitmap file
Obtaining the bounding rectangle for the specified device context
Drawing a window caption using the DrawCaption routine
Drawing Windows predefined bitmaps using the LoadBitmap functions
Drawing Windows frame controls using the DrawFrameControl function
Drawing a rectangle using Windows regular edges and borders
Displaying bitmap using the AlphaBlend function
Splash Screen for the VFP application
Bitmap Class for Visual FoxPro application
Using the DrawText function
Using Font and Text functions
Reading metrics for the currently selected font
How to put a horizontal text scrolling on the form (a news line, marquee)
Using the GradientFill function
How to put a vertical text scrolling on the form (a movie cast)
Displaying animated images on FoxPro form with BitBlt and StretchBlt functions
Printing text with the Escape function
Subclassing CommandButton control to create BackColor property
Vertical Label control
Storing screen shot of a form to enhanced metafile (*.emf)
How to display picture stored in enhanced-format metafile (*.emf)
Copying picture of the active form to the Clipboard using Enhanced Metafile API functions
How to print picture stored in enhanced-format metafile (*.emf)
How to print FoxPro form -- II
Form Magnifier
How to play AVI file on the _screen
How to change the name and the size of the font in the MessageBox dialog
GDI+: saving image of FoxPro form to graphics file (BMP, GIF, JPG, PNG, TIF)
GDI+: sending image of FoxPro form to printer
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file
Placing On-screen Alert on top of all windows
GDI+: how to make VFP controls visually shake and shudder
How to make a VFP form fading out when released (GDI+ version)
How to make a VFP form fading out when released (GDI version)
Displaying the associated icons and descriptions for files and folders
GDI+: Scrolling through large image using the mouse
GDI+: Creating thumbnails to preview images in a directory
GDI+ fun: roach-infested desktop
GDI+: Color Transparency
How to find which fonts Windows uses for drawing captions, menus and message boxes
GDI+: Implementing image scrolling with inertia
GDI+: custom control, base class

Declaration:

int ReleaseDC(
    HWND  hwnd,	// handle of window
    HDC  hdc 	// handle of device context
   );  

FoxPro declaration:

DECLARE INTEGER ReleaseDC IN user32;
	INTEGER hwnd,;
	INTEGER hdc
  

Parameters:

hwnd Identifies the window whose device context is to be released

hdc Identifies the device context to be released


Return value:

The return value specifies whether the device context is released. If the device context is released, the return value is 1


Comments:

Once you obtain a device context (retrieved by GetDC, or GetWindowDC functions), you may write to the window. At the end of this process the device context must be released using ReleaseDC. Otherwise you will have a memory leak.

GDI Black Book: remember, use the ReleaseDC function only for a display device context that was retrieved from the GDI device-context cache. After you"re done with the memory device context, you must free it by using the DeleteDC function.

Finally:

  • use ReleaseDC for forms (the hwnd used as the first parameter)
  • use DeleteDC for memory device contexts (e.g. CreateCompatibleDC function)