| Author: Jitendra Chandrakant More 14 Jul 2011 | Member Level: Silver Points : 0 |
I like it very much and will help me in creating the setup of my project.Thank you very much.
|
| Author: BHANU PRAKASH BYSANI 20 Jul 2011 | Member Level: Gold Points : 1 |
hi After building the project iam getting this error
Error 1 Unrecoverable build error F:\WindowsFormsApplication1\Setup1\Setup1.vdproj Setup1
and in debug folder a file is creating tmp file..
plz help me in rectifying the error
|
| Author: Ravindran 20 Jul 2011 | Member Level: Diamond Points : 1 |
@BHANU
Reason for your error may be version compatible problem or some Mergemod.dll not register please check this link
http://support.microsoft.com/kb/329214/EN-US/
|
| Author: SonyMadhu 27 Aug 2011 | Member Level: Gold Points : 1 |
Hi Ravindran,
This article is nice. Just i downloaded and followed your steps.I double click that set up file to install in my system. After installation, 1.Icon with text 'h' 2.Windowssetup 3.WindowsSetUp.exe XmlConfiguration file 4.Icon with 'DskShortcut' the above 1 to 3 are also created in Desktop.
Regards, Madhu
|
| Author: Harsha 27 Aug 2011 | Member Level: Bronze Points : 0 |
It's help me so much in my project.. thank you
|
| Author: AMISH KUMAR 22 Nov 2011 | Member Level: Bronze Points : 0 |
its a very fantastic site to learn thanks alot
|
| Author: Sagar S pawar 07 Dec 2011 | Member Level: Gold Points : 0 |
its a very nice resource. I learn to add uninstall method in installer.
|
| Author: manikandan 13 Mar 2012 | Member Level: Bronze Points : 0 |
i got litral ans...thanks
|
| Guest Author: Uknees 19 Mar 2012 |
Hi Jim, thanks for neltitg me know about this. The WordPress module seems to work fine with Safari, but the Joomla module doesn't. I'm going to look into it and will be back as soon as possible with the solution.
|
| Guest Author: balu 20 Aug 2012 |
i go through the above process .. but i got error.. that i am receiving data from database ok.. when i am inserting data into emp table(in the application window after installation) it show error ..'operation must use an updatable quer'.. when i open .accdb (database) file in installation folder(c:\...) it shows that it is read only ...
|
| Author: Dinesh Kudale 22 Aug 2012 | Member Level: Silver Points : 1 |
First time, I am creating setup file after seen your screen shot. Really it is very useful to fresher / student like me who want to know that how to create set up file of own program. Again,really,really,really thanks.
|
| Author: Ravindran 22 Aug 2012 | Member Level: Diamond Points : 0 |
Balu make sure it is permission issue mostly it comes it windows7 OS. Make sure you have set sufficient permission to access that folder and database
|
| Author: Ravindran 22 Aug 2012 | Member Level: Diamond Points : 0 |
Thanks Dinesh
|
| Author: siraj 30 Aug 2012 | Member Level: Bronze Points : 0 |
superbb
|
| Guest Author: Archal Gharat 18 Oct 2012 |
Thanks a lot! I have successfully created the setup file. But the uninstall in Program menu again opens my application instead of uninstalling the application from my system. Can u help me??
|
| Author: Ravindran 29 Oct 2012 | Member Level: Diamond Points : 3 |
Archal make sure your write this code in form load
private void Form1_Load(object sender, EventArgs e) { //Below code is used to uninstall application //Get Command Line Arguments string[] arguments = Environment.GetCommandLineArgs(); foreach (string argument in arguments) { if (argument.Split('=')[0].ToLower() == "/u") { string guid = argument.Split('=')[1]; string path = Environment.GetFolderPath(Environment.SpecialFolder.System); ProcessStartInfo si = new ProcessStartInfo(path + "\\msiexec.exe", "/i " + guid); Process.Start(si); Close(); Application.Exit(); System.Environment.Exit(0); } }
//Load DataGridView first time when form load refreshGrid(); }
|
| Guest Author: Abhishek 19 Dec 2012 |
Nice Sir but how i make .exe using Registration key with our own.
|
| Guest Author: Meena Rawat 14 Feb 2013 |
hey when i install setup then it is not working ... don't know what would be happen.. please suggest me what i have to do ... plzzz
|
| Author: Murugesan.P 21 Feb 2013 | Member Level: Bronze Points : 0 |
it is very use ful.....but I m using SQL SERVER
I want the same Steps for SQL SERVER 2008(.mdf file)
Thank u, MURUGESAN.P
|
| Guest Author: smitha 23 Mar 2013 |
Very well explained..This is exactly what i wanted..thankx for saving my time..
|