combo box value

G

Guest

Hi,

I have a combo box used for searching. After a selection is made from the
drop down the relevant record displays on the form. There is navigation
buttons on the form and if the user users these to then navigate to other
records the original selection in the 'search' combo box still remains. This
can confuse the user who may have reocrd "B" displaying on the form but the
combo is displaying record "A". How can I make the combo go blank after it
has lost focus.

Cheers,

nB
 
F

fredg

Hi,

I have a combo box used for searching. After a selection is made from the
drop down the relevant record displays on the form. There is navigation
buttons on the form and if the user users these to then navigate to other
records the original selection in the 'search' combo box still remains. This
can confuse the user who may have reocrd "B" displaying on the form but the
combo is displaying record "A". How can I make the combo go blank after it
has lost focus.

Cheers,

nB

If you used the combo wizard to create the combo box add,
as the last line of code in the Combo AfterUpdate event:

Me![ComboName] = Null
 
E

eos

AUTO-REPLY From George Levitt

Please allow this to confirm a system receipt of your e-mail.

I am out of the office until Wednesday morning (1/12/05) and will not be
reviewing or responding to email or voicemail until that time.

I look forward to replying to your message on Wednesday.

Thanks and warmest regards, George
 
E

eos

AUTO-REPLY From George Levitt

Please allow this to confirm a system receipt of your e-mail.

I am out of the office until Wednesday morning (1/12/05) and will not be
reviewing or responding to email or voicemail until that time.

I look forward to replying to your message on Wednesday.

Thanks and warmest regards, George
 

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