Visual Basic - Instalador de Visual Studio 6

Life is soft - evento anual de software empresarial
 
Vista:

Instalador de Visual Studio 6

Publicado por fredi (5 intervenciones) el 26/09/2000 00:00:00
Hola amigos, tengo un problema el cual consiste en que cuando quiero instalar un sistema el cual esta en VB6 y su instalador generado con el package de visual estudio, todo se instala bien hasta el final que gnera el siguiente error (THE FILE ´C:\WINDOWS\TEMP\MSFTQWS.PDW\$(DLLSelfRegisterEx)´ coul not be registered because it was not found.,no se que debo hacer porque dicho archivo no exisiste en mi maquina es acaso que hay que registrar algo? o que debo hacer por favor necesito su ayuda. Gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder

RE:Instalador de Visual Studio 6

Publicado por Fredi (1 intervención) el 28/09/2000 00:00:00
Yo encontre la solución a la pregunta que realice y aqui les dejo la solución para los que les interese.

PRB: Error "$(DllSelfRegisterEx) Could Not Be Registered"

--------------------------------------------------------------------------------
The information in this article applies to:

Microsoft Visual Basic Learning, Professional, and Enterprise Editions for Windows, versions 5.0, 6.0

--------------------------------------------------------------------------------


SYMPTOMS
When you run a Setup program created with the Visual Basic 5.0 Application Setup Wizard, the following error message appears:



The file ´<Windows System Folder>\$(DLLSelfRegisterEx)´ could not be registered because it was not found.
where <Windows System Folder> is the path of the Windows\System or Winnt\System32 folder.

When you run a Setup program created with the Visual Basic 6.0 Package and Deployment Wizard (PDW), the following error message appears:


The file ´<TEMP Folder>\Msftqws.pdw\$(DllSelfRegisterEx)´ could not be registered because it was not found.
where <TEMP Folder> is the Windows\Temp folder on Windows 95 and Windows 98 or the path to the folder specified by the TEMP environment variable on Windows NT or Windows 2000.



CAUSE
This problem occurs when distributing the Microsoft Calendar control (MSCal.ocx). The "Register=" line in the dependency file (MSCal.dep) is incorrectly set to $(DLLSelfRegisterEx).



RESOLUTION
To fix the problem, do the following:

0
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

RE:Instalador de Visual Studio 6

Publicado por fredi (5 intervenciones) el 28/09/2000 00:00:00
por ser tan grande Esta en dos partes

RESOLUTION
To fix the problem, do the following:

Open the Setup.lst file in a text editor, such as Notepad. Setup.lst is one of the files created for your application setup by the Setup Wizard or PDW.
Find $(DLLSelfRegisterEx). You should see $(DLLSelfRegisterEx) highlighted in the entry for MSCal.ocx.

Change $(DLLSelfRegisterEx) to $(DLLSelfRegister).

Save your changes and close Notepad.

Run the application Setup.exe.

To fix the problem for all setup.exes created with the Setup Wizard and PDW, follow these steps:

Open the MSCal.dep file in a text editor, such as Notepad. You should find MSCal.dep in the same folder as MSCal.ocx, which is normally located in the Windows\System folder on Windows 95/98 and the Winnt\System32 folder on Windows NT or Windows 2000.
Find $(DLLSelfRegisterEx). You should see $(DLLSelfRegisterEx) highlighted in the entry for "Register=".

Change $(DLLSelfRegisterEx) to $(DLLSelfRegister).

Save your changes and close Notepad.
Run the Setup Wizard or PDW to create a new setup.

NOTE: Do not use an existing template in the Setup Wizard or an existing packaging script in the PDW.

MORE INFORMATION
In addition to updating the "Register=" setting in MSCal.dep, you might also need to update the "Version=" setting. For more information, please see the following article in the Microsoft Knowledge Base:
Q197123 PRB: Out-Of-Date Dependency Information for MSCal.ocx
The Microsoft Calendar control does not ship with Visual Basic. The control shi
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar