Value List in listbox - can't click anything

  • Thread starter Thread starter AmendConstitution_ArnoldForPresident
  • Start date Start date
A

AmendConstitution_ArnoldForPresident

In A2000 I can create a combobox or listbox from either design mode or
wizard, and I set the row source type as Value List. I then load the
row source like
"A";"B";"C"

I hit F5 to "run" the form. The problem is that I can't click any of
the entries. A,B,and C are there, and each one individually
highlights as I pass the cursor over one, but left click does nothing.

Also, what code would I put under a button to hide the form? (Or must
I close it)

TIA
 
AmendConstitution_ArnoldForPresident said:
In A2000 I can create a combobox or listbox from either design mode or
wizard, and I set the row source type as Value List. I then load the
row source like
"A";"B";"C"

I hit F5 to "run" the form. The problem is that I can't click any of
the entries. A,B,and C are there, and each one individually
highlights as I pass the cursor over one, but left click does nothing.

Is the Control locked? Does the form have AllowEdits = False?
Also, what code would I put under a button to hide the form? (Or must
I close it)

Me.Visible = False
 
Back
Top