Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Enumerating Processes -- Win9*
GDI+: cropping images
GDI+: how to make VFP controls visually shake and shudder
List of addresses in the AutoDial mapping database
Pocket PC: base class
StrDup returns a pointer to the duplicate of a source VFP string
URL: splitting into its component parts
Using Beep and Sleep functions to make the old tin buzz sing (WinNT only?)
Converting a decimal string to an integer
How to intercept window messages sent to VFP form
How to perform Base64 encoding/decoding using Cryptography API Functions
Smart Card Database Query Functions
Using the GetTempFileName
Creating a directory on the FTP
How to build UDP responder
Obtaining heap handles and enumerating memory blocks for the current VFP session (WinNT only)
Wininet last error description
Accessing examples contained in this reference through Web Services
Enumerating sessions established on a server
How to initiate System shutdown
Obtaining a handle to the desktop associated with the calling thread
Pocket PC: custom RAPI class for operating with the System Registry
Reading Internet Query options
Retrieving various system metrics
Retrieving information about the specified icon

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
More code examples    Listed functions    Add comment     W32 Constants      Translate this page Printer friendly version of this code sample
 
DO declare
 
*| typedef struct _ICONINFO { 
*|   BOOL    fIcon;      0:4
*|   DWORD   xHotspot;   4:4
*|   DWORD   yHotspot;   8:4
*|   HBITMAP hbmMask;   12:4
*|   HBITMAP hbmColor;  16:4
*| } ICONINFO; total bytes = 20
#DEFINE ICONINFO_SIZE  20
 
LOCAL lcModule, lnIndex, hIcon, lcBuffer
 
lcModule = GetModuleName()
lnIndex = 0   && icon index
 
* retrieving an icon handle 
hIcon = ExtractAssociatedIcon(0, lcModule, @lnIndex)
 
lcBuffer = REPLICATE(Chr(0), ICONINFO_SIZE)
= GetIconInfo(hIcon, @lcBuffer)
 
? "Module name:", lcModule
? "Icon handle:", hIcon
?
? "*** Icon info"
? "Icon=1, Cursor=0:", buf2dword(SUBSTR(lcBuffer,1,4))
? "X hotspot:", buf2dword(SUBSTR(lcBuffer,5,4))
? "Y hotspot:", buf2dword(SUBSTR(lcBuffer,9,4))
? "Bitmask Bitmap:", buf2dword(SUBSTR(lcBuffer,13,4))
? "Color Bitmap:", buf2dword(SUBSTR(lcBuffer,17,4))
 
= DestroyIcon(hIcon)
* end of main
 
FUNCTION GetModuleName
#DEFINE BUF_SIZE 250
    LOCAL lcFilename, lnLen
    lcFilename = SPACE(BUF_SIZE)
    lnLen = GetModuleFileName(0, @lcFilename, BUF_SIZE)
RETURN  Left(lcFilename, lnLen)
 
FUNCTION buf2dword(cBuffer)
RETURN Asc(SUBSTR(cBuffer, 1,1)) + ;
    BitLShift(Asc(SUBSTR(cBuffer, 2,1)),  8) +;
    BitLShift(Asc(SUBSTR(cBuffer, 3,1)), 16) +;
    BitLShift(Asc(SUBSTR(cBuffer, 4,1)), 24)
 
PROCEDURE declare
    DECLARE SHORT DestroyIcon IN user32 INTEGER hIcon
 
    DECLARE INTEGER GetModuleFileName IN kernel32;
        INTEGER hModule, STRING @lpFilename, INTEGER nSize
 
    DECLARE INTEGER ExtractAssociatedIcon IN shell32;
        INTEGER hInst, STRING lpIconPath, INTEGER @lpiIcon
 
    DECLARE INTEGER GetIconInfo IN user32;
        INTEGER hIcon, STRING @piconinfo
 
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
1666 bytes  
Created: 2001-12-07 19:46:30  
Modified: 2007-05-02 06:21:35  
Visits in 7 days: 83  
Listed functions:
DestroyIcon
ExtractAssociatedIcon
GetIconInfo
GetModuleFileName
Printer friendly API declarations
My comment:
First this code retrieves the handle to the icon (index=0) for the VFP executable module. Then it uses the GetIconInfo function to obtain some of this icon`s properties.
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 (23.20.196.179)
4 sec.Example: 'Reading the state of mouse buttons within DO WHILE loop'
2.53 hrs.Example: 'Simple Window Viewer'
 Function: 'GetSystemMetrics'
3.22 hrs.Function: 'mmioOpen'
 Example: 'Reading metrics for the currently selected font'
4.5 hrs.Example: 'Adding and deleting Scheduled Tasks using NetScheduleJob API functions'
 Function: 'SendARP'
5.08 hrs.Solutions
 Example: 'Converting command-line string to a set of Unicode argument strings (WinNT only)'
 Function: 'InternetReadFile'
Google
Advertise here!