Custom pop up form

  • Thread starter Thread starter tspies85 via AccessMonster.com
  • Start date Start date
T

tspies85 via AccessMonster.com

Hi,
How do i create a custom pop up form? What is the setting needed to make it
a pop up message box...thanks
 
Hiu

Do you want a message box or a popup form ??

If you're not sure how to create a message box this can be done via a macro
(use the wizard) and for a popup form your can simply create a form and set
it popup property to yes.

Not really sure what else to tell you without more information as not sure
what you're trying to do. If you could give a little more info maybe I could
give you a few tips.
 
Hi Hiu,
I need a message box that created according to my specification. If i use
macro, there is only one OK button. i wish to have it OK and CANCEL etc...
 
Hi Hiu,
I need a message box that created according to my specification. If i use
macro, there is only one OK button. i wish to have it OK and CANCEL etc...

See the VBA help for MsgBox:

Dim iAns As Integer
iAns = MsgBox("Prompt Of Your Choice", vbYesNoOkCancel)
Select Case iAns
Case vbYes
<do something>
Case vbNo
<do something else>
Case vbOk
<etc. etc.>
...
End Select


John W. Vinson[MVP]
 
Back
Top