Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
An alternative way of setting Form.Closable to False
Comparing file times
Obtaining the bounding rectangle for the specified device context
Returning some basic information for the specified INF file
Closing Windows
Creating hash values for the list of names
Current directory of the application
How to save registry key including its subkeys and values to a file
Retrieving the name of the primary domain controller (PDC) and join status information (NT/2000/XP)
Retrieving the rectangle area where the mouse cursor is confined
Using LoadLibrary
CryptoAPI: retrieving list of providers
Enumerating Processes -- Win9*
GDI+: converting image file to another graphics format
How to generate UUID values
Simple MAPI: how to pick an email recipient from Outlook Express address book
Using an Event Object. Part A: running an application that creates an Event object
Enumerating MIDI output devices
Running a regular FoxPro form while main VFP window is minimized
Saving available locale records into a cursor
Using the CopyFile
Winsock: how to retrieve a service information corresponding to a service name
Winsock: retrieving information from a host database for a given host name
List of addresses in the AutoDial mapping database
Enumerating the subkeys of a user-specific key

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
 
#DEFINE ERROR_SUCCESS             0
#DEFINE KEY_READ             131097
#DEFINE KEY_ALL_ACCESS       983103
 
* SHREGENUM_FLAGS
#DEFINE SHREGENUM_DEFAULT   0
#DEFINE SHREGENUM_HKCU      1  && current user
#DEFINE SHREGENUM_HKLM     16  && local machine
#DEFINE SHREGENUM_BOTH     17
 
DO decl
 
hKey = 0
lnResult = SHRegOpenUSKey ("Software", KEY_READ, 0, @hKey, 0)
 
IF lnResult <> ERROR_SUCCESS
    * 127 = ERROR_PROC_NOT_FOUND - means that path not found
    ? "Error code:", GetLastError()
    RETURN
ENDIF
 
CREATE CURSOR cs (keyname C(100))
dwIndex = 0
 
DO WHILE .T.
    lnNameSize = 250
    lcName = Repli (Chr(0), lnNameSize)
 
    IF SHRegEnumUSKey (hKey, dwIndex,;
        @lcName, @lnNameSize, SHREGENUM_HKCU) = ERROR_SUCCESS
 
        INSERT INTO cs VALUES (Left(lcName, lnNameSize))
        dwIndex = dwIndex + 1
    ELSE
        EXIT
    ENDIF
ENDDO
= SHRegCloseUSKey (hKey)
 
SELECT cs
INDEX ON keyname TAG keyname
GO TOP
BROW NORMAL NOWAIT
* end of main
 
PROCEDURE  decl
    DECLARE INTEGER GetLastError IN kernel32
 
    DECLARE INTEGER SHRegOpenUSKey IN shlwapi;
        STRING    pszPath,;
        INTEGER   samDesired,;
        INTEGER   hRelativeUSKey,;
        INTEGER @ phNewUSKey,;
        SHORT     fIgnoreHKCU
 
    DECLARE INTEGER SHRegCloseUSKey IN shlwapi INTEGER hUSKey
 
    DECLARE INTEGER SHRegEnumUSKey IN shlwapi;
        INTEGER   hUSKey,;
        INTEGER   dwIndex,;
        STRING  @ pszName,;
        INTEGER @ pcchName,;
        INTEGER   enumRegFlags
 
 

User rating: 0/10 (0 votes)
Rate this code sample:
  • ~
1455 bytes  
Created: 2001-09-02 12:00:00  
Modified: 2001-09-28 16:45:37  
Visits in 7 days: 92  
Listed functions:
GetLastError
SHRegCloseUSKey
SHRegEnumUSKey
SHRegOpenUSKey
Printer friendly API declarations
My comment:
Try some other path values, e.g. "Software\Microsoft"
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 (54.234.126.92)
2.95 hrs.Example: 'Winsock: sending email messages (SMTP, port 25)'
4.57 hrs.Function: 'CeRegQueryInfoKey'
5.87 hrs.Example: 'How to view icons stored in executable files (Icon Viewer) - II'
 Example: 'How to retrieve adapter information for the local computer (including MAC address)'
9.45 hrs.Function: 'OpenPrinter'
Function group: 'Printing and Print Spooler'
 Example: 'How to find which fonts Windows uses for drawing captions, menus and message boxes'
9.57 hrs.Example: 'PocketPC: creating directories and files'
10.37 hrs.Example: 'Configuring DEVMODE structure for a printer'
10.38 hrs.Function: 'GetRTTAndHopCount'
10.83 hrs.Function: 'DuplicateHandle'
Google
Advertise here!