is there any way of disabling the close button on an inputbox, thereby forcing the user to specify a response??
Printable View
is there any way of disabling the close button on an inputbox, thereby forcing the user to specify a response??
Why not loop until an input has been received .....
Example :
_______________________________
cupsize = InputBox("Please enter user cup size")
Do Until cupsize <> ""
cupsize = InputBox("Please enter user cup size")
Loop
z = MsgBox(cupsize)
______________________________
Bob
good idea!