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 display Windows On-Screen Keyboard
How to print a bitmap file
Using the LoadImage function to have a bitmap file loaded and displayed on VFP main window
Winsock: sending email messages (SMTP, port 25)
System Image List Viewer
Creating the Save dialog box to specify the drive, directory, and name of a file to save
The window and its ancestors
Custom HttpRequest class (WinHTTP)
Printing Image File, programmatically set print page orientation to landscape
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
Custom FTP Class for Visual FoxPro application
Using EnumPrinters function to enumerate locally installed printers
Displaying the associated icons and descriptions for files and folders
How to activate Windows Calculator
How to download a file from the FTP server using FtpGetFile
Sending email messages with Simple MAPI
Confining Windows calculator inside the VFP main window
Windows Shell Icons displayed and exported to ICO files (Vista)
How to print FoxPro form
GDI+: sending image of FoxPro form to printer

User rating: 10/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
Versions:
click to open
Before you begin:
The code is based on custom GDI+ class. Download the class module first and save it in gdiplus.prg file.

Call this code from a method or event of a FoxPro form when that form is active, i.e. posesses the keyboard focus.

See also:

Download ScreenCapture Library

  • How to print FoxPro form
  • How to print FoxPro form -- II (using metafile)
  • Storing screen shot of a form to a BMP file
  • Storing clipboard contents to a BMP file
  •  
    SET PROCEDURE TO gdiplus ADDITIVE
    #DEFINE SRCCOPY  0x00CC0020
    DO decl
     
    * an instance of gdiplusinit should be created before
    * and released after using any of gdi+ objects
    PRIVATE gdiplus
    gdiplus = CREATEOBJECT("gdiplusinit")
     
    LOCAL hwindow, hdc, bmp, nWidth, nHeight
    hwindow = GetFocus()
    hdc = GetWindowDC(hwindow)
    STORE 0 TO nWidth, nHeight
    = GetWinRect(hwindow, @nWidth, @nHeight)
     
    bmp = CREATEOBJECT("gdibitmap", m.nWidth, m.nHeight)
    WITH bmp
        .graphics.GetDC
        = BitBlt(.graphics.hdc, 0,0, .imgwidth, .imgheight,;
            m.hdc, 0,0, SRCCOPY)
        .graphics.ReleaseDC
    ENDWITH
     
    LOCAL hPrnDC, gdip, docinfo
    hPrnDC = GetPrnDC()
    gdip = CREATEOBJECT("graphics", hPrnDC)
     
    docinfo = PADR(CHR(20), 20, CHR(0))
    = StartDoc(m.hPrnDC, m.docinfo)
    = StartPage(m.hPrnDC)
    WITH gdip
        * note that the actual printing is scaled
        .DrawImage(bmp, 20,20,;
            bmp.imgwidth/2, bmp.imgheight/2)
     
    *    .DrawImage(bmp, 20,20)
    ENDWITH
    = EndPage(m.hPrnDC)
    = EndDoc(m.hPrnDC)
    = DeleteDC(m.hPrnDC)
    = ReleaseDC(m.hwindow, m.hdc)
    * end of main
     
    PROCEDURE GetWinRect(hwindow, nWidth, nHeight)
    #DEFINE maxDword  0xffffffff
        LOCAL lpRect, nLeft, nTop, nRight, nBottom
        lpRect = REPLI (Chr(0), 16)
        = GetWindowRect (hwindow, @lpRect)
        nRight  = buf2dword(SUBSTR(lpRect, 9,4))
        nBottom = buf2dword(SUBSTR(lpRect, 13,4))
     
        nLeft = buf2dword(SUBSTR(lpRect, 1,4))
        IF nLeft > nRight
            nLeft = nLeft - maxDword
        ENDIF
        nTop = buf2dword(SUBSTR(lpRect, 5,4))
        IF nTop > nBottom
            nTop = nTop - maxDword
        ENDIF
        nWidth = nRight - nLeft
        nHeight = nBottom - nTop
    RETURN
     
    FUNCTION GetPrnDC
    * returns device context of default printer
    #DEFINE PD_RETURNDC      0x100
    #DEFINE PD_RETURNDEFAULT 0x400
        LOCAL lcStruct, lnFlags
        lnFlags = PD_RETURNDEFAULT + PD_RETURNDC
     
        lcStruct = num2dword(66) + Repli(Chr(0), 16) +;
            num2dword(lnFlags) + Repli(Chr(0), 42)
        IF PrintDlg(@lcStruct) <> 0
            RETURN buf2dword (SUBSTR(lcStruct, 17,4))
        ENDIF
    RETURN 0
     
    PROCEDURE decl
        DECLARE INTEGER GetFocus IN user32
        DECLARE INTEGER GetWindowDC IN user32 INTEGER hwindow
        DECLARE INTEGER ReleaseDC IN user32 INTEGER hwindow, INTEGER hdc
        DECLARE INTEGER GetWindowRect IN user32 INTEGER hwnd, STRING @lpRect 
        DECLARE INTEGER DeleteDC IN gdi32 INTEGER hdc
        DECLARE INTEGER PrintDlg IN comdlg32 STRING @ lppd
        DECLARE INTEGER StartPage IN gdi32 INTEGER hdc
        DECLARE INTEGER EndPage IN gdi32 INTEGER hdc
        DECLARE INTEGER EndDoc IN gdi32 INTEGER hdc
        DECLARE INTEGER StartDoc IN gdi32 INTEGER hdc, STRING lpdi
     
        DECLARE INTEGER BitBlt IN gdi32;
            INTEGER hDestDC, INTEGER x, INTEGER y,;
            INTEGER nWidth, INTEGER nHeight, INTEGER hSrcDC,;
            INTEGER xSrc, INTEGER ySrc, INTEGER dwRop
     
     
     

    User rating: 10/10 (1 votes)
    Rate this code sample:
    • ~
    2696 bytes  
    Created: 2004-07-13 10:11:10  
    Modified: 2011-03-28 09:41:52  
    Visits in 7 days: 112  
    Listed functions:
    BitBlt
    DeleteDC
    EndDoc
    EndPage
    GetFocus
    GetWindowDC
    GetWindowRect
    PrintDlg
    ReleaseDC
    StartDoc
    StartPage
    Printer friendly API declarations
    My comment:

    #kwd: sln_gdiplus, sln_printform
    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:
    65.13.0.61 | 2006-08-19 11:49:49
    Anatoliy,

    I am creating a thematic map of the United States. It consists of a container object on a form. The container object contains shape objects in the form of each state in the U.S.

    I would like to save the image of the map to a .BMP, .JPG or .PNG without making the form visible. How do I do this?

    Dan
    danrhymes@bellsouth.net | 2006-08-19 11:50:11
    Anatoliy,

    I am creating a thematic map of the United States. It consists of a container object on a form. The container object contains shape objects in the form of each state in the U.S.

    I would like to save the image of the map to a .BMP, .JPG or .PNG without making the form visible. How do I do this?

    Dan
    Hugh Winters | 2006-08-30 12:55:10
    I am having trouble finding the gdiplus.prg you refer to in your code setup. Please tell me exactly where I might find this program. I have looked everywhere.

    Perhaps this program was outmoded by the new GDIPlusX.vcx class library and is no longer available. If so, please adjust your code to work with it.

    Thanks!

    Hugh Winters
    A.M. | 2006-08-30 19:34:07
    Hugh,

    There's a link to this code in Before You Begin section on this page

    http://www.news2news.com/vfp/?example=450

    This GDI+ library is not freeware though. It is also not compatible with GDI+ FFC code, since I have decided to create this library from scratch.

    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.25.119)
    4 sec.Function: 'GetWindowTextLength'
    1.11 hrs.Example: 'Placing a button on the VFP form as a new child window'
     Function: 'InitiateShutdown'
    Function group: 'System Shutdown'
    1.43 hrs.Example: 'Saving HKEY_LOCAL_MACHINE\\Software\\ODBC Registry Entries to an XML file'
     Example: 'GDI+: printing vertical text on VFP reports via generated images (VFP8)'
    3.22 hrs.Example: 'How to display a user-defined icon in the MessageBox dialog'
     Example: 'Displaying the color palette stored in an image file'
     Function: 'EnumPrinterData'
    4.69 hrs.Function: 'CertFindCertificateInStore'
    Function group: 'Cryptography Reference'
     Example: 'How to view icons stored in executable files (Icon Viewer)'
    Google
    Advertise here!