Aaron,

$pcname = "" ?`

that means someone hits the enter key without typing a name ...

That could be easily catched in conditions checking like (If you have a naming convention for Workstation names it could also be enhancened more, I assume here a length of 8 characters)


Break On

? "Please enter the Pc Name you wish to connect too"
? "e.g. OSYS10"?

at(4,5) Gets $PcName

If $Pcname="*"
Exit 1
EndIf

while not $pcname or len($pcname) <> 8
beep
at(4,5)" "
Gets $PcName
loop

?"Please enter the Extension you wish the user to see"
?"e.g. 1340"
?
?Gets $ext

"Please enter the Subject the message Box is regarding"
?"e.g. Backup Tapes"
?
?Gets $Subj

$_ = SendMessage ("$pcName", "Please Contact Your System Administrator on Extension $ext ASAP Regarding $subj")

Exit 1


(very raw sample, please don't use unadapted [Wink] )
_________________________