MsgBox

  • Thread starter Thread starter Scott Duncan
  • Start date Start date
S

Scott Duncan

Is there any way to create custom Message Box Buttons programmatically ?
Dim Box As Integer
Box = MsgBox("Do you want a Map [Yes] or Directions [No] ?", vbYesNo, "Get Map")
If Box = vbYes Then

End If

I would like the Buttons 'Map' and 'Directions'

TIA,

SD
 
Scott,
Not that I'm aware of...
But, you should be able to create a small popup form that looks exactly
like a MsgBox, and on that form, you can have any buttons you want.
It's akin to making a subform that looks just like a Datasheet view, but
is really a normal continuous subform that you can customize the way you
wnat.
hth
Al Camp

Scott Duncan said:
Is there any way to create custom Message Box Buttons programmatically ?
Dim Box As Integer
Box = MsgBox("Do you want a Map [Yes] or Directions [No] ?", vbYesNo, "Get Map")
If Box = vbYes Then

End If

I would like the Buttons 'Map' and 'Directions'

TIA,

SD
 
Back
Top