R
RICHARD BROMBERG
I have a combobox with the following called cmboSelectCategory with the
following Row Source
SELECT [NAME], [PHONE], [ADD] FROM PHONE WHERE
[PHONE].[CATAGORY]=[Forms]![PHONE]![cmboSelectCategory];
I am using the following procedure to set a label caption
Private Sub cmboSelectName_AfterUpdate()
lblName2.Caption = [Forms]![PHONE]![cmboSelectName]
End Sub
This works okay to set the label caption from the first column in the Select
How do I change the procedure to set the label from the second or third
column?
Thanks
following Row Source
SELECT [NAME], [PHONE], [ADD] FROM PHONE WHERE
[PHONE].[CATAGORY]=[Forms]![PHONE]![cmboSelectCategory];
I am using the following procedure to set a label caption
Private Sub cmboSelectName_AfterUpdate()
lblName2.Caption = [Forms]![PHONE]![cmboSelectName]
End Sub
This works okay to set the label caption from the first column in the Select
How do I change the procedure to set the label from the second or third
column?
Thanks