Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can i solve this error?

Status
Not open for further replies.

aqm

Programmer
Aug 26, 2002
65
AO
hi,
i made a entry form in which i made a table with usernames and passwords and linking to the database, but it gives me this error: user defined type not defined, how can i solve this?
please help
aqm
 
1. You are trying to refer to a object or datatype in your code that doesn't exist

or

2. You have not made the correct reference to the correct libraries in order to use non-access related data types.

You must look at your code and make sure that all the objects have full parent and child references. For example :

Dim Myrs as Recordset

should read

Dim Myrs as DAO.Recordset

Please let me know if this helps.

Mr Big.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top