Using Win32 functions in Visual FoxPro Image Gallery
Printing and Print Spooler
..msdn
AddPort
AddPrinter
ClosePrinter
ConfigurePort
ConnectToPrinterDlg
DeletePort
DeviceCapabilities
DocumentProperties
EndDoc
EndPage
EnumForms
EnumJobs
EnumPorts
EnumPrinterData
EnumPrinterDrivers
EnumPrinters
EnumPrintProcessorDatatypes
EnumPrintProcessors
Escape
FindClosePrinterChangeNotification
FindFirstPrinterChangeNotification
FindNextPrinterChangeNotification
FreePrinterNotifyInfo
GetDefaultPrinter
GetPrinter
GetPrinterData
GetPrinterDriverDirectory
GetPrintProcessorDirectory
OpenPrinter
PrinterProperties
SetDefaultPrinter
SetJob
SetPrinter
StartDoc
StartPage
Code examples:
Configuring DEVMODE structure for a printer
Displaying printer-properties Property Sheet for the specified printer
Enumerating forms supported by a specified printer
Enumerating print jobs and retrieving information for default printer (JOB_INFO_1 structures)
How to delete all print jobs for a printer
How to retrieve configuration data for a specified printer stored in the registry (PrinterDriverData key)
How to retrieve the number of print jobs queued for the printer
Printing Image File, programmatically set print page orientation to landscape
Retrieving default spooling directory name
Retrieving the name of the default printer for the current user on the local computer (Win NT/XP)
Simple printer queue monitor: deletes, pauses, resumes print jobs for local printer
Using Change Notification Objects to monitor changes to the printer or print server
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: 104  
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 (72.44.48.122)
44.02 min.Example: 'Tracking mouse movement to detect when to start dragging'
2.59 hrs.Function: 'RegisterHotKey'
Function group: 'Keyboard Input'
 Function: 'DrawDibOpen'
Function group: 'Windows Multimedia'
 Example: 'Reading data from INI files'
3.99 hrs.Function: 'SendMessage'
 Function: 'ShellExecuteEx'
19.18 hrs.Function: 'Process32Next'
Function group: 'Performance Monitoring'
 Example: 'How to create a desktop shortcut (shell link)'
20.02 hrs.Function: 'NetApiBufferFree'
 Example: 'Retrieving the rectangle area where the mouse cursor is confined'
Google
Advertise here!