P
Patrick G
A list box can show more then one column at a time.
Can a combobox when it hasnt been clicked open?
Can a combobox when it hasnt been clicked open?
Patrick said:Does anyone know a work around so that the first and last
name of a person selected in the combo box would be
displayed?
I concidered overlaying a lbl modified to look like a
combobox and changing its caption to reflect the choice
made. This the best approach?
-----Original Message-----
Patrick said:Does anyone know a work around so that the first and last
name of a person selected in the combo box would be
displayed?
I concidered overlaying a lbl modified to look like a
combobox and changing its caption to reflect the choice
made. This the best approach?
Why not just change the rowsource of the Combo box from
"Select [NameID],[LastName],[FirstName] From ... etc."
to
"Select [NameID],[LastName] & ", " & [FirstName] as FullName From ...
etc."
--
Fred
Please reply only to this newsgroup.
I do not respond to personal e-mail.
.