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
Custom GDI+ class
Winsock: sending email messages (SMTP, port 25)
Mapping and disconnecting network drives
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Winsock: retrieving directory listing from an FTP server using passive data connection (FTP, port 21)
Converting Unicode data from the Clipboard to a character string using a given code page
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
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)
How to download a file from the FTP server using FtpGetFile
Splash Screen for the VFP application
Using EnumPrinters function to enumerate locally installed printers
How to play AVI file on the _screen
Retrieving the name of the network resource associated with a local device
Custom HttpRequest class (WinHTTP)
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Using Video Capture: displaying on FoxPro form frames and previewing video obtained from a digital camera
Creating a console window for Visual FoxPro application
Creating irregularly shaped FoxPro form using transparency color key
Using LoadLibrary

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:
  • Loading a string resource from an executable file
  • How to extract icon resources from EXE or DLL and save them in .ICO files
  •  
    DO declare
     
    lpLibFileName = GetSystemDir() + "\mapi32.dll"
    hLibModule = LoadLibrary(lpLibFileName)
     
    IF hLibModule <> 0
        ? "Library handle:", hLibModule
        = FreeLibrary(hLibModule)
    ELSE
        * 1157 = ERROR_DLL_NOT_FOUND
        ? "Error code returned:", GetLastError()
    ENDIF
    * end of main
     
    FUNCTION GetSystemDir
        LOCAL lpBuffer, nSizeRet
        lpBuffer = SPACE(250) 
        nSizeRet = GetSystemDirectory(@lpBuffer, Len(lpBuffer)) 
    RETURN Iif(nSizeRet<>0, Left(lpBuffer, nSizeRet), "")
     
    PROCEDURE declare
        DECLARE INTEGER LoadLibrary IN kernel32;
            STRING lpLibFileName
     
        DECLARE INTEGER FreeLibrary IN kernel32;
            INTEGER hLibModule
     
        DECLARE INTEGER GetSystemDirectory IN kernel32;
            STRING @ lpBuffer, INTEGER nSize
     
        DECLARE INTEGER GetLastError IN kernel32
     
     
     

    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    770 bytes  
    Created: 2001-07-12 12:00:00  
    Modified: 2011-12-10 09:20:22  
    Visits in 7 days: 52  
    Listed functions:
    FreeLibrary
    GetLastError
    GetSystemDirectory
    LoadLibrary
    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.235.20.17)
    4 sec.Example: 'Using FrameRgn for displaying system colors'
    1.52 hrs.Example: 'Winsock: retrieving the host information corresponding to a network address'
    11.94 hrs.Example: 'Time in milliseconds represented as string (e.g. 1 hour 24 min 36 sec)'
     Example: 'Using FtpCommand'
    12.63 hrs.Example: 'Displaying printer-properties Property Sheet for the specified printer'
     Function: 'GetWindowPlacement'
    Function group: 'Window'
    14.12 hrs.Example: 'Converting path to original case'
     Example: 'Storing the environment strings in cursor'
    14.74 hrs.Solution: 'LanguageBar ActiveX Control'
    19.72 hrs.Example: 'Using GetSysColor'
    Google
    Advertise here!