I have a form in VB6 which includes the following controls:
DBCombo - to display the AcctDescription
Textbox2 - to accept the VOLUME transacted
Textbox5 - to accept the computation for AMOUNT DUE with the formula:
VOLUME X AccRate depending on the AcctDesc chosen in the
DBCombo
These controls are linked to fields in dtaUnload which is the Data Source.

The DBCombo has AcctDesc as ListField and AcctCode as BoundColumn. Its Row source is dtaRates which is a data control tied up with the TrRates Access table whose fields are:
AcctCode AcctDesc AcctRate

A0001 Account1 2.00
A0002 Account2 2.50
A0003 Account3 3.00

How do I access the AcctRate in the data control named dtarates which is not entered by the user but is included as a field in TrRates so I can use it in the Amount Due computation to de displayed on screen?

I'm a newbie. Please do help. Thanx