Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Retrieving System Error message strings
String representation for disk or memory capacity
Using GetSysColor
Using the CopyFile
Extended OS Version info
GDI+: Using Scale and Shear transformations
How to start the screen saver and how to find whether the screen saver is active
Opening access to the Microsoft Internet functions for the application
Retrieving graphic capabilities of default printer
Testing Transparent Menu Class with top-level form (requires VFP9)
Winsock: retrieving information about available transport protocols
Current directory of the application
Displaying the main Dial-Up Networking dialog box
Finding parameters for the region specified
How to fill a buffer with random bytes using Cryptography API Functions
One more way to retrieve environment strings
Reading Internet Query options
Reading STARTUPINFO structure for the current VFP session
How to access a file using not its name but an alias (hard link)
How to drag a Form not using its Titlebar or Caption
Retrieving the rectangle area where the mouse cursor is confined
Using the GetLogicalDriveStrings
An alternative way of setting Form.Closable to False
Using LoadLibrary
Using Video Capture: enumerating installed capture drivers

User rating: 2/10 (1 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
 
DECLARE INTEGER capGetDriverDescription IN avicap32;
    INTEGER wDriverIndex, STRING @lpszName,;
    INTEGER cbName, STRING @lpszVer, INTEGER cbVer
 
LOCAL nIndex, cDriver, cVersion, nResult
 
CREATE CURSOR cs (drindex I, drname C(50), drver C(50))
FOR nIndex=0 TO 9
    STORE Repli(Chr(0), 250) TO cDriver, cVersion
 
    nResult = capGetDriverDescription(nIndex,;
        @cDriver, Len(cDriver), @cVersion, Len(cVersion))
 
    IF nResult <> 0
        cDriver = STRTRAN(cDriver, Chr(0), "")
        cVersion = STRTRAN(cVersion, Chr(0), "")
        INSERT INTO cs VALUES (nIndex, cDriver, cVersion)
    ENDIF
ENDFOR
 
SELECT cs
BROWSE NORMAL NOWAIT
 
 
 

User rating: 2/10 (1 votes)
Rate this code sample:
  • ~
628 bytes  
Created: 2004-06-05 14:07:29  
Modified: 2004-06-05 14:12:25  
Visits in 7 days: 28  
Listed functions:
capGetDriverDescription
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 (184.73.7.143)
52.8 min.Function: 'ConvertSidToStringSid'
52.85 min.Example: 'Adding a background image to VFP report (VFP9, ReportListener)'
59.15 min.Function: 'GdipGetDpiY'
1.95 hrs.Function: 'CreateCompatibleBitmap'
Function group: 'Bitmap'
1.96 hrs.Function: 'JetRetrieveColumn'
3.94 hrs.Function: 'ReadFile'
 Example: 'Obtaining window class name for the main VFP window'
4.89 hrs.Example: 'Using InternetSetFilePointer when resuming interrupted download from the Internet'
 Function: 'GetMenuItemCount'
 Function: 'CeRapiInit'
Function group: 'Remote Application Programming (RAPI)'
Google
Advertise here!