
Please help first time ADO data control User
Not sure about the control as I haven't yet used it but I have done it in code
for what it's worth:
Set cn = New ADODB.Connection
With cn
.ConnectionTimeout = 3
.CursorLocation = adUseClient
End With
cn.Open "Provider=MSDAORA;Data Source=[Your Data Source];User Id=[Your User
ID];Password=[Your Password];"
Set rs= New ADODB.Recordset
rs "Select * from ATable", cn, OpenKeyset, adLockOptimistic
rs.addnew
rs!Field1=text1.text
rs!Field2=text2.text
rs.update
Tim H.