PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WD20] Customizing the Setup Windows
[WD20] Customizing the Setup Windows
Iniciado por guest, 09,dic. 2015 21:02 - No hay respuesta
Publicado el 09,diciembre 2015 - 21:02
http://doc.windev.com/en-US/…

I followed the instructions from the link above. I edited WDSetup. All I did was remove all instances of 'Powered by Windev'. Then I updated all template dependencies and recompiled. Then I generated the executable with these options:

Including the main libary in the executable
Single-instance (no simultaneous execution)
Framework DLL beside the executable

Next I went into my project and clicked WDInst on the Tools ribbon. From there I clicked Parameters of setup and clicked Options of the installer. Under Installer to use I selected the exe I just generated to use as a customer installer. I validate the window and then create the setup procedure of the executable for my project. It works. Then I click test to begin the installation. When I click install I get this error:

Quote

Error at line 21 of Global Procedure PrepareProgBar process.

The 'UpdInProg.ProgBarUpdate' control is unknown.



----- Technical Information -----



Project : WDSETUP



WL call:

Process of 'Global Procedure PrepareProgBar' (Setup.PrepareProgBar), line 21, thread 0



What happened?

The 'UpdInProg.ProgBarUpdate' control is unknown.



Error code: 1017

Level: fatal error (EL_FATAL)



Dump of the error of 'wd200vm.dll' module (20.0.504.0).

Identifier of detailed information (.err): 1017

Additional Information:

EIT_PILEWL :

Global Procedure PrepareProgBar (Setup.PrepareProgBar), line 21

Global Procedure InstallAll (Setup.InstallAll), line 3

Local Procedure bStartSetup (SETUPWIZ.PROCEDURE.bStartSetup), line 47

Local Procedure nOnNextPlane (SETUPWIZ.PROCEDURE.nOnNextPlane), line 135

Local Procedure nOnNextPlane (SETUPWIZ.PROCEDURE.nOnNextPlane), line 83

Method OnNext (CAssWDS.OnNext), line 32

Click NEXT (WINTPL_Wizard template) (SETUPWIZ.NEXT), line 1

Global Procedure gStartWDSetup (Global_Procedures_of_WDSetup.gStartWDSetup), line 92

Initializing WDSETUP (), line 58

EIT_DATEHEURE : 09/12/2015 13:56:05

I found the ProgBarUpdate control in the UpdInProg window. The control is recognized on line 21 where the error occurs. Everything seems to be in order within the WDSetup project. I've tried adding every dll I could get my hands on while generating.

Anyone ever come across this?