In tblBrand - there are 3 fields - UnitType, MasterType, DateCoding that I
want to display when the user selects a Brand Name.
I have tried using cboBrand.Column(1) etc, but I'm pretty sure I'm missing
something.
BrandID 0"
BrandName 1.5"
UnitType 0"
MasterType 0"
DateCoding 0"
your column count would be 5
To refer to UnitType, your code in the AfterUpdate event of the combo would
look like:
Me.txtWhatever = Me.cboBrand(2)
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
"Piperlynne" <Piper...@discussions.microsoft.com> wrote in message
news:9F4F3390-F1D0-44CF...@microsoft.com...
"Arvin Meyer MVP" <arv...@mvps.invalid> wrote in message
news:uAxQjZy0...@TK2MSFTNGP03.phx.gbl...
Me.MasterType = Me.cboBrand(3)
and DateCoding:
Me.DateCoding = Me.cboBrand(4)
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com
"Piperlynne" <Piper...@discussions.microsoft.com> wrote in message
news:AAD160B1-3114-4084...@microsoft.com...