Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
How to change display settings: screen resolution, screen refresh rate
Adding and deleting Scheduled Tasks using NetScheduleJob API functions
Custom GDI+ class
Capturing keyboard activity of another application with the Raw Input API (VFP9)
Converting Unicode data from the Clipboard to a character string using a given code page
Enumerating data formats currently available on the clipboard
Custom FTP Class for Visual FoxPro application
Winsock: sending email messages (SMTP, port 25)
Splash Screen for the VFP application
Detecting changes in connections to removable drives (VFP9)
How to download a file from the FTP server using FtpGetFile
How to activate Windows Calculator
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
Custom HttpRequest class (WinHTTP)
How to put a vertical text scrolling on the form (a movie cast)
Mapping and disconnecting network drives
How to convert a bitmap file to monochrome format (1 bpp)
Establishing connection using the SQLDriverConnect
Using Font and Text functions
Displaying bitmap using the AlphaBlend function
Using WM_COPYDATA for interprocess communication (VFP9)
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file
Displaying animated images on FoxPro form with BitBlt and StretchBlt functions
How to make a VFP form fading out when released (GDI+ version)
Retrieving geometrical parameters of the system desktop window

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
 
DECLARE INTEGER GetDesktopWindow IN user32
DECLARE SHORT GetWindowRect IN user32 INTEGER hwnd, STRING @ lpRect
DECLARE SHORT GetClientRect IN user32 INTEGER hwnd, STRING @ lpRect  
 
lpRect = REPLI (Chr(0), 16)  
= GetWindowRect (GetDesktopWindow(), @lpRect)
= _show (lpRect, "*** Desktop window rectangle")
 
lpRect = REPLI (Chr(0), 16)  
= GetClientRect (GetDesktopWindow(), @lpRect)
= _show (lpRect, "*** Desktop window client rectangle")
 
? "*** _SCREEN properties"
WITH _SCREEN
    ? "    left:   " + STR(.Left,   6)  
    ? "    top:    " + STR(.Top,    6)  
    ? "    right:  " + STR(.Left + .Width - 1,  6)  
    ? "    bottom: " + STR(.Top + .Height - 1, 6)  
    ? "    width:  " + STR(.Width,  6)  
    ? "    height: " + STR(.Height, 6)  
ENDWITH
 
PROCEDURE  _show (lpRect, lcTitle)
    lnWinLeft   = buf2dword(SUBSTR(lpRect,  1,4))  
    lnWinTop    = buf2dword(SUBSTR(lpRect,  5,4))  
    lnWinRight  = buf2dword(SUBSTR(lpRect,  9,4))  
    lnWinBottom = buf2dword(SUBSTR(lpRect, 13,4))  
    lnWinWidth  = lnWinRight - lnWinLeft + 1  
    lnWinHeight = lnWinBottom - lnWinTop + 1  
 
    ? lcTitle
    ? "    left:   " + STR(lnWinLeft,   6)  
    ? "    top:    " + STR(lnWinTop,    6)  
    ? "    right:  " + STR(lnWinRight,  6)  
    ? "    bottom: " + STR(lnWinBottom, 6)  
    ? "    width:  " + STR(lnWinWidth,  6)  
    ? "    height: " + STR(lnWinHeight, 6)  
    ?
 
FUNCTION  buf2dword (lcBuffer) 
RETURN; 
    Asc(SUBSTR(lcBuffer, 1,1)) + ; 
    Asc(SUBSTR(lcBuffer, 2,1)) * 256 +; 
    Asc(SUBSTR(lcBuffer, 3,1)) * 65536 +; 
    Asc(SUBSTR(lcBuffer, 4,1)) * 16777216 
 
 

User rating: 10/10 (1 votes)
Rate this code sample:
  • ~
1517 bytes  
Created: 2001-08-04 12:00:00  
Modified: 2001-09-28 16:45:27  
Visits in 7 days: 71  
Listed functions:
GetClientRect
GetDesktopWindow
GetWindowRect
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 (50.19.155.235)
12.95 hrs.Example: 'Displaying bitmap using the AlphaBlend function'
 Example: 'Creating a directory on the FTP'
Language: 'C#'
16.61 hrs.Function: 'GetProductInfo'
 Example: 'How to play a waveform sound (a WAV file in particular)'
16.74 hrs.Example: 'Placing an arbitrary rectangular area of main VFP window on the Clipboard'
 Function: 'NetShareDel'
Function group: 'Network Management'
17.95 hrs.Example: 'Setting the last-error code for the FoxPro'
 Example: 'Copying strings through the global memory block'
 Example: 'Open and close a Simple MAPI Session'
18.11 hrs.Function: 'CryptGetProvParam'
Function group: 'Cryptography Reference'
Google
Advertise here!