combo list ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I select something in my combo list is there any way to format it to
stay white in color. I have a list of reason codes but when I select one the
background is black. We have to scan our documents and the black causes
problems seeing what has been selected.
 
When I select something in my combo list is there any way to format it to
stay white in color. I have a list of reason codes but when I select one the
background is black. We have to scan our documents and the black causes
problems seeing what has been selected.


Set the focus to a different field after selecting a value in the
combo box.
If that creates the same difficulty in that other field, then add an
unbound text control to the form. Set it's Height and Width properties
to 0". Delete it's attached label.

Code the Combo AfterUpdate event:
Me![TinyControlName].SetFocus.
 

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

Back
Top