Value
This property sets or returns the value of the specified key.
Syntax
Value (Key as String, Parent as String, Client as String) as String
Parameter | Description |
---|---|
Key | Key name, which is assigned to the value. |
Parent | Parent name of the key. |
Client | Name of the client. If this parameter is an empty string, the active client is used. |
Sample Code
MyDBPath = Settings.Value(" DatabaseName ", " ", " ")
'now we can open the database
DB.Open(MyDBPath, …)