|
-
Sep 25th, 2000, 08:46 AM
#1
Thread Starter
Hyperactive Member
is there any way of disabling the close button on an inputbox, thereby forcing the user to specify a response??
-
Sep 25th, 2000, 08:57 AM
#2
Member
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
-
Sep 25th, 2000, 09:00 AM
#3
Thread Starter
Hyperactive Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|