Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Building a tree of subdirectories for a given path using FindFile functions
Current System information
GDI+: converting image file to another graphics format
How to save registry key including its subkeys and values to a file
Simulating DOEVENTS
Who owns the Windows Clipboard
Drawing a window caption using the DrawCaption routine
Retrieving configuration information for the specified server (Win98/Me)
Retrieving list of files on the FTP directory
Saving HKEY_LOCAL_MACHINE\\Software\\ODBC Registry Entries to an XML file
Starting a dialog box for connecting to network resources and passing input parameters
Using Shell for performing operations on files
Enumerating MIDI output devices
GDI+: Storing DLL icon resources in image files
Retrieving a handle to DLL and address of an exported function in it
Simple MAPI: how to resolve a name to unique address list entry
Who is the first in viewing the Clipboard
Winsock: how to retrieve a service information corresponding to a service name
How to enumerate terminal servers within the specified Windows domain
Setting and retrieving the double-click time for the mouse
Basic Volume information
How to generate UUID values
How to hot-track menu item selection in top-level form (requires VFP9)
Reading STARTUPINFO structure for the current VFP session
URL: splitting into its component parts

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
 
*| typedef struct {
*|     DWORD  dwStructSize;        0:4
*|     LPTSTR  lpszScheme;         4:4 *
*|     DWORD  dwSchemeLength;      8:4
*|     INTERNET_SCHEME  nScheme;  12:4
*|     LPTSTR  lpszHostName;      16:4 *
*|     DWORD  dwHostNameLength;   20:4
*|     INTERNET_PORT  nPort;      24:4
*|     LPTSTR  lpszUserName;      28:4 *
*|     DWORD  dwUserNameLength;   32:4
*|     LPTSTR  lpszPassword;      36:4 *
*|     DWORD  dwPasswordLength;   40:4
*|     LPTSTR  lpszUrlPath;       44:4 *
*|     DWORD  dwUrlPathLength;    48:4
*|     LPTSTR  lpszExtraInfo;     52:4 *
*|     DWORD  dwExtraInfoLength;  56:4  
*| } URL_COMPONENTS, *LPURL_COMPONENTS; 15x4 = 60 bytes
 
LOCAL oUrlSplit As UrlSplit
oUrlSplit = CREATEOBJECT("UrlSplit")
 
oUrlSplit.url = "http:" + "/" +"/www.google.com/" +;
        "search?q=using+FindText+API&hl=en&start=10&sa=N"
 
WITH oUrlSplit
    ? "URL:", .url
    ? "Scheme Name:", .SchemeNme
    ? "Host Name:", .HostNme
    ? "User Name:", .UserNme
    ? "Password:", .Pwd
    ? "URL Path:", .UrlPath
    ? "Extra info:", .ExtraInfo
    ? "Scheme value:", .SchemeValue
    ? "Port:", .PortNumber
ENDWITH
* end of main
 
DEFINE CLASS UrlSplit As Relation
#DEFINE ICU_DECODE  0x10000000
#DEFINE ICU_ESCAPE  0x80000000
#DEFINE MAINBUF_SIZE  60
#DEFINE STRBUF_SIZE 1024
#DEFINE ZERO_DWORD REPLICATE(CHR(0),4)
 
    url=""
    SchemeNme=""
    HostNme=""
    UserNme=""
    Pwd=""
    UrlPath=""
    ExtraInfo=""
    SchemeValue=0
    PortNumber=0
 
    oScheme=NULL
    oHostName=NULL
    oUserName=NULL
    oPwd=NULL
    oUrlPath=NULL
    oExtraInfo=NULL
 
PROCEDURE Init(cUrl As String)
    THIS.oScheme = CREATEOBJECT("PChar", "")
    THIS.oHostName = CREATEOBJECT("PChar", "")
    THIS.oUserName = CREATEOBJECT("PChar", "")
    THIS.oPwd = CREATEOBJECT("PChar", "")
    THIS.oUrlPath = CREATEOBJECT("PChar", "")
    THIS.oExtraInfo = CREATEOBJECT("PChar", "")
 
    THIS.declare
    THIS.url = m.cUrl
 
