Functions.QueryRTRegString 方法 | |
从注册表中检索字符串值。
命名空间:
XSharp.VO
程序集:
XSharp.VO (在 XSharp.VO.dll 中) 版本:2.22 GA
语法 FUNCTION QueryRTRegString(
cSubKey AS STRING,
cKey AS STRING
) AS STRING
public static string QueryRTRegString(
string cSubKey,
string cKey
)
查看代码参数
- cSubKey
- 类型:String
- cKey
- 类型:String
您要搜索字符串值的键。
返回值
类型:
String
如果条目
cKey =
cValue 存在,则返回
cValue;否则返回零。
备注
QueryRTRegString() 在以下键中搜索注册表:
HKEY_CURRENT_USER
\\Software
\\ComputerAssociates
\\CA-Visual Objects Applications
\\cSubkey
或:
HKEY_LOCAL_MACHINE
\\Software
\\ComputerAssociates
\\CA-Visual Objects Applications
\\cSubkey
QueryRTRegString() 首先尝试从 HKEY_CURRENT_USER 读取。当在 HKEY_CURRENT_USER 下找不到键时,它会尝试从 HKEY_LOCAL_MACHINE 读取。
示例
此示例使用 QueryRTRegString() 获取与子键 SSA 下的 APP_DIR 注册表项相关联的值。
生成的目录名称在打开文件之前附加到数据库文件名:
1cDbf:=QueryRTRegString("SSA","APP_DIR") + "test.dbf"
2USE (cDbf)
3...
参见