Using Win32 functions in Visual FoxPro Image Gallery
Code examples:
Simple Window Viewer
Using shared memory to exchange data between two FoxPro applications
Winsock: how to retrieve the protocol information corresponding to a protocol name
How to perform Base64 encoding/decoding using Cryptography API Functions
Obtaining OS memory performance information
PocketPC: custom RAPI class for executing routines on remote Windows CE device
Dial the Net Automatically
Clipping mouse cursor area
Displaying Windows shell folders in TreeView control with Visual FoxPro FLL
How to view system icons for the classes installed on the local machine
Retrieving various system metrics
Enhanced GetFont dialog
Enumerating the subkeys for a given registry key
Creating a unique filename based on existing filename
Monitoring changes in a directory
Retrieving geometrical parameters of the system desktop window
Retrieving information specific to the current Time Zone
How to obtain Content-Type value for a file type from the System Registry
Using FillMemory
CryptoAPI: retrieving list of providers
Reading VFP settings from the Windows Registry
Retrieving list of supported paper names (for example, Letter or Legal) for a given printer
Using the GetTempFileName
Winsock: how to retrieve the protocol information corresponding to a protocol number
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: 80  
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 (23.22.252.150)
3 sec.Function: 'GdiFlush'
38.08 min.Example: 'Connecting a local device to a network resource'
38.13 min.Function: 'ImageList_Remove'
Function group: 'Windows Controls'
7.52 hrs.Function: 'GdipCreateHICONFromBitmap'
7.53 hrs.Example: 'Exporting DLL icon resources as .ICO files'
12.69 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'
13.74 hrs.Example: 'How to enumerate sessions and processes on a specified terminal server'
 Function: 'LocalAlloc'
18 hrs.Example: 'Converting long file names to the short format and vice versa'
Google
Advertise here!