PROCEDURE url_ASSIGN(cUrl As String)
    THIS.ResetObject
    IF VARTYPE(cUrl)="C" AND NOT EMPTY(cUrl)
        THIS.url = ALLTRIM(m.cUrl)
        THIS.SplitUrl
    ELSE
        THIS.url = ""
    ENDIF
 
PROCEDURE ResetObject
    THIS.SchemeNme = ""
    THIS.HostNme = ""
    THIS.UserNme = ""
    THIS.Pwd = ""
    THIS.UrlPath = ""
    THIS.ExtraInfo = ""
    THIS.SchemeValue = 0
    THIS.PortNumber = 0
 
PROTECTED PROCEDURE SplitUrl
    THIS.ResetObject
 
    LOCAL cBuffer, cEmptyString
 
    cEmptyString = REPLICATE(CHR(0), STRBUF_SIZE)
 
    THIS.oScheme.SetValue(m.cEmptyString)
    THIS.oHostName.SetValue(m.cEmptyString)
    THIS.oUserName.SetValue(m.cEmptyString)
    THIS.oPwd.SetValue(m.cEmptyString)
    THIS.oUrlPath.SetValue(m.cEmptyString)
    THIS.oExtraInfo.SetValue(m.cEmptyString)
 
    cBuffer = num2dword(MAINBUF_SIZE) +;
        num2dword(THIS.oScheme.GetAddr()) +;
        num2dword(STRBUF_SIZE) +;
        ZERO_DWORD +;
        num2dword(THIS.oHostName.GetAddr()) +;
        num2dword(STRBUF_SIZE) +;
        ZERO_DWORD +;
        num2dword(THIS.oUserName.GetAddr()) +;
        num2dword(STRBUF_SIZE) +;
        num2dword(THIS.oPwd.GetAddr()) +;
        num2dword(STRBUF_SIZE) +;
        num2dword(THIS.oUrlPath.GetAddr()) +;
        num2dword(STRBUF_SIZE) +;
        num2dword(THIS.oExtraInfo.GetAddr()) +;
        num2dword(STRBUF_SIZE)
 
    = InternetCrackUrl(THIS.url, LEN(THIS.url), ICU_DECODE, @cBuffer)
 
    THIS.SchemeNme = THIS.ns(THIS.oScheme.GetValue())
    THIS.HostNme = THIS.ns(THIS.oHostName.GetValue())
    THIS.UserNme = THIS.ns(THIS.oUserName.GetValue())
    THIS.Pwd = THIS.ns(THIS.oPwd.GetValue())
    THIS.UrlPath = THIS.ns(THIS.oUrlPath.GetValue())
    THIS.ExtraInfo = THIS.ns(THIS.oExtraInfo.GetValue())
    THIS.SchemeValue = buf2dword(SUBSTR(cBuffer, 13,4))
    THIS.PortNumber = buf2dword(SUBSTR(cBuffer, 25,4))
 
PROTECTED FUNCTION ns(cSrc As String) As String
    LOCAL nPos
    nPos = AT(CHR(0), m.cSrc)
RETURN IIF(nPos=0, m.cStr, SUBSTR(m.cSrc, 1, m.nPos-1))
 
PROCEDURE declare
    DECLARE INTEGER InternetCrackUrl IN wininet;
        STRING lpszUrl, INTEGER dwUrlLength,;
        INTEGER dwFlags, STRING @lpUrlComponents
 
ENDDEFINE
 
DEFINE CLASS PChar As Relation
    PROTECTED hMem
 
PROCEDURE Init (lcString)
    THIS.declare
    THIS.hMem = 0
    THIS.setValue (lcString)
 
