Component Errors

  • Thread starter Thread starter Augustine Fidelis
  • Start date Start date
A

Augustine Fidelis

I am Intermediate VB Programmer. I develop an
application recently which I intend install on a server
network. But when I was testing software on the server, I
encountered a problem(ie when I tried to load the
application on the network from one of the client comptuer
(work-station). It was complaining of Some components
either missing or not properly registered. And these were
some of the component I used for the program such as
MSAdodc.Ocx... Inshort,some most of the activeX component
that I used.
Apart from developing a server and Client
Application,is there no other ways that can make this
applicatio work properly for me while application is on
server system and been accessed from the client computer?
I will be very grateful and thankful, if I can get
the solution right away.

Thanks
 
Using vb6 I presume? In that case, you're in the wrong newsgroup.
But to answer your question:
An application created with VB6 requires the runtime files, as well as any
ActiveX (OCX) controls to be installed on the users computer.
Installed does noit just mean copied to the users computer - ActiveX
controls must be registered in the computers registry database.
So I suggest you create a setup (A wizard for that is included with VB), and
have all users run the finished setup.
 
Back
Top