Reputation: 62464
i try to install my C# program on Windows 7 64bit
i installed Access too
and i got this error:
The Microsoft.jet.OLEDB.4.0 provider is not registered on the local machine
that can be the problem ?
thank's in advance
Upvotes: 0
Views: 151
Reputation: 10847
There is a problem with 64 bit version. Try running your application in 32 bit mode and see if that fixes the problem.
Upvotes: 0
Reputation: 33
Compile and run as 32bit (set options in visual studio from target "Any CPU" to "x86").
Upvotes: 2