Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
System Image List Viewer
Using GetBinaryType (WinNT only) to determine the type of an executable file
Using Path functions from Shell Lightweight Utility APIs (shlapi.dll)
Using vendor-neutral SQL constructs
Another way to go online (it is not about choosing an ISP)
Drawing cursors for the classes defined by the system (preregistered): BUTTON, EDIT, LISTBOX etc.
GDI+: printing vertical text on VFP reports via generated images (VFP8)
How to control Adobe Reader 9.0 (SDI mode) from VFP application
How to create transparent areas inside a form -- punching holes in the form
Retrieving list of all active RAS connections
System and Local Time values
Using NetWkstaTransportEnum to obtain MAC Address of remote server
Displaying standard progress dialog box when copying files
Enumerating connections made to a shared resource for the local computer (WinNT only)
Locking mouse and keyboard input for the VFP application
Retrieving list of available disk drives
How to display a dialog box with which the user can add a data source (DSN)
Locking the workstation
Using FillMemory
Winsock: creating a socket that is bound to a specific service provider
Accessing LSA Policy object (Local Security Authority)
Converting an integer value to a hexadecimal string
How to create a desktop shortcut (shell link)
How to release and renew a lease on an IP address previously obtained through Dynamic Host Configuration Protocol (DHCP)
Displaying printer-properties Property Sheet for the specified printer

User rating: 1/10 (2 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
 
#DEFINE PRINTER_ACCESS_ADMINISTER  4
#DEFINE PRINTER_ACCESS_USE         8
DO decl
 
LOCAL cPrinter, hPrinter, lcPrnDefaults
 
cPrinter = GetPrnName()  && default printer
 
* PRINTER_DEFAULTS structure
lcPrnDefaults = Repli(Chr(0),8) +;
    Chr(PRINTER_ACCESS_ADMINISTER) + Repli(Chr(0),3)
 
hPrinter = 0
IF OpenPrinter(cPrinter, @hPrinter, lcPrnDefaults) = 0
    ? "Error opening printer [" + cPrinter + "]"
    RETURN
ENDIF
 
= PrinterProperties(GetActiveWindow(), hPrinter)
= ClosePrinter(hPrinter)
* end of main
 
FUNCTION GetPrnName
* returns default printer name from Windows Registry
    LOCAL lcBuffer, lcPrinter, lcDriver, lcPort
    lcBuffer = Repli(Chr(0), 120)
    = GetProfileString("Windows", "Device", ",,,",;
        @lcBuffer, Len(lcBuffer))
    lcBuffer = STRTRAN(lcBuffer, Chr(0), "")
RETURN SUBSTR(lcBuffer, 1, AT(",", lcBuffer, 1)-1)
 
PROCEDURE decl
    DECLARE INTEGER OpenPrinter IN winspool.drv;
        STRING pPrinterName, INTEGER @phPrinter, STRING pDefault
 
    DECLARE INTEGER GetProfileString IN kernel32;
        STRING lpApp, STRING lpKey, STRING lpDefault,;
        STRING @lpReturnedString, INTEGER nSize
 
    DECLARE INTEGER ClosePrinter IN winspool.drv INTEGER hPrinter 
    DECLARE INTEGER GetActiveWindow IN user32
 
    DECLARE INTEGER PrinterProperties IN winspool.drv;
        INTEGER hWnd, INTEGER hPrinter
 
 
 

User rating: 1/10 (2 votes)
Rate this code sample:
  • ~
1321 bytes  
Created: 2003-01-20 09:58:07  
Modified: 2003-11-05 15:47:01  
Visits in 7 days: 109  
Listed functions:
ClosePrinter
GetActiveWindow
GetProfileString
OpenPrinter
PrinterProperties
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 (54.235.20.17)
4 sec.Function: 'GetWindowPlacement'
Function group: 'Window'
1.49 hrs.Example: 'Converting path to original case'
 Example: 'Storing the environment strings in cursor'
2.11 hrs.Solution: 'LanguageBar ActiveX Control'
7.09 hrs.Example: 'Using GetSysColor'
 Example: 'Using Common Controls: the Header Control'
7.44 hrs.Example: 'How to delete all print jobs for a printer'
 Example: 'Dragging files from Explorer window and dropping them on FoxPro control (requires VFP9)'
13.72 hrs.Example: 'Windows Shell Icons displayed and exported to ICO files (Vista)'
 Example: 'Setting the last-error code for the FoxPro'
Google
Advertise here!