Quote Originally Posted by josep
Hi,

You can do the same that jmc told you and just using one inputbox; instead on the WHILE loop you can use a DO loop, put the inputbox line inside your loop, asing the result to a variable and check at the end of the loop

VB Code:
  1. do
  2.  
  3. 'put here your inputbox
  4.  
  5. loop while 'check your var to the correct value in order to exit the loop

hope this helps
And how exactly will the MessageBox be shown if and only if the user enters a blank value?