Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ItemsSelected assistance

Status
Not open for further replies.

coopsman

Technical User
Apr 5, 2002
9
US
I need some quick VBA assistance in Access 2000...I am trying to take Column #3 (not the bound column) from a combo box called Manager and store it in a textbox called mgrparent after I have updated my selection in the Manager combo box. Does anyone have a quick piece of code that will help me accomplish this? Thanks.

Jim
 
place this in the control souce of text3
= manager.Column(2)

remember column = 0

or
in the after update event

me!mgrparent.value = me!manager.Column(2)
 
thanks gol...I forgot that column starts at 0 instead of 1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top