Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Obtaining MAC address through Address Resolution Protocol (ARP) request
One more way to retrieve environment strings
How to drag a Form not using its Titlebar or Caption
Obtaining the System and Windows folder names
Reading keys in the specified section of the Win.ini file
Saying "Hello World!" with VFP and WinAPI
How to play a waveform sound (a WAV file in particular)
Using the GetLogicalDriveStrings
Extended OS Version info
PocketPC: creating directories and files
Determining whether or not the system is connected to the Internet
Pocket PC: modifying keys in the System Registry
Retrieving graphic capabilities of default printer
Retrieving statistics for the TCP protocol running on the local computer
Retrieving the priority class for the current process
StrDup returns a pointer to the duplicate of a source VFP string
Basic Volume information
Retrieving current user for the process
Copying strings through the global memory block
Retrieving the System Time adjustment
Creating two-byte hashes for a list of URLs
Obtaining window class name for the main VFP window
Retrieving the path of the printer-driver directory and printer-processor directory
Enumerating Performance Counters
Creating a file, then moving it to another destination

User rating: 9/10 (1 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
Before you begin:
See also:
  • Displaying standard progress dialog box when copying files

  •  
    #DEFINE CREATE_ALWAYS 2
    #DEFINE FILE_ATTRIBUTE_NORMAL 128
     
    DO declare
     
    lpFileName = "C:\Temp\mytest.txt"
    lpNewFileName = "C:\Temp\mytest1.txt"
     
    hFile = CreateFile(lpFileName, 0, 0, 0,;
        CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0)
     
    ? "File handle returned:", hFile
    = CloseHandle (hFile)
    = MoveFile(lpFileName, lpNewFileName)
     
    PROCEDURE declare
        DECLARE INTEGER MoveFile IN kernel32;
            STRING lpExistingFileName, STRING lpNewFileName
     
        DECLARE INTEGER CreateFile IN kernel32;
            STRING lpFileName, INTEGER dwDesiredAccess,;
            INTEGER dwShareMode, INTEGER lpSecurityAttributes,;
            INTEGER dwCreationDisposition,;
            INTEGER dwFlagsAndAttributes, INTEGER hTemplateFile
     
        DECLARE INTEGER CloseHandle IN kernel32 INTEGER hObject
     
     
     

    User rating: 9/10 (1 votes)
    Rate this code sample:
    • ~
    746 bytes  
    Created: 2001-07-12 12:00:00  
    Modified: 2006-03-16 08:59:58  
    Visits in 7 days: 36  
    Listed functions:
    CloseHandle
    CreateFile
    MoveFile
    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.17.109.248)
    4 sec.Function: 'SQLDriverConnect'
    Function group: 'ODBC API'
    2.48 hrs.Function: 'CeRegDeleteKey'
     Example: 'How to enable the SE_SHUTDOWN_NAME privilege for the application'
     Example: 'GDI+: sending image of FoxPro form to printer'
    7.71 hrs.Function: 'GdipGetImageDecodersSize'
    Function group: 'GDI+'
     Example: 'Obtaining physical parameters for a drive: sectors, clusters, cylinders...'
    8.51 hrs.Example: 'Reading Internet Query options'
    9.79 hrs.Function: 'StretchBlt'
    Function group: 'Bitmap'
    10.24 hrs.Function: 'SHGetFolderLocation'
    10.25 hrs.Example: 'URL: splitting into its component parts'
    Google
    Advertise here!