Popup sub-form

Whitchurchcomputing

New member
Local time
Today, 12:09
Joined
Jan 21, 2013
Messages
8
Hello again.
Just wondering if there was a simple way to have a sub form pop up once the user has filled in set fields etc.
eg.

Customer fills in required information in said fields, they then add the data using a button, but when they click the button a sub form ( I'm not even sure if i would need a sub form) with a toggle button saying do you wish to add another client or continue browsing? they obviously click which they require and carry on.

Is there a way i could do this pretty simply?
I'm not even sure how to create a sub-form that appears as a popup.

I appreciate any help, WHC.
 
Would a msgbox do the trick for you?
eg
if msgbox("Would you like to add another?" & vblf & _
"Click Yes to add another or No to continue.",vbyesno+vbquestion,"Add Another?") = vbyes then
'Do something
Else
'Do something else
End if
 
That should do the trick, i'll get back to you otherwise.
Thanks.
 

Users who are viewing this thread

Back
Top Bottom