Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Setting the Window Region for a form
How to delete a service object
How to drag a Form not using its Titlebar or Caption
Retrieving graphic capabilities of your display
WAV file recorder
Dynamic strings implemented through VFP Custom class
Reading STARTUPINFO structure for the current VFP session
Using the high-resolution performance counter
List of ODBC drivers installed (read from the [ODBC Drivers] section)
Using Video Capture: enumerating installed capture drivers
Who is the first in viewing the Clipboard
How to check whether the system is 32-bit or 64-bit
How to create a service object
Retrieving national language settings
Hiding mouse cursor
Joining local computer to a domain (XP/2000)
Searching for the specified file using the SearchPath
Changing system colors
Displaying the color palette stored in an image file
How to fill a buffer with random bytes using Cryptography API Functions
Converting characters to upper or lower case
Using ActiveX control for adding a menu directly to a FoxPro MDI form
Creating a file, then moving it to another destination
Retrieving the elapsed time since the system was started
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: 35  
    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 (184.72.184.104)
    4 sec.
    27 min.Example: 'How to set Creation Date/Time for a folder (WinNT)'
    27.08 min.Function: 'SQLGetDiagRec'
    Function group: 'ODBC API'
    6.03 hrs.Example: 'Converting strings between ANSI and OEM'
     Banners
    7.69 hrs.Example: 'Retrieving graphic capabilities of default printer'
     Example: 'Using the CreateFile'
    9.59 hrs.Example: 'Bitmap Class for Visual FoxPro application'
     Function: 'JetBeginTransaction'
    Function group: 'Extensible Storage Engine (ESE, Jet Blue)'
    13.21 hrs.Function: 'CeGetStoreInformation'
    Function group: 'Remote Application Programming (RAPI)'
    Google
    Advertise here!