Rad, might also want to check into pre-selecting an item from each list Two ways to do that:

Using index numbers:

$Form.Show
$Combo1.ListIndex = 0
$Combo2.ListIndex = 1

Using values:

$Form.Show
$Combo1.Value = @WKSTA
$Combo2.Value = UserID2

Little itty-bitty form there ... [Wink]

-Shawn