Textbox options

  • Thread starter Thread starter Bud
  • Start date Start date
B

Bud

I have a form with a combo textbox & within it, I have 11
options. I want to take only one (1) particular option
(when selected) to open another form. Does anybody know
how I would the following:
1. How do I find the value of a selected option within a
field?
2. what "code" do i write to execute?
 
Bud,

1. SelValue = Forms!FormName!ComboName
2. Docmd.OpenForm "FormName"

Change FormName and ComboName to the actual form and control names.

HTH,
Nikos
 
Back
Top