|
|
|
| Title | Display the value of a specific environment variable |
| Keywords | environment variable, specific environment variable |
| Categories | Software Engineering, Windows |
|
|
|
Pass the Environ function the name of the variable.
|
|
Private Sub cmdGetValue_Click()
txtVariableValue.Text = Environ(txtVariableName.Text)
End Sub
|
| |
|
| |
|
|