change error message description

F

Flip Kalee

Hi all,


Example:
Private Sub ComboBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
If ComboBox1.MatchRequired = True Then
'MSForms handles this case automatically
Else
--- etc ---

If there is no match an error message is displayed, that's good but
it is a bit confusing so I would like to adjust the text of the message.
Is that possible?
(Office 2000)

Flip
 
W

Word Heretic

G'day "Flip Kalee" <flip@@konitech..nl>,

no tight spec. Answer difficult.

a)
If ComboBox1.MatchRequired = True Then
'MSForms handles this case automatically
Else


=

If ComboBox1.MatchRequired Then



b)

it's a static setting you friggin set. So you know this answer. How
about you tell us what you arte after instead of just what you are
doing.


Flip Kalee said:
Hi all,


Example:
Private Sub ComboBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)
If ComboBox1.MatchRequired = True Then
'MSForms handles this case automatically
Else
--- etc ---

If there is no match an error message is displayed, that's good but
it is a bit confusing so I would like to adjust the text of the message.
Is that possible?
(Office 2000)

Flip

Steve Hudson

Word Heretic, Sydney, Australia
Tricky stuff with Word or words for you.
Email (e-mail address removed)
Products http://www.geocities.com/word_heretic/products.html

Replies offlist may require payment.
 
F

Flip Kalee

Sorry about that,
I wanted to change a hardcoded setting. Replacing it with a MsgBox of my own
does the job ofcourse.
Thanks anyway.
Flip
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top