Moon
·
Feb 12, 2010
·
Viewed 148.1k times
·
Source
I have created an application (C#, Windows Forms) on Visual Studio 2008, and now I want to make installer of this application. How can this be done?
I want my installer to
Copy all the files that my
application is using to a user
chosen path (copy the files to
the chosen, some for the server-side application and
some for the client side).
Add targets from all projects you want to be installed.
Configure pre-requirements and choose "Check for .NET 3.5 and SQL Express" option. Choose the location from where missing components must be installed.
Configure your installer settings - company name, version, copyright, etc.
I've finished my C# application, but I have a little problem:
When I try to run my application in another PC, I need always to Install .NET Framework 4.0.
Is there something to do to make it work without installing the …
I have a windows forms app with a textbox control that I want to only accept integer values. In the past I've done this kind of validation by overloading the KeyPress event and just removing characters which didn't fit the …
In C# WinApp, how can I add both Text and Value to the items of my ComboBox?
I did a search and usually the answers are using "Binding to a source".. but in my case I do not have a …