Creating a custom installer that displayes a form after installing
Hello
I have created a custom installer that will display a form after the installation is completed.
There is the code for the installer class
Code:
Protected Overrides Sub OnAfterInstall(ByVal savedState As System.Collections.IDictionary)
MyBase.OnAfterInstall(savedState)
Dim myform As New Form1()
myform.Show()
End Sub
I have added the project outputs on both the install and commit nodes in the custom actions.
When the installer finishes installing it will quickly flash the form and then disappear.
Can anyone tell me where I am going wrong.
Thanks in advance,
Steve
Re: Creating a custom installer that displayes a form after installing
Quote:
Originally Posted by steve_rm
Can anyone tell me where I am going wrong.
Creating the installer.... :confused: Expecially in VB