How do you access a specific field using the following format?
Adodc1.RecordSet.Addnew
Is there a way such as:
Adodc1.Recordset("field"
= something
I understand how its done when you hard code the ado object
Set Recordset = New ADODB.Recordset
....
....
Recordset("field"
= something
I'm using data bound controls and the adodc object... but I want, I guess to bound a variable to the adodc object...
Something like:
Adodc1.Recordset("field"
= something
Adodc1.Recordset.Addnew
so that the variable something gets written to the database along with the data bound controls
does any this make sense.
thanks
Adodc1.RecordSet.Addnew
Is there a way such as:
Adodc1.Recordset("field"
I understand how its done when you hard code the ado object
Set Recordset = New ADODB.Recordset
....
....
Recordset("field"
I'm using data bound controls and the adodc object... but I want, I guess to bound a variable to the adodc object...
Something like:
Adodc1.Recordset("field"
Adodc1.Recordset.Addnew
so that the variable something gets written to the database along with the data bound controls
does any this make sense.
thanks