PROCEDURE declare
    DECLARE INTEGER GlobalSize IN kernel32 INTEGER hMem
    DECLARE INTEGER GlobalAlloc IN kernel32 INTEGER, INTEGER
    DECLARE INTEGER GlobalFree IN kernel32 INTEGER
 
    DECLARE RtlMoveMemory IN kernel32 As Heap2Str;
        STRING @, INTEGER, INTEGER
 
    DECLARE RtlMoveMemory IN kernel32 As Str2Heap;
        INTEGER, STRING @, INTEGER
 
PROCEDURE Destroy
    THIS.ReleaseString
 
FUNCTION GetAddr  && returns a pointer to the string
RETURN THIS.hMem
 
FUNCTION GetValue && returns string value
    LOCAL lnSize, lcBuffer
    lnSize = THIS.getAllocSize()
    lcBuffer = SPACE(lnSize)
 
    IF THIS.hMem <> 0
        = Heap2Str (@lcBuffer, THIS.hMem, lnSize)
    ENDIF
RETURN lcBuffer
 
FUNCTION GetAllocSize  && returns allocated memory size (string length)
RETURN Iif(THIS.hMem=0, 0, GlobalSize(THIS.hMem))
 
PROCEDURE SetValue (lcString) && assigns new string value
#DEFINE GMEM_FIXED   0 
    THIS.ReleaseString
 
    LOCAL lnSize
    lcString = lcString + Chr(0)
    lnSize = Len(lcString)
    THIS.hMem = GlobalAlloc(GMEM_FIXED, lnSize)
    IF THIS.hMem <> 0
        = Str2Heap(THIS.hMem, @lcString, lnSize)
    ENDIF
 
PROCEDURE ReleaseString  && releases allocated memory
    IF THIS.hMem <> 0
        = GlobalFree (THIS.hMem)
        THIS.hMem = 0
    ENDIF
ENDDEFINE  && pchar
 
FUNCTION buf2dword(lcBuffer)
RETURN Asc(SUBSTR(lcBuffer, 1,1)) + ;
    BitLShift(Asc(SUBSTR(lcBuffer, 2,1)),  8) +;
    BitLShift(Asc(SUBSTR(lcBuffer, 3,1)), 16) +;
    BitLShift(Asc(SUBSTR(lcBuffer, 4,1)), 24)
 
FUNCTION num2dword(lnValue)
#DEFINE m0  256
#DEFINE m1  65536
#DEFINE m2  16777216
    IF lnValue < 0
        lnValue = 0x100000000 + lnValue
    ENDIF
    LOCAL b0, b1, b2, b3
    b3 = Int(lnValue/m2)
    b2 = Int((lnValue - b3*m2)/m1)
    b1 = Int((lnValue - b3*m2 - b2*m1)/m0)
    b0 = Mod(lnValue, m0)
RETURN Chr(b0)+Chr(b1)+Chr(b2)+Chr(b3)
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
5881 bytes  
Created: 2001-11-02 18:15:42  
Modified: 2007-05-04 17:55:03  
Visits in 7 days: 101  
Listed functions:
GlobalAlloc
GlobalFree
GlobalSize
InternetCrackUrl
Printer friendly API declarations
My comment:
May.04, 2007 -- the code sample rewritten from scratch.
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.42.16)
7 sec.Function: 'GetFileSizeEx'
13.48 min.Function: 'SetTextColor'
13.53 min.Function: 'EnumDeviceDrivers'
Function group: 'Performance Monitoring'
1.46 hrs.Function: 'GetWindowInfo'
Function group: 'Window'
 Example: 'Moving shortcut to a specified position on the Windows Desktop'
1.91 hrs.Function: 'capGetDriverDescription'
Function group: 'Windows Multimedia'
10.34 hrs.Example: 'Enumerating ODBC Data Sources available on the local computer'
 Example: 'How to make a VFP form fading out when released (GDI+ version)'
Language: 'Visual FoxPro'
16.76 hrs.
Function group: 'GDI+ Bitmap'
20.32 hrs.Example: 'Enumerating Processes -- WinNT'
Google
Advertise here!