Link to home
Start Free TrialLog in
Avatar of ssonia27
ssonia27

asked on

Error running program on client machine

I have developed s/w in visual basic 6 and database in MS SQL 7.0.
My problem is the program is running without any error on my machine and and some other client machines also.
But it is giving error on one client machine.

In  my s/w package first I'm asking for userid and password from the user when they first run the program.

when the user is entering userid and password and click on OK button. the code will execute the query "select * from tablename"
So on executing this The program is giving following error:
"Class does not support automation or does not support expected interface select * from Table name"

anybody can give idea about how to solve this error.

thanks

SS



Avatar of gerryjc
gerryjc

Did you include the drivers for MS SQL 7.0 in the install for the application?
Is the correct version of MDAC on the Client Machine that does not work?
Read about it here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnmdac/html/data_mdacinstall.asp

Can you give us some more details on the machines?
are you sure to have installed MSDAC with the same version on each machine. MS has developped a software to check the MSDAC package available on each machine (google MS,MSDAC,msdn)to download it
Avatar of Éric Moreau
USE the Package & Deployment Wizard (PDW) from VB to create an installation package. It will surely update MDAC (the ADO library).
Avatar of ssonia27

ASKER

gerryjc
I have installed MS SQL 7.0 connectivity on the client machine. I'll read about MDAC on that link then clear this point

JNSTAUB
which is that s/w to check the version of MSDAC.

emoreau
I have used package and deployment wizard to create installation package. then sun setup on client machine.
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Points to emoreau