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 sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problems Transfering Program 1

Status
Not open for further replies.

brianwustl

Programmer
Feb 14, 2005
11
US
Hello,

I'm trying to transfer a program from one computer to another. I copied all the necessary files, but I still get these 3 errors when opening the program (Visual Basic 6.0):

Code:
ProjectFolder\REPORTPARAMETERDIALOG.DLL could not be loaded--Continue loading project?
Code:
ProjectFolder\ACTPMNT.OCX could not be loaded--Continue loading project?
Code:
Unspecified Error

Even when placing these files into the path, I still get these errors.

Also, I get errors that appear in log files when trying to open some of the forms:

Code:
Line 57: Property OleObjectBlob in CSComboBox1 could not be set.
Line 57: Cannot load control CSComboBox1; license not found.
Line 243: Cannot load control csHyperText1; license not found.
Line 302: Cannot load control CSVList1; license not found.

and

Code:
Line 242: Cannot load control CSVList1; license not found.
Line 363: Cannot load control CSVList2; license not found.

and

Code:
Line 95: Property OleObjectBlob in CSComboBox1 could not be set.
Line 95: Cannot load control CSComboBox1; license not found.

Any suggestions?

Thanks,
Brian Glass
Washington University in St. Louis
 
Just copying the files to the other computer isn't enough. You need to register the files.

click start -> run
Type CMD
Click OK

regsvr32 "C:\Path to file\sub folder\REPORTPARAMETERDIALOG.DLL"

regsvr32 "C:\Path To File\sub Folder\ACTPMNT.OCX"


-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Thank you, that cleared the two first message boxes. But the third message box still comes up.

And, I still have the problems with the forms.

Any ideas?

Thanks,
Brian
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top