how?
i need get some data from table, at the action
i try anything DAO and ADO, it doesn't works((
for example, this code
it returns error at the first line Dim WorkBase as Database
"User-defined type not defined"
what's wrong?
help me pls
i need get some data from table, at the action
i try anything DAO and ADO, it doesn't works((
for example, this code
Code:
Dim WorkBase as Database Dim WorkRS1 as Recordset Dim SQL as String Set WorkBase = OpenDataBase(“voyages.mdb”) SQL = “Select init from Managers WHERE contact=” & manager Set WorkRS1 = WorkBase.OpenRecordset(SQL) WorkRS1.Close WorkBase.Close
"User-defined type not defined"
what's wrong?
help me pls
Comment