C#: Setup Project in VS2010 with Custom actions
-
I am creating a setup and deployment project in visual studio 2010. I need some custom action to be performed. I added an user interface with a text box that will accept the mail ID from user during installation and check from the database whether the mail id already exists in my user table. Please help me.
-
I am creating a setup and deployment project in visual studio 2010. I need some custom action to be performed. I added an user interface with a text box that will accept the mail ID from user during installation and check from the database whether the mail id already exists in my user table. Please help me.
-
Sorry. In my setup project, I want to add an user interface with a text box that will accept the mail ID from user during installation and check from the database whether the mail id already exists in my user table.
-
And what is the problem with doing that? Will the setup program have access to the database?
I created a setup project in VS2010 and added a user interface selecting a text box field. The user interface is appearing during installation. I want to validate the input entered in the text box. How can I do this? Where should I check this? Please help me in how to validate the fields. In VS2012, Install shield Limited edition I did not find how to add user interface also.
-
I created a setup project in VS2010 and added a user interface selecting a text box field. The user interface is appearing during installation. I want to validate the input entered in the text box. How can I do this? Where should I check this? Please help me in how to validate the fields. In VS2012, Install shield Limited edition I did not find how to add user interface also.
-
AshwiniSH wrote:
Where should I check this?
Presumably you will capture the input and validate it against some values that you have in your code.
-
AshwiniSH wrote:
Where should I check this?
Presumably you will capture the input and validate it against some values that you have in your code.
I was able to add a user interface but not able to do any validations to it as I don't know where exactly I can refer the user interface I added. So, I decided to do it another way. i.e run my application exe after the installation. My application has a windows form which accepts user details and can validate through code behind. In this case I don't want to show "Installation Complete" screen. I want my application to be launched instead of "Installation Complete" screen. How can I do this? Can you please help me in this?