Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unique Workstation ID

Status
Not open for further replies.

darbnacnud

Programmer
Jul 20, 2001
11
US
I'm new to the Citrix environment. How do you identify a specific workstation in VB? Can a workstation be static or is it assigned a new ID each time it logs on?
 
I'm not too good in VB, but each workstation can be identified by its name (which is usually static), which gets passed on to the Citrix Server.

Each session however will receive a new ID or identifier for the duration of the session ?

So, it depends on what you need to do.
Hope this helped a bit.

Regards,
Peter
 
Hi, try this routine. It should pull the info. Just need a listbox.

Private Sub Form_Load()
Dim sEnv As String
Dim ictr As Long
ictr = 1
Do Until ictr = 10000

sEnv = Environ(ictr)
If sEnv <> &quot;&quot; Then
List1.AddItem sEnv
Else
Exit Do
End If
ictr = ictr + 1
Loop

End Sub


Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top