Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Custom GDI+ class
Capturing keyboard activity of another application with the Raw Input API (VFP9)
How to print a bitmap file
How to display Windows On-Screen Keyboard
Winsock: sending email messages (SMTP, port 25)
System Image List Viewer
Using the LoadImage function to have a bitmap file loaded and displayed on VFP main window
Printing Image File, programmatically set print page orientation to landscape
Using EnumPrinters function to enumerate locally installed printers
Creating the Save dialog box to specify the drive, directory, and name of a file to save
Custom HttpRequest class (WinHTTP)
How to convert a bitmap file to monochrome format (1 bpp)
Using Video Capture: displaying on FoxPro form frames and previewing video obtained from a digital camera
Mapping and disconnecting network drives
How to download a file from the FTP server using FtpGetFile
The window and its ancestors
Using FoxTray ActiveX control: System Tray Icon and menu attached to VFP form
Custom FTP Class for Visual FoxPro application
Drawing Windows predefined bitmaps using the LoadBitmap functions
Displaying the associated icons and descriptions for files and folders
Displaying icons in the system tray (VFP9)
How to activate Windows Calculator
Sending email messages with Simple MAPI
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: 36  
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)
26.23 min.Function: 'AVIStreamInfo'
Function group: 'Windows Multimedia'
26.28 min.Function: 'PostMessage'
26.33 min.Example: 'How to put a horizontal text scrolling on the form (a news line)'
1.65 hrs.Example: 'Enumerating the subkeys for a given registry key'
1.66 hrs.Function: 'SetPriorityClass'
1.98 hrs.Example: 'Custom FTP Class for Visual FoxPro application'
 Example: 'Subclassing CommandButton control to create BackColor property'
1.99 hrs.Example: 'Enumerating printer drivers installed'
3.92 hrs.Example: 'How to empty the Recycle Bin'
4.37 hrs.Example: 'Enumerating Processes -- Win9*'
Google
Advertise here!