Stupid problem with combo box

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

Guest

Hi, Im in a crunch and can't seem to get this to work.

If Not IsNull(Me.cboTerm) Then
If Me.cboTerm.Column(0) = 27 Then
Me.cboSmartProtect.Column(1) = 27

End If
End If

I get run-time error '424' Object required.

What am I doing wrong. This seems so simple. Thanks in advance for any help.
 
The Column collection is read-only: you can't assign values to it like that.
 
Oops! I guess I've never needed to do that before. Oh well, guess I go to
plan B. Thanks!
 

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