Using Win32 (WinAPI) Functions in Microsoft Visual FoxProAdd Microsoft Win32 functionality to your Visual FoxPro applications! This web site presents declarations and FoxPro code samples for over 1,100 Windows API functions.API function: GetWorldTransform- April 30, 2007 Retrieves the current world-space to page-space transformation.http://www.news2news.com/vfp/?function=1070 API function: DPtoLP- April 27, 2007 Converts device coordinates into logical coordinates.http://www.news2news.com/vfp/?function=1069 API function: LPtoDP- April 27, 2007 Converts logical coordinates into device coordinates.http://www.news2news.com/vfp/?function=1068 API function: ClientToScreen- April 27, 2007 Converts the client-area coordinates of a specified point to screen coordinates.http://www.news2news.com/vfp/?function=1067 API function: GetMapMode- April 27, 2007 Retrieves the current mapping mode.http://www.news2news.com/vfp/?function=1065 API function: SetMapMode- April 27, 2007 Sets the mapping mode of the specified device context.http://www.news2news.com/vfp/?function=1066 API function: SetGraphicsMode- April 27, 2007 Sets the graphics mode for the specified device context.http://www.news2news.com/vfp/?function=1064 API function: GetGraphicsMode- April 27, 2007 Retrieves the current graphics mode for the specified device context.http://www.news2news.com/vfp/?function=1063 Code sample: How to make a VFP form fading out when released- April 16, 2007 When a VFP form is released, usually it disappears immediately. Wouldnt it be nice to have the form slowly (or less slowly) fading outAn obvious way of doing that is covering the form with another window, which holds the image of the original form. Once covered, the original form disappears. After that the covering window gradually changes its opacity (alpha channel) from opaque (255) to completely transparent (0).http://www.news2news.com/vfp/?example=527 |