msg = "Do you wish to add " & First & " " & Last & "?"
wscript.echo msg
Wscript.StdOut.Write "Add Employee to DB? (y/n) "
choice = Wscript.StdIn.ReadLine ' read the input
if choice = "y" or choice = "Y" then
' do what you have to do ....
end if
0 Comments