Dim EmployeeUniqueID As String
Dim picklist As Variant
picklist = workspace.Pickliststrings( PICKLIST_CUSTOM, False , Server , Path &_
"archive.nsf", "ADb", "Archive", "Please select an employee to archive.", 2 , "" )
Dim PType As Variant
PType = Datatype ( picklist )
If PType = 0 Then
Exit Sub
Else
EmployeeUniqueID = picklist(0)
End If