Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Winsock: creating a socket that is bound to a specific service provider
Extracting the name and extension parts of a path string
How to obtain Content-Type value for a file type from the System Registry
How to obtain the number of rows affected by remote UPDATE, INSERT or DELETE statement
How to retrieve information about a cache entry (Internet Explorer)
Loading a string resource from an executable file
Peer-to-peer LAN messenger built with Mailslot API functions
Scanning a hierarchy of child windows down from the Windows Desktop
Setting properties of the window: caption and user-defined value
Testing Transparent Menu Class with top-level form (requires VFP9)
How to make a VFP form fading out when released (GDI version)
Memory usage info for current VFP session (WinNT only)
Retrieving the state of your Internet connection
Using FrameRgn for displaying system colors
Drawing standard Windows icons
Scanning the hierarchy of child windows down from the main VFP window
Using an Event Object. Part B: running an application responding to events
Using vendor-neutral SQL constructs
GDI+: Creating thumbnails to preview images in a directory
Using InternetGoOnline function
Winsock: resolving an address to a host name
Winsock: retrieving information about available transport protocols
Comparing file times
Opening the Page Setup dialog box to specify the attributes of a printed page
Retrieving information about the main VFP window

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
 
#DEFINE GWL_WNDPROC -4
#DEFINE GWL_HINSTANCE -6
#DEFINE GWL_HWNDPARENT -8
#DEFINE GWL_STYLE -16
#DEFINE GWL_EXSTYLE -20
#DEFINE GWL_USERDATA -21
#DEFINE GWL_ID -12
 
DO declare
 
LOCAL hWindow
hWindow = GetActiveWindow()
 
? "Window procedure:", GetWindowLong (m.hWindow, GWL_WNDPROC)
? "Application instance:", GetWindowLong (m.hWindow, GWL_HINSTANCE)
? "Parent window:", GetWindowLong (m.hWindow, GWL_HWNDPARENT)
? "Window styles:", GetWindowLong (m.hWindow, GWL_STYLE)
? "Extended window styles:", GetWindowLong (m.hWindow, GWL_EXSTYLE)
? "User data associated:", GetWindowLong (m.hWindow, GWL_USERDATA)
? "Identifier of the window:", GetWindowLong (m.hWindow, GWL_ID)
? "Class name:", GetClsName(m.hWindow)
?
 
? "*** Application handle returned by:"
? "    GetModuleHandle:", GetModuleHandle(NULL)
? "    GetWindowLong:", GetWindowLong (m.hWindow, GWL_HINSTANCE)
?
 
* E_MAGIC
* the GetModuleHandle actually returns the address 
* the executable is mapped into memory
LOCAL hModule, cBuffer
hModule = GetModuleHandle(NULL)
cBuffer = REPLICATE(CHR(0),2)
= MemToStr(@cBuffer, hModule, LEN(cBuffer))
 
* as you may expect, the signature is "MZ", 
* the initials of Mark Zbikowski, one of the original architects of MS-DOS.
? "MS-DOS signature:", cBuffer
 
* end of main
 
FUNCTION GetClsName(hWindow)
    LOCAL nBufsize, cBuffer
    cBuffer = Repli(Chr(0), 250)
    nBufsize = GetClassName(hWindow, @cBuffer, Len(cBuffer))
RETURN SUBSTR(cBuffer, 1, nBufsize)
 
PROCEDURE declare
    DECLARE INTEGER GetModuleHandle IN kernel32 STRING @lpModuleName 
    DECLARE INTEGER GetActiveWindow IN user32
 
    DECLARE INTEGER GetClassName IN user32;
        INTEGER hWnd, STRING lpClassName, INTEGER nMaxCount
 
    DECLARE INTEGER GetWindowLong IN user32;
        INTEGER hWindow, INTEGER nIndex
 
    DECLARE RtlMoveMemory IN kernel32 As MemToStr;
        STRING @dst, INTEGER src, INTEGER nLength
 
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
1919 bytes  
Created: 2001-08-21 12:00:00  
Modified: 2005-11-23 16:47:56  
Visits in 7 days: 95  
Listed functions:
GetActiveWindow
GetClassName
GetModuleHandle
GetWindowLong
Printer friendly API declarations
My comment:
Recommended reading:
An In-Depth Look into the Win32 Portable Executable File Format by Matt Pietrek
Word Index links for this example:
Translate this page:
  Spanish    Portuguese    German    French    Italian  
FreeTranslation.com offers instant, free translations of text or web pages.
User Contributed Notes:
There are no notes on this subject.


Copyright © 2001-2013 News2News, Inc. Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use. The information on this page is presented AS IS, meaning that you may use it at your own risk. Microsoft Visual FoxPro and Windows are trade marks of Microsoft Corp. All other trademarks are the property of their respective owners. 

Privacy policy
Credits: PHP (4.4.9), an HTML-embedded scripting language, MySQL (5.1.55-log), the Open Source standard SQL database, AceHTML Freeware Version 4, freeware HTML Editor of choice.   Hosted by Korax Online Inc.
Last Topics Visited (184.72.184.104)
1.39 hrs.Function: 'RegCloseKey'
Function group: 'Registry'
 
Function group: 'Windows Sockets 2 (Winsock)'
3.35 hrs.Example: 'Enumerating Processes -- Win9*'
 Function: 'RegQueryValueEx'
Function group: 'Registry'
7 hrs.Example: 'How to drag a Form not using its Titlebar or Caption'
 Example: 'How to generate UUID values'
8.6 hrs.Function: 'GetProcessHeap'
 Example: 'How to create MD-5 and SHA-1 hash values from a string'
 Function: 'GetProcessIoCounters'
Function group: 'Process and Thread'
11.39 hrs.Example: 'How to view icons stored in executable files (Icon Viewer)'
Google
Advertise here!