Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Running a regular FoxPro form while main VFP window is minimized
Using InternetSetFilePointer when resuming interrupted download from the Internet
Converting an integer value to a hexadecimal string
Creating a clipping region from the path selected into the device context of a form
How to block the PrintScreen key
How to display picture stored in enhanced-format metafile (*.emf)
Printing text on the main VFP window
Reading security permissions for NTFS files and folders
Retrieving Window Class information for the VFP window
How to delete all print jobs for a printer
Winsock: reading email messages (POP3, port 110)
Accessing examples contained in this reference from a VFP application
Adding an ODBC data source with the SQLConfigDataSource; use automatic or interactive mode
Configuring DEVMODE structure for a printer
How to extract frames from AVI files
Simple printer queue monitor: deletes, pauses, resumes print jobs for local printer
Winsock: changing the byte ordering
Winsock: how to retrieve a service information corresponding to a port
Winsock: how to retrieve a service information corresponding to a service name
Writing to INI file
How to retrieve the number of print jobs queued for the printer
Retrieving statistics for the TCP protocol running on the local computer
Retrieving the IP-to-physical address mapping table
Deleting files into the Recycle Bin
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: 92  
    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 (107.21.156.140)
    4 sec.Example: 'Extracting the name and extension parts of a path string'
    8 sec.Example: 'GDI+: saving image of FoxPro form to graphics file (BMP, GIF, JPG, PNG, TIF)'
    2.58 hrs.Example: 'Using the GetLogicalDriveStrings'
     
    Function group: 'Memory Management'
    2.8 hrs.Example: 'How to get Special Folders paths'
    3.92 hrs.
    Function group: 'Terminal Services'
     Example: 'Obtaining addresses for the adapters on the local computer (Win XP/2003/Vista)'
    Google
    Advertise here!