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
Establishing connection using the SQLDriverConnect
Winsock: sending email messages (SMTP, port 25)
Splash Screen for the VFP application
Custom FTP Class for Visual FoxPro application
Detecting changes in connections to removable drives (VFP9)
How to create non-blocking Winsock server
GDI+: copying to the Clipboard (a) image of active FoxPro window/form, (b) image file
How to print a bitmap file
Bitmap Class for Visual FoxPro application
Enumerating raw input devices attached to the system (keyboard, mouse, human interface device)
Custom HttpRequest class (WinINet)
Sending email messages with Simple MAPI
Custom HttpRequest class (WinHTTP)
How to activate Windows Calculator
Peer-to-peer LAN messenger built with Mailslot API functions
Enumerating data formats currently available on the clipboard
Displaying bitmap using the AlphaBlend function
How to create MD-5 and SHA-1 hash values from a string
How to put a vertical text scrolling on the form (a movie cast)
Exporting DLL icon resources as .ICO files

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
Before you begin:
This code includes definitions for three classes: IconGroups, IconGroupResource and IconResource.

The IconGroups is a collection of the IconGroupResource objects. The icons property of the IconGroupResource class is a collection of the IconResource objects.

The following code employs classes from this code sample to store VFP Icon resources to ICO files.
oIconGroups = CREATEOBJECT("IconGroups",;
        _vfp.ServerName)

oIconGroups.EnumIconGroupResources
? "Icon groups:", oIconGroups.Count

LOCAL cTargetPath, nGroupIndex, nIconIndex
cTargetPath = GETDIR("", "Select ICO files destination folder.")

IF NOT EMPTY(m.cTargetPath)
        SET SAFETY OFF
        nGroupIndex = 0

        FOR EACH oIconGroup IN oIconGroups
                oIconGroup.SaveToFile(cTargetPath +;
                        "groupicon_" + TRANSFORM(nGroupIndex) + ".ico")

                nIconIndex = 0
                FOR EACH oIcon IN oIconGroup.icons
                        oIcon.SaveToFile(cTargetPath +;
                                "icon_" +;
                                TRANSFORM(nGroupIndex) + "_" +;
                                TRANSFORM(nIconIndex) + "_" +;
                                TRANSFORM(oIcon.resid) + ".ico")

                        nIconIndex = nIconIndex + 1
                NEXT
                nGroupIndex = nGroupIndex + 1
        NEXT
        SET SAFETY ON
ENDIF

Selected Windows iconsDownload a small selection of Windows icons from System32\Imageres.dll library.


See also:
  • Storing DLL icon resources in image files
  • View icons stored in executable files (Icon Viewer)
  • View icons stored in executable files (Icon Viewer II)
  • Displaying Windows Shell Icons
  •  
      Members area. Log in to view this example.
     
      User name:
      Password:
     
     
      Forgot your password?
     
      Sign up for
    the Membership
     
     


    User rating: 0/10 (0 votes)
    Rate this code sample:
    • ~
    6306 bytes  
    Created: 2005-12-08 16:01:04  
    Modified: 2011-02-21 19:45:27  
    Visits in 7 days: 138  
    Listed functions:
    FindResource
    FreeLibrary
    LoadLibraryEx
    LoadResource
    LockResource
    SizeofResource
    Printer friendly API declarations
    My comment:
    To see a variety of system icons, test this code with Shell32.dll and Imageres.dll files located in System32 folder.

    Storing DLL icon resources in .ICO files

    * * *
    VFP versions 3..9 do not support callback functions. This prevents using the EnumResourceNames function to enumerate available resources in executable or dynamic library files. For that reason, the IconGroups class enumerates IconGroup resources with only integer identifiers in 1..0xffff range.

    Read on MSDN:
  • Icons in Win32
  • Using Icons
  • 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.22.252.150)
    5.16 hrs.Example: 'Sending a standard message with one or more attached files using default email client'
     Example: 'Obtaining window class name for the main VFP window'
    6.21 hrs.Example: 'How to enumerate sessions and processes on a specified terminal server'
     Function: 'LocalAlloc'
    10.47 hrs.Example: 'Converting long file names to the short format and vice versa'
     Example: 'How to copy the image of a form to the Clipboard using Bitmap API functions'
    14.46 hrs.Function: 'WinHttpCrackUrl'
    Function group: 'HTTP Functions (WinHTTP)'
     Function: 'CryptGenKey'
    Function group: 'Cryptography Reference'
    18.92 hrs.Function: 'GetModuleFileName'
    Function group: 'Dynamic-Link Library'
     Function: 'OpenService'
    Function group: 'Service'
    Google
    Advertise here!