listing items; combo box help (1 Viewer)

finneyz

Registered User.
Local time
Today, 15:46
Joined
Dec 27, 2012
Messages
51
I am looking to LIST the names of the items for my combo box.
figured out my problem last week why my fields weren't attaching to my txtboxes

its cascading combo boxes. I have about 5 fields
I looked for this on the web and found baldys code

Me.CBO_CONT.RowSource = Me.listObjects

was/is my subroutine

Private Sub CBO_CONT_Change()
Me.CBO_CONT.RowSource = Me.listObjects
Me.TXTHULL.Value = Me.CBO_CONT.Column(1)
Me.TXTMANAGER.Value = Me.CBO_CONT.Column(2)
Me.TXTQuantities.Value = Me.CBO_CONT.Column(3)
'Me.Requery.cbo
End Sub

anyone out there that might be able to give a little bit of insight
thanks
 

Users who are viewing this thread

Top Bottom