] Behalf Of Srihari
> Angaluri
> Sent: Thursday, September 16, 2004 3:51 PM
> To: [EMAIL PROTECTED]
> Subject: Re: [ADVANCED-DOTNET] DOT NET Installer project-Help
>
>
> If you created a "Setup Project" in VS.NET, then go to the "Custom
> Actions" ed
rather I am not able to find the code
> editor in that project. ??
>
>
> Thanks,
> Amit Sinha
>
>
> -Original Message-
> From: Unmoderated discussion of advanced .NET topics.
> [mailto:[EMAIL PROTECTED] Behalf Of Srihari
> Angaluri
> Sent: Thursday, Sep
nd the code
> editor in that project. ??
>
>
> Thanks,
> Amit Sinha
>
>
> -Original Message-
> From: Unmoderated discussion of advanced .NET topics.
> [mailto:[EMAIL PROTECTED] Behalf Of Srihari
> Angaluri
> Sent: Thursday, September 16, 2004 3:04 PM
Message-
From: Unmoderated discussion of advanced .NET topics.
[mailto:[EMAIL PROTECTED] Behalf Of Srihari
Angaluri
Sent: Thursday, September 16, 2004 3:04 PM
To: [EMAIL PROTECTED]
Subject: Re: [ADVANCED-DOTNET] DOT NET Installer project-Help
Amit, you have to override the "Commit" meth
Amit, you have to override the "Commit" method in your project installer
class like so:
[RunInstaller(true)]
public class ProjectInstaller : System.Configuration.Install.Installer
{
public override void Install(IDictionary savedState)
{
base.Install(savedState);
}
public override voi
Hi Experts,
Was working on DOT NET Installer project. What I want that after the
installation of my application is over, the question from the user should be
called "Do you want to launch the application now.?" like the typical
installer do..
? Things I have checked - Was looking to do something