LittleSmudge
Programmer
I have a small piece of cosde that works well for many users but some users on Access 2000 on WinXP get the following error.
In a Class Module
I've tried
Dim db As Object
Dim db As Database
Dim db As DAO.Database
Problem machines get an Error No 429
"ActiveX component can't create object"
on the line
Set db = CurrentDb()
What is going on ?
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.
In a Class Module
Code:
Property Get DatabaseNameAndPath() As String
Dim db As Object
Set db = CurrentDb()
DatabaseNameAndPath = CurrentDb.Name
End Property
I've tried
Dim db As Object
Dim db As Database
Dim db As DAO.Database
Problem machines get an Error No 429
"ActiveX component can't create object"
on the line
Set db = CurrentDb()
What is going on ?
G LS
spsinkNOJUNK@yahoo.co.uk
Remove the NOJUNK to use.