Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Enumerating data formats currently available on the clipboard
Adding and deleting Scheduled Tasks using NetScheduleJob API functions
Winsock: sending email messages (SMTP, port 25)
Mapping and disconnecting network drives
Winsock: retrieving directory listing from an FTP server using passive data connection (FTP, port 21)
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Converting Unicode data from the Clipboard to a character string using a given code page
Custom GDI+ class
Disk in drive A:
How to display the Properties dialog box for a file (ShellExecuteEx)
Enumerating network resources
Detecting changes in connections to removable drives (VFP9)
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
Using EnumPrinters function to enumerate locally installed printers
How to download a file from the FTP server using FtpGetFile
How to play AVI file on the _screen
Retrieving the name of the network resource associated with a local device
Creating a console window for Visual FoxPro application
Custom HttpRequest class (WinHTTP)
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Custom FTP Class for Visual FoxPro application
How to put a horizontal text scrolling on the form (a news line)
Deleting files into the Recycle Bin
Using the heap of the calling process to allocate memory blocks

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
 
LOCAL lnAlloc0, lnAlloc1, hProcHeap, hMem
 
* retrieving a handle to the heap of the calling process
hProcHeap = GetProcessHeap()
 
? "Retrieving the handle of the calling process heap:", hProcHeap
?
 
* three number of bytes values to allocate
lnAlloc0 = 4096
lnAlloc1 = 0x20000
lnAlloc2 = 0xffff
 
? "Allocating and resizing a memory block from the process heap:"
hMem = HeapAlloc (hProcHeap, HEAP_ZERO_MEMORY, lnAlloc0)
? "   - allocated:",;
    HeapSize(hProcHeap, 0, hMem), ", handle: ", hMem
 
* resizing the memory block - the first try
hMem = HeapReAlloc (hProcHeap, HEAP_ZERO_MEMORY, hMem, lnAlloc1)
? "   - reallocated:",;
    HeapSize(hProcHeap, 0, hMem), ", handle: ", hMem
 
* resizing the memory block - the second try
hMem = HeapReAlloc (hProcHeap, HEAP_ZERO_MEMORY, hMem, lnAlloc2)
? "   - reallocated:",;
    HeapSize(hProcHeap, 0, hMem), ", handle: ", hMem
 
?
? "Releasing allocated memory block:",;
    Iif (HeapFree(hProcHeap, 0,hMem)=0, "failed", "Ok")
 
PROCEDURE  decl
    DECLARE INTEGER GetProcessHeap IN kernel32
 
    DECLARE INTEGER HeapAlloc IN kernel32;
        INTEGER hHeap, INTEGER dwFlags, INTEGER dwBytes
 
    DECLARE INTEGER HeapSize IN kernel32;
        INTEGER hHeap, INTEGER dwFlags, INTEGER lpMem
 
    DECLARE INTEGER HeapFree IN kernel32;
        INTEGER hHeap, INTEGER dwFlags, INTEGER lpMem
 
    DECLARE INTEGER HeapReAlloc IN kernel32;
        INTEGER hHeap, INTEGER dwFlags, INTEGER lpMem,;
        INTEGER dwBytes
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
1481 bytes  
Created: 2001-12-01 08:12:27  
Modified: 2005-12-27 10:42:16  
Visits in 7 days: 96  
Listed functions:
GetProcessHeap
HeapAlloc
HeapFree
HeapReAlloc
HeapSize
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 (54.224.79.93)
4 sec.Example: 'Winsock: how to retrieve the protocol information corresponding to a protocol name'
28.6 min.Example: 'Sending email messages with Simple MAPI'
51.6 min.Function: 'SCardListReaderGroups'
51.65 min.Example: 'Using the SetErrorMode for determining if a floppy drive is ready'
1.43 hrs.
Function group: 'Virtual Hard Disk (Win7)'
3.93 hrs.Function: 'HeapAlloc'
 Examples
Page 4
7.1 hrs.Example: 'Establishing connection using the SQLDriverConnect'
Language: 'C++'
 Example: 'How to prevent users from accessing the Windows Desktop and from switching to other applications'
9.17 hrs.Example: 'Retrieving the User Datagram Protocol (UDP) listener table'
Google
Advertise here!