Editing of ComboBox Selection

  • Thread starter Thread starter Sok Hong
  • Start date Start date
S

Sok Hong

Hello,
Currently I set the form so user cannot modify the
previously entered information, however I want one
comboBox function available for modification. Any clue on
how to go about this? Thank you.
 
Sok Hong said:
Hello,
Currently I set the form so user cannot modify the
previously entered information, however I want one
comboBox function available for modification. Any clue on
how to go about this? Thank you.

If you want direct modification and the combo is bound to its underlying
data, you can simply change the Limit To List property on the property sheet
to No.

If the data is bound to another table, you will probably need to add more
than just the data in the combo. In that case you'll need to use the
NotInList event to open a form based on the table. The Knowledge Base
article may help:

http://support.microsoft.com/default.aspx?scid=kb;en-us;161007
--
Microsoft MVPs have a question for *you*: Are you patched against the Worm?
http://www.microsoft.com/security/security_bulletins/ms03-026.asp

Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads:
http://www.datastrat.com
http://www.mvps.org/access
 
Back
Top