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
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Custom GDI+ class
Converting Unicode data from the Clipboard to a character string using a given code page
Custom FTP Class for Visual FoxPro application
Custom HttpRequest class (WinINet)
Splash Screen for the VFP application
Displaying bitmap using the AlphaBlend function
Establishing connection using the SQLDriverConnect
Displaying animated images on FoxPro form with BitBlt and StretchBlt functions
How to put a vertical text scrolling on the form (a movie cast)
How to make a VFP form fading out when released (GDI+ version)
How to make a VFP form fading out when released (GDI version)
Using FlashWindowEx to flash the taskbar button of the VFP application
Using WM_COPYDATA for interprocess communication (VFP9)
Winsock: sending email messages (SMTP, port 25)
How to create non-blocking Winsock server
Creating a mailslot
Detecting changes in connections to removable drives (VFP9)
Sending a standard message with one or more attached files using default email client
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file
How to print a bitmap file
Enumerating servers of the specified type (e.g. SQL Server) in the primary domain

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
Versions:
click to open
Before you begin:
See also:
  • Enumerating network resources
  • Mapping and disconnecting network drives in FoxPro application
  • Retrieving information about shared resources on the local computer (WinNT/XP)
  •  
    * Specifies the type of software the computer is running
    #DEFINE SV_TYPE_WORKSTATION 1
    #DEFINE SV_TYPE_SERVER 2
    #DEFINE SV_TYPE_SQLSERVER 4
    #DEFINE SV_TYPE_DOMAIN_CTRL  8
    #DEFINE SV_TYPE_PRINTQ_SERVER 0x200
    #DEFINE SV_TYPE_SERVER_UNIX 0x800
    #DEFINE SV_TYPE_SERVER_NT 0x8000
    #DEFINE SV_TYPE_DOMAIN_MASTER 0x80000
    #DEFINE SV_TYPE_WINDOWS 0x400000
    #DEFINE SV_TYPE_ALL 0xFFFFFFFF
     
    DO declare
     
        * testing various server lists
    *    = EnumServers(SV_TYPE_PRINTQ_SERVER)
    *    = EnumServers(SV_TYPE_SERVER)
        = EnumServers(SV_TYPE_SQLSERVER)
    *    = EnumServers(SV_TYPE_SERVER_NT)
    *    = EnumServers(SV_TYPE_DOMAIN_CTRL)
    *    = EnumServers(SV_TYPE_ALL)
     
    PROCEDURE EnumServers(lnServerType)
    #DEFINE MAX_PREFERRED_LENGTH -1
    #DEFINE SINFO_101_SIZE       24
     
    *| typedef struct _SERVER_INFO_101 {
    *|   DWORD     sv101_platform_id;     4
    *|   LPWSTR    sv101_name;            4
    *|   DWORD     sv101_version_major;   4
    *|   DWORD     sv101_version_minor;   4
    *|   DWORD     sv101_type;            4
    *|   LPWSTR    sv101_comment;         4
    *| } SERVER_INFO_101, *PSERVER_INFO_101, *LPSERVER_INFO_101;
     
        LOCAL lnBuffer, lnCountRead, lnCountTotal, lnResult
        STORE 0 TO lnBuffer, lnCountRead, lnCountTotal
     
        WAIT WINDOW "Requesting data..." NOWAIT
        lnResult = NetServerEnum(0, 101, @lnBuffer, MAX_PREFERRED_LENGTH,;
            @lnCountRead, @lnCountTotal, lnServerType, 0, 0)
        WAIT CLEAR
     
        IF lnResult <> 0
        *  87 = The parameter is incorrect
        * 234 = More data is available
            ? "Error code:", lnResult
        ELSE
            LOCAL lcBuffer, lnBufLen, lnEntry, lnPlatformId, lnNamePtr,;
                lnMajorVer, lnMinorVer, lnSofttype, lnMemoPtr,;
                lcServerName, lcServerMemo
     
            * creating resulting cursor
            CREATE CURSOR csResult (platformid N(12), servername C(30),;
                majorver N(12), minorver N(12), softtype N(12), comment C(250))
     
            * copying the resulting array of SERVER_INFO_101 structures 
            * to a VFP string
            lnBufLen = lnCountRead * SINFO_101_SIZE
            lcBuffer = Repli(Chr(0), lnBufLen)
            = Heap2String(@lcBuffer, lnBuffer, lnBufLen)
     
            * scanning resulting array
            FOR lnEntry = 1 TO lnCountRead
                lcServerInfo = SUBSTR(lcBuffer,;
                    (lnEntry-1)*SINFO_101_SIZE+1, SINFO_101_SIZE)
     
                lnPlatformId = buf2dword(SUBSTR(lcServerInfo,  1,4))
                lnNamePtr    = buf2dword(SUBSTR(lcServerInfo,  5,4))
                lnMajorVer   = buf2dword(SUBSTR(lcServerInfo,  9,4))
                lnMinorVer   = buf2dword(SUBSTR(lcServerInfo, 13,4))
                lnSofttype   = buf2dword(SUBSTR(lcServerInfo, 17,4))
                lnMemoPtr    = buf2dword(SUBSTR(lcServerInfo, 21,4))
     
                lcServerName = GetStrFromMem(lnNamePtr)
                lcServerMemo = GetStrFromMem(lnMemoPtr)
                WAIT WINDOW lcServerName NOWAIT
     
                INSERT INTO csResult VALUES (lnPlatformId, lcServerName,;
                    lnMajorVer, lnMinorVer, lnSofttype, lcServerMemo)
            ENDFOR
            WAIT CLEAR
        ENDIF
     
        * releasing the memory block allocated regardless of the result
        * by OS within NetServerEnum call 
        = NetApiBufferFree(lnBuffer)
     
        IF USED("csResult")
            SELECT csResult
            GO TOP
            BROWSE NORMAL NOWAIT
        ENDIF
    RETURN
     
    FUNCTION GetStrFromMem(lnMemBlock)
    * converting memory allocated Unicode string to a VFP string
    #DEFINE StrBufferLength 250
        LOCAL lcBuffer
        lcBuffer = SPACE(StrBufferLength)
        = Heap2String(@lcBuffer, lnMemBlock, StrBufferLength)
        lcBuffer = SUBSTR(lcBuffer, 1, AT(Chr(0)+Chr(0),lcBuffer)-1)
    RETURN STRTRAN(lcBuffer, Chr(0),"")
     
    FUNCTION buf2dword(lcBuffer)
    RETURN Asc(SUBSTR(lcBuffer, 1,1)) + ;
        Asc(SUBSTR(lcBuffer, 2,1)) * 256 +;
        Asc(SUBSTR(lcBuffer, 3,1)) * 65536 +;
        Asc(SUBSTR(lcBuffer, 4,1)) * 16777216
     
    PROCEDURE declare
        DECLARE INTEGER NetServerEnum IN netapi32;
            INTEGER servername, INTEGER level, INTEGER @ bufptr,;
            INTEGER prefmaxlen, INTEGER @ entriesread, INTEGER @ totalentries,;
            INTEGER servertype, INTEGER domain, INTEGER resume_handle
     
        DECLARE INTEGER NetApiBufferFree IN netapi32 INTEGER Buffer
     
        DECLARE RtlMoveMemory IN kernel32 As Heap2String;
            STRING @ Destination, INTEGER Source, INTEGER nLength
     

    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    4002 bytes  
    Created: 2001-10-15 20:12:33  
    Modified: 2011-12-10 09:20:22  
    Visits in 7 days: 79  
    Listed functions:
    NetApiBufferFree
    NetServerEnum
    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 (72.44.48.122)
    50.48 min.Example: 'Splash Screen for the VFP application'
    6.6 hrs.Function: 'GdipInvertMatrix'
    7.57 hrs.Example: 'Testing serial ports'
    10.46 hrs.Function: 'CeCreateFile'
    Google
    Advertise here!