This code will give you a collection of all the environment variables which can then do what you want with:
Option Explicit
Dim Env As New Collection
Private Sub Command1_Click()
Dim Indx As Integer
Dim EnvString As String
Indx = 1
Do
EnvString = Environ(Indx)
Env.Add Item:=EnvString, Key:=CStr(Indx)
Indx = Indx + 1
Loop Until EnvString = ""
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.