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
Custom GDI+ class
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)
Winsock: sending email messages (SMTP, port 25)
How to display the Properties dialog box for a file (ShellExecuteEx)
Disk in drive A:
Using Font and Text functions
Detecting changes in connections to removable drives (VFP9)
How to download a file from the FTP server using FtpGetFile
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
How to play AVI file on the _screen
Using EnumPrinters function to enumerate locally installed printers
Using Video Capture: displaying on FoxPro form frames and previewing video obtained from a digital camera
Splash Screen for the VFP application
Subclassing CommandButton control to create BackColor property
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Vertical Label control
Creating irregularly shaped FoxPro form using transparency color key
Creating a console window for Visual FoxPro application
Converting Unicode data from the Clipboard to a character string using a given code page
Enumerating network resources
Using the DeleteFile

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
Before you begin:
See also:
  • Deleting file into the Recycle Bin
  • Displaying standard progress dialog box when copying files

  •  
    #DEFINE CREATE_ALWAYS                  2
    #DEFINE FILE_ATTRIBUTE_NORMAL        128
     
    DECLARE INTEGER DeleteFile IN kernel32;
        STRING lpFileName
     
    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
     
    LOCAL lpFileName
    lpFileName = "C:\Temp\mytest.txt"
     
    hResult = CreateFile (lpFileName, 0, 0, 0,;
        CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0)
     
    ? "File handle returned:", hResult
    = CloseHandle (hResult)
    = DeleteFile (lpFileName)
     
     
     

    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    685 bytes  
    Created: 2001-07-12 12:00:00  
    Modified: 2006-03-08 12:53:17  
    Visits in 7 days: 65  
    Listed functions:
    CloseHandle
    CreateFile
    DeleteFile
    Printer friendly API declarations
    My comment:
    Windows 95/98/Me: The DeleteFile function deletes a file even if it is open for normal I/O or as a memory-mapped file. To prevent loss of data, close files before attempting to delete them.
    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.234.180.187)
    4 sec.Function: 'mixerGetDevCaps'
    Function group: 'Windows Multimedia'
    2.07 hrs.Example: 'Converting a decimal string to an integer'
     Function: 'GetWindowDC'
    3.99 hrs.Example: 'Retrieving the System Time adjustment'
    5.83 hrs.Function: 'sendto'
    Function group: 'Windows Sockets 2 (Winsock)'
     Function: 'UrlEscape'
    Function group: 'Shell Lightweight Utility APIs -- Path Functions'
    6.78 hrs.Example: 'GDI+: Drawing a Pie Chart'
     Example: 'Reading list of folders and files on FTP server'
    Language: 'C#'
    8.84 hrs.Example: 'Enumerating files opened on the network'
    14.19 hrs.Example: 'Using named pipes for interprocess communication'
    Google
    Advertise here!