Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to download this reference`s archive through WinInet functions using InternetOpenUrl
MapiSendMail class for Visual FoxPro application
Storing registration key in the resources of an executable file
Terminating all running applications from a VFP program
Creating a device context for the specified printer
Displaying Windows shell folders in TreeView control with Visual FoxPro FLL
Simple Window Viewer
Winsock: resolving an address to a host name
Disabling drawing in the VFP form
Enumerating the subkeys for a given registry key
Quering waveform-audio output devices
Using FillMemory
Using FtpCommand
Changing pitch and speed of a wave file
Converting a hexadecimal string to an integer
How to create a desktop shortcut (shell link)
Reading metrics for the currently selected font
Retrieving IP statistics for the computer
Pocket PC: base class
Pocket PC: enumerating mounted database volumes and databases in the Object Store
Comparing dimensions of the VFP main window with _SCREEN properties
Enumerating Volumes and Volume Mounting Points (NTFS)
How to display the Print property sheet
How to enumerate terminal servers within the specified Windows domain
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 (107.21.186.38)
56.05 min.Example: 'Sending a standard message with one or more attached files using default email client'
9.07 hrs.Example: 'Verifying a file using the Authenticode policy provider'
 Function: 'GdipSetPageScale'
Function group: 'GDI+ Graphics'
9.29 hrs.Example: 'Starting a dialog box for connecting to network resources (mapping network drive)'
 Example: 'Hiding mouse cursor'
16.74 hrs.Function: 'NetUserDel'
Function group: 'Network Management'
 Example: 'GetFileOwner - Get the owner of an NTFS file'
19.63 hrs.Example: 'Using GetNearestColor'
 Example: 'The SQLGetProp() creates a bridge between Visual FoxPro and the ODBC API'
23.46 hrs.Example: 'How to write and read Window Properties for the specified window'
Google
Advertise here!