Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Read Registry Key Without Registry vcx class
Message
From
12/03/2007 12:56:46
 
 
To
12/03/2007 12:16:02
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows XP SP2
Network:
Windows 2003 Server
Database:
MS SQL Server
Miscellaneous
Thread ID:
01202744
Message ID:
01202775
Views:
13
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform