CptCrusty1
Programmer
HI! I can write moderate code in DAO, I'm looking for basic translation for ADO so that I can "get the feel of it." Unfortunatley, I'm rather stupid thus I need to "see" examples to learn by.
ie.
[blue]
DIM rs as DAO.RECORDSET
DIM db as DAO.DATABASE
DIM strSQL AS STRING
DIM strVAR String
set db = currentdb()
strSQL = "some query I write looking for a single value"
Set rs = db.openrecordset(strSQL, dbOpenDynaset)
me.strVAR = rs!Value
End Sub
[/blue]
If anyone has a copple minutes, could you provide the same type of thing in ADO?
I really appreciate it.
Thx. CRUSTY
I live to work and I work to live.
ie.
[blue]
DIM rs as DAO.RECORDSET
DIM db as DAO.DATABASE
DIM strSQL AS STRING
DIM strVAR String
set db = currentdb()
strSQL = "some query I write looking for a single value"
Set rs = db.openrecordset(strSQL, dbOpenDynaset)
me.strVAR = rs!Value
End Sub
[/blue]
If anyone has a copple minutes, could you provide the same type of thing in ADO?
I really appreciate it.
Thx. CRUSTY
I live to work and I work to live.