Results 1 to 2 of 2

Thread: Creating a custom installer that displayes a form after installing

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Dec 2001
    Posts
    1,331

    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
    steve

  2. #2
    Banned randem's Avatar
    Join Date
    Oct 2002
    Location
    Maui, Hawaii
    Posts
    11,385

    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.... Expecially in VB

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width