Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Read Registry Key Without Registry vcx class
Message
De
12/03/2007 12:56:46
 
 
À
12/03/2007 12:16:02
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Versions des environnements
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Divers
Thread ID:
01202744
Message ID:
01202775
Vues:
12
This message has been marked as the solution to the initial question of the thread.
> I can read specific values from registry keys using code without using a separate registry.vcx,
> but I am having problems with this one.

Another approach is to use the WMI registry provider:
#define HKLM 0x80000002

oStdRegProv = getobject("winmgmts://./root/default:StdRegProv")
cValue = space(255)

if oStdRegProv.GetStringValue(HKLM, "SOFTWARE\Classes\AppWare.Project\shell\Open\Command\", "", @cValue) = 0
    ? "Value is " + cValue)
endif
More info on using the provider in VFP is here.

Regards
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform