After Event Update issue

R

Rpettis31

I am trying to pull a value from another field namely another column.
In the After Event update.

Me.cboOrderNumber.column(6) = Me.txtVendor

I am having issues with the column(6)
 
L

Linq Adams via AccessMonster.com

I am having issues with the column(6)

really doesn't tell us a thing! What kind of "issues?" Do you actually have 7
columns in your combobox?
I am trying to pull a value from another field namely another column.
In the After Event update.

In what AfterUpdate event?

You really have to give us help here; we don't have your app in front of us.
Me.cboOrderNumber.column(6) = Me.txtVendor

This statement tries to assign the value of

Me.txtVendor

to the 7th coluimn of your combobox, which you can't do! Are you actually
trying to assign the value of Me.cboOrderNumber.column(6) to Me.txtVendor?

If so your statement needs to be reversed to

Me.txtVendor = Me.cboOrderNumber.column(6)
 
Top