Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Printing Image File, programmatically set print page orientation to landscape
Displaying system dialog that selects a folder
How to prevent users from accessing the Windows Desktop and from switching to other applications
Sending a standard message with one or more attached files using default email client
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file
Creating an Open dialog box to specify the drive, directory, and name of a file to open (Shell32 version)
How to ping a remote site using ICMP API calls
How to put a horizontal text scrolling on the form (a news line)
Peer-to-peer LAN messenger built with Mailslot API functions
Running MSDOS Shell as a child process with redirected input and output (smarter RUN command)
Creating a console window for Visual FoxPro application
How to print FoxPro form
Printf-style formatted text output in VFP
Winsock: retrieving Web pages using sockets (HTTP, port 80)
Using the NetMessageBufferSend to send messages on the network
How to make application automatically close all documents it opened
Switching between keyboard layouts
How to block the PrintScreen key
Simple printer queue monitor: deletes, pauses, resumes print jobs for local printer
How to draw custom Window Caption on FoxPro form
Bitmap Class for Visual FoxPro application
How to remove a directory that is not empty
Placing a button on the VFP form as a new child window
Using the ChooseColor function
How to generate GUID values

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:
The result is returned in a format like that of the following sample:
{557cf400-1a04-11d3-9a73-0000f81ef32e}

See also:
  • How to generate UUID values
  •  
    DO declare
     
    LOCAL cGUID, cGUIDString, cGUID1
    cGUID = REPLICATE(CHR(0), 16)  && 128 bits
     
    IF CoCreateGuid(@cGUID) = 0
        cGUIDString = StringFromGUID(cGUID)
        ? cGUID
        ? cGUIDString
     
        * converting from String back to GUID
        cGUID1 = REPLICATE(CHR(0), 16)
        = CLSIDFromString(STRCONV(cGUIDString,5), @cGUID1)
        ? cGUID1
    ENDIF
    * end of main
     
    FUNCTION StringFromGUID(cGUID)
        LOCAL cBuffer, nBufsize
        nBufsize=128
        cBuffer = REPLICATE(CHR(0), nBufsize*2)
        = StringFromGUID2(cGUID, @cBuffer, nBufsize)
        cBuffer = SUBSTR(cBuffer, 1, AT(CHR(0)+CHR(0), cBuffer))
    RETURN STRCONV(cBuffer, 6)
     
    PROCEDURE declare
        DECLARE INTEGER CoCreateGuid IN ole32 STRING @pguid
     
        DECLARE INTEGER CLSIDFromString IN ole32;
            STRING lpsz, STRING @pclsid
     
        DECLARE INTEGER StringFromGUID2 IN ole32;
            STRING rguid, STRING @lpsz, INTEGER cchMax
     
     

    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    844 bytes  
    Created: 2004-07-15 13:24:36  
    Modified: 2010-01-27 10:31:26  
    Visits in 7 days: 75  
    Listed functions:
    CLSIDFromString
    CoCreateGuid
    StringFromGUID2
    Printer friendly API declarations
    My comment:
    The GUID is a unique 128-bit integer used for CLSIDs and interface identifiers.

    See also Microsoft Knowledge Base Article 269387 How To Obtain a GUID in Visual FoxPro

    * * *
    Having a connection to SQL Server, Guids can be generated with the NewId() function.
    FUNCTION NewGuid() As String
            IF SQLEXEC(1, "SELECT NewId() As guid", "csGuid") > 0
                    RETURN csGuid.guid
            ELSE
                    RETURN NULL
            ENDIF

    Another way is using the Scriptlet.TypeLib COM. Note that you must create a new instance of the class for each Guid to be generated, which probably produces some overhead.
    obj = CreateObject("Scriptlet.TypeLib")
    ? SUBSTR(obj.GUID,2,36)

    After a simple test I can estimate that the COM procedure is 5 to 10% faster than the SQL one (local server); and API is the winner creating GUID 15-20 times faster than COM -- for example, 0.24 seconds versus 4 seconds per 10,000 guids created.

    On the same computer C# code generated 1,000,000 guids in 1.05 seconds.
    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:
    A.M. | 2006-07-19 15:38:05
    DECLARE INTEGER UuidCreate IN rpcrt4 STRING @UUID

    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.20.129.212)
    3.81 hrs.Function: 'GdipDrawImageRectRectI'
    Function group: 'GDI+ Graphics'
     Function: 'LsaFreeMemory'
    Function group: 'Security'
    4.15 hrs.Example: 'How to make a VFP form fading out when released (GDI+ version)'
     Function: 'CloseWindow'
    5.26 hrs.Example: 'Winsock: retrieving the standard host name and IP address for the local machine'
     Example: 'The window and its ancestors'
    6.88 hrs.Example: 'Testing serial ports'
    10.85 hrs.Example: 'Using an Event Object. Part B: running an application responding to events'
     Function: 'MAPIAddress'
    Function group: 'Simple MAPI'
     Function: 'midiOutGetDevCaps'
    Function group: 'Windows Multimedia'
    Google
    Advertise here!