Is it possible to put a combo box in a MsgBox?

dmr

Registered User.
Local time
Today, 03:01
Joined
Dec 15, 2009
Messages
34
There is a combo box with a list of revenue types. If the user types into the box a value that is not part of the list, a msgBox pops up and asks them if they want to add that value to the list.
Here is my problem: In that msgBox, I want to give the user a combo box list of revenue groups to choose from (so that the essence of the dialog is "oh, you want to add a new revenue type. Now pick which revenue group it's from).
Is there any way to add a combo box to a msgBox?
 
No, you will have to build your own form and the have it open instead of a standard message box. You add the acDialog in the correct place when opening the form and it will act like the message box where nothing else happens until it closes.
 
You would have to mimic the message box by creating a form with a combo box and the message.
 

Users who are viewing this thread

Back
Top Bottom