![]() |
![]() | #1 |
Web developer Join Date: 09 2002 Location: Yerevan Age: 40
Posts: 896
Downloads: 1 Uploads: 0
Reputation: 9 | 0 | ![]()
I have a Visual Basic project and want to make Setup Package file for it. I use Package and Deployment Wizard in Visual Studio. It makes setup files, but give such error on installation: ----- Invalid line in setup information file Section 1: Setup files @comdlg32.ocx; $(WinSysPath)... ----- (I use Common Dialog component in my project) Can you tell me the way how to make setup installation package? |
![]() |
![]() | #2 |
Академик Join Date: 09 2001 Location: inside myself
Posts: 5,369
Downloads: 0 Uploads: 0
Reputation: 18 | 5 | ![]()
in order to create an install-project U have to add all components required by your app. in this particular case "comdlg32.ocx" component is not in a list of files to be installed. Note that ActiveX components couldn't be simply copied during installation - they need registration on a client machine, too (read manuals). hope this helps.
__________________ И повешенные могут качаться в неположенную сторону. /С.Е.Лец/ |
![]() |
![]() | #3 |
Web developer Join Date: 09 2002 Location: Yerevan Age: 40
Posts: 896
Downloads: 1 Uploads: 0
Reputation: 9 | 0 | ![]()
But I'm checking that component in list when making setup. How can I copy that ActiveX compnonent to client machine registry? I couldn't find it im manual
|
![]() |
![]() | #4 | |
Академик Join Date: 09 2001 Location: inside myself
Posts: 5,369
Downloads: 0 Uploads: 0
Reputation: 18 | 5 | ![]() Quote:
So there you have to write shell-code like: "regsvr32 <my_path_where_component_have_been_installed\>MyActiveX.ocx" to unregister component (i.e. on Uninstall) use: "regsvr32.exe /u MyActiveX.ocx" try this. | |
![]() |
Sponsored Links |
![]() |
Thread Tools | |
|
На правах рекламы: | |
![]() | |