Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Adding and deleting Scheduled Tasks using NetScheduleJob API functions
Custom GDI+ class
Converting Unicode data from the Clipboard to a character string using a given code page
Enumerating data formats currently available on the clipboard
Winsock: sending email messages (SMTP, port 25)
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Custom FTP Class for Visual FoxPro application
Detecting changes in connections to removable drives (VFP9)
How to download a file from the FTP server using FtpGetFile
Splash Screen for the VFP application
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
How to activate Windows Calculator
Using Font and Text functions
Custom HttpRequest class (WinINet)
Mapping and disconnecting network drives
Establishing connection using the SQLDriverConnect
Custom HttpRequest class (WinHTTP)
How to convert a bitmap file to monochrome format (1 bpp)
Displaying bitmap using the AlphaBlend function
Using EnumPrinters function to enumerate locally installed printers
How to play AVI file on the _screen
Testing serial ports
Using WM_COPYDATA for interprocess communication (VFP9)
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: 34  
    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.91.94)
    1.81 hrs.Function: 'CryptEnumProviderTypes'
    Function group: 'Cryptography Reference'
     Example: 'Subclassing CommandButton control to create BackColor property'
    3.32 hrs.Function: 'PathToRegion'
    7.43 hrs.Example: 'Adding and deleting Scheduled Tasks using NetScheduleJob API functions'
     Example: 'Displaying dimmed window behind VFP top-level form'
    9.72 hrs.Links
    Page 5
     Function: 'CreateJobObject'
    Function group: 'Process and Thread'
     Function: 'CeCreateFile'
    Function group: 'Remote Application Programming (RAPI)'
    11.28 hrs.Example: 'How to print a bitmap file'
    14.05 hrs.Example: 'Drawing icons associated with the VFP main window'
    Google
    Advertise here!