Hey thanks John, that worked well. Is there a way now to position the msgbox
somewhere different on the form has it is hiding some of the information on
the form when the box pops up.
> Hey thanks John, that worked well. Is there a way now to position the msgbox
> somewhere different on the form has it is hiding some of the information on
[quoted text clipped - 52 lines]
>> --
>> John Nurick - Access MVP
If you need to position it somewhere special in your window you will
need to create your own unbound form as a message form. Include a
label with your message, and a command button, or 2, or 3, as needed
to react to the message and close the form.
You can then use the MoveSize method in the form's open or load event
and size and position it anywhere you want.
To display the message you would use
DoCmd.OpenForm. "FormName", , , , , acDialog
All code processing will stop until you click one of the command
buttons.

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Chuck - 17 Oct 2007 23:51 GMT
Hi , additionally, i want to check a 2nd combo box for null value before
executiing the msgbox. Can you help me with adding the 2nd combobox *combo53*
If IsNull([Combo43]) Then
MsgBox "Client Name OR New Address is not selected"
Me.[Combo43].SetFocus
Else
strMsg =.............
> > Hey thanks John, that worked well. Is there a way now to position the msgbox
> > somewhere different on the form has it is hiding some of the information on
[quoted text clipped - 64 lines]
> All code processing will stop until you click one of the command
> buttons.
fredg - 18 Oct 2007 00:55 GMT
> Hi , additionally, i want to check a 2nd combo box for null value before
> executiing the msgbox. Can you help me with adding the 2nd combobox *combo53*
[quoted text clipped - 4 lines]
> Else
> strMsg =.............
> ** snipped **
Do you wish either one OR the other is Null?
If IsNull([Combo43]) Or IsNull([Combo53]) Then
Or both must be null?
If IsNull([Combo43]) AND IsNull([Combo53]) Then

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Chuck - 18 Oct 2007 23:47 GMT
thanks Fred, that worked justed fine!
> > Hi , additionally, i want to check a 2nd combo box for null value before
> > executiing the msgbox. Can you help me with adding the 2nd combobox *combo53*
[quoted text clipped - 14 lines]
>
> If IsNull([Combo43]) AND IsNull([Combo53]) Then