Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
URL: converting unsafe characters and spaces into escape sequences
Using GetSysColor
Using the Semaphore object
Creating hash values for the list of names
Enumerating connections made to a shared resource for the local computer (WinNT only)
GDI+: loading image file, drawing on it, saving the result to another file
Pocket PC: retrieving data from the Contacts Database
Reading keys in the specified section of the Win.ini file
Retrieving information about all users currently logged on to the workstation (WinNT only)
Using Multimedia Command Strings to play MIDI files
Changing pitch and speed of a wave file
How to drag a Form not using its Titlebar or Caption
How to retrieve information about a cache entry (Internet Explorer)
Retrieving configuration information for the specified server (Win2000/XP)
Retrieving System Error message strings
Retrieving the name of the network resource associated with a local device
String representation for disk or memory capacity
Another way to go online (it is not about choosing an ISP)
StrDup returns a pointer to the duplicate of a source VFP string
Listing INF files in a specified directory
The SQLGetProp() creates a bridge between Visual FoxPro and the ODBC API
Using the CopyFile
Enhanced GetFont dialog
GDI+: Using Scale and Shear transformations
Validating the heap of the calling process

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
 
DO decl
 
#DEFINE HEAP_ZERO_MEMORY   8
 
* MSDN: the HEAP_NO_SERIALIZE value can, be safely used 
* the process has only one thread -- this is how the VFP is
#DEFINE HEAP_NO_SERIALIZE  1
 
LOCAL hProcHeap, lnFreeSize
 
* retrieving a handle to the heap of the calling process
hProcHeap = GetProcessHeap()
? "Calling process heap handle:", hProcHeap
 
* making an attempt to compact the calling process heap
* supported in Windows NT/2000/XP, not in Windows 95/98/Me
lnFreeSize = HeapCompact (hProcHeap, HEAP_NO_SERIALIZE)
IF lnFreeSize = 0
* 120 = This function is not supported on this system.
    ? "Error code:", GetLastError()
ELSE
    ? "The largest committed free block in the heap:",;
            ALLTRIM(TRANS(lnFreeSize, "999,999,999,999,999")), "bytes"
ENDIF
 
* validating the calling process heap
? "The heap is valid:",;
    Iif(HeapValidate (hProcHeap, HEAP_NO_SERIALIZE, 0)=0, "No","Yes")
 
PROCEDURE  decl
    DECLARE INTEGER GetLastError IN kernel32
    DECLARE INTEGER GetProcessHeap IN kernel32
 
    DECLARE INTEGER HeapCompact IN kernel32;
        INTEGER hHeap, INTEGER dwFlags
 
    DECLARE INTEGER HeapValidate IN kernel32;
        INTEGER hHeap, INTEGER dwFlags, INTEGER lpMem
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
1189 bytes  
Created: 2001-12-01 08:43:07  
Modified: 2001-12-01 08:43:41  
Visits in 7 days: 87  
Listed functions:
GetLastError
GetProcessHeap
HeapCompact
HeapValidate
Printer friendly API declarations
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 (50.16.36.153)
6.47 min.Example: 'How to change the name and the size of the font in the MessageBox dialog'
6.55 min.Example: 'Minimizing all running applications'
6.62 min.Function: 'GetObjectType'
Function group: 'Device Context'
1.57 hrs.Example: 'How to make a VFP form fading out when released (GDI version)'
3.11 hrs.Function: 'CreateProcessAsUser'
Function group: 'Process and Thread'
4.58 hrs.Example: 'How to delete IE cookies, clear IE history and delete files in Temporary Internet Files directory'
 Example: 'Encapsulating access to the Windows Services in a class'
4.8 hrs.Function: 'AVIStreamLength'
Function group: 'Windows Multimedia'
 Example: 'Extensible Storage Engine class library'
6.54 hrs.Example: 'How to display Windows On-Screen Keyboard'
Google
Advertise here!