S
Sandy
I have a combo box 'cboRepairType' where the Rowsource is:
SELECT * FROM tblGrips ORDER BY GripType
'tblGrips' has three fields
GripType -Text
BuyPrice -Currency
SellPrice -Currency
I have a text box 'txtSellPrice' and the following code to accompany it
"Private Sub cboRepairType_AfterUpdate()
Me.txtSellPrice = cboRepairType.Column(2)
End Sub"
Why does the value from 'tblGrips.SellPrice' not show in the text box. If I
change the .Column(2) to .Column(1) I get the BuyPrice field value. Ideally
I would like to use both of these values
Any advice?
Sandy
SELECT * FROM tblGrips ORDER BY GripType
'tblGrips' has three fields
GripType -Text
BuyPrice -Currency
SellPrice -Currency
I have a text box 'txtSellPrice' and the following code to accompany it
"Private Sub cboRepairType_AfterUpdate()
Me.txtSellPrice = cboRepairType.Column(2)
End Sub"
Why does the value from 'tblGrips.SellPrice' not show in the text box. If I
change the .Column(2) to .Column(1) I get the BuyPrice field value. Ideally
I would like to use both of these values
Any advice?
Sandy