Easy System Variables
Easy way to return system variables
Assumes
none, none ,none
Side Effects
your coding becomes a lot quicker!!
API Declarations
None!!!
Rate Easy System Variables
(5(5 Vote))
Private Sub Form_Load()
For i = 1 To 30
MsgBox Environ(i), vbOKOnly, i
Next i
End Sub
I have seen loads of complicated code that does the same
Try this code, every system variable you need in one line of code
Usage:
MsgBox Environ("ComputerName")
MsgBox Environ("Path")
Etc
Easy System Variables Comments
No comments yet — be the first to post one!
Post a Comment