Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Retrieveing information about the active window (even if it is not owned by the calling process)
Clipping mouse cursor area
Drawing icons associated with the VFP main window
Enumerating print processors and supporting data types installed on the specified server
How to hide your program from the Close Program dialog (Win9* only)
Pocket PC: base class
Retrieving information about the specified icon
Retrieving the names of all sections in an initialization file
Scanning a hierarchy of child windows down from the Windows Desktop
String representation for disk or memory capacity
FindText -- the hopeless and useless Common Dialog
How to position the GETPRINTER() dialog
Obtaining MAC address through Address Resolution Protocol (ARP) request
Opening access to the Microsoft Internet functions for the application
The window and its ancestors
Using an Event Object. Part A: running an application that creates an Event object
Using the CreateFile
Using the Semaphore object to allow only one instance of VFP application running
Winsock: changing the byte ordering
Winsock: how to retrieve the protocol information corresponding to a protocol name
Animating a transition of the VFP form (a wire-frame rectangle)
Configuring DEVMODE structure for a printer
Enumerating Processes -- WinNT
Finding parameters for the region specified
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: 108  
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.22.156.205)
5.43 hrs.Function: 'ExtractIcon'
Function group: 'Icon'
 Example: 'Changing file attributes'
10.78 hrs.Function: 'DeleteUrlCacheEntry'
12.5 hrs.Example: 'Comparing file times'
 Example: 'How to display advanced Task Dialog (Vista)'
 Example: 'Reading and setting Environment variables'
19.24 hrs.Function: 'CeMoveFile'
19.25 hrs.Function: 'FindNextFile'
19.59 hrs.Function: 'SetCapture'
19.6 hrs.Example: 'Accessing LSA Policy object (Local Security Authority)'
Google
Advertise here!