Changing and adding fields in an already constructed Form

  • Thread starter Thread starter Cindy
  • Start date Start date
C

Cindy

Hello,

Here is my problem. When I changed one field from a text
box to a Combo box and added another combo box for another
field and try to run it, I get an Error 438 "Object
doesn't support this property or method". I have a
Command button with an event procedure. I know I'm not
doing something. Please help!

Thanks,
Cindy
 
when you get the error, if you can, choose 'debug'
it should go to a line of code
that line is accessing a member of the control.
since it used to be a textbox, but is now a combobox, the
code is trying to use a field that a textbox has, that a
combobox doesnt

i think theres a good chance its the .Text member
if it is, try changing .Text to .Value

that should solve that particular error, but i can't
gaurantee your form will work, since a combobox is way
different than a text box.
 
Back
Top