VS 2005 Get The Upgrade That Was Used To Install A Previous Version
Jul 29, 2009
Is it possible to retrieve the pervious upgradeCode that was used to install the same application?
I have given our application to many or our clients.
They install our application using the MSI.
Everytime I release a new version for bug fixes or minor upgrades. In the setup project properties I increment the version number and change the product code (I always leave the same upgrade code). And I set the 'RemovePreviousVersion' to true.
However, a few weeks ago, I accidently changed the upgradeCode and released a new version to our customers. It was only now that a customer wanted to know why they have other instances of the same application in their 'add remove programs'. It installs ok, but they have to uninstall the previous version.
I am wondering is it possible to get back the original upgrade that was used to install those versions. As I used the same setup project, I no longer have that upgrade code?
I still have all my original setups.exe that were built with the original upgradecode
View 3 Replies
ADVERTISEMENT
Jul 29, 2009
Every time I compile my app and the version number changes (I have an auto-incrementing build number), I lose the user-configured app.config settings, since they're stored in the AppData folder for a specific version. Essentially, every release of my application starts from scratch as far as user settings go.
While this is a mild annoyance in development, it raises the question as I approach deployment/release - if I use the app.config to store my user settings, will the user's personalized settings be hosed every time they install a patch that changes the version number of my app? If so, is there an easy way to "upgrade" the settings from the previous release? I know that using HKCU in the registry is another option, but I like the ease of the My.Settings namespace, and I'd like to stay with app.config.
View 2 Replies
Jul 1, 2009
One of the applications I've written uses DirectX in order to record the user speaking (basically for making verbal notes about something). It fails to work correctly when the installed version of DirectX isn't recent enough. I'm just using a setup project of the type inbuilt into VS 2005, is there a way to check at install time that DirectX is recent enough?
View 3 Replies
Jun 16, 2011
I would like my program to overwrite its previous version such that users don't have to uninstall the previous version before installing the new one.
I'm guessing it has something to do with setting Publish Version (Major, Minor, Build, Revision), Assembly Version or File Version.
View 3 Replies
Jul 15, 2010
I'm using VB.NET 2003, and I'm using the installer that comes with the language. I remember reading on this forum a couple of years ago how to configure the installer so that it will automatically overwrite the previous installation. I had configured mine to do that and it worked great. Recently, the installer was lost do to a drive crash, and this trick was lost with it. I have looked through the forum for the post I read, but have not been able to find it. Does anyone know how to configure the built in installer to overwrite the previous installation when installing the program?
View 4 Replies
Feb 28, 2009
I've made a new version of my app and have the .msi made by the depolyment project but when I try to run in on a PC with the old version I just get:"Another version of this product is already installed.Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel"..I need the new .msi to run and overwrite the old version.
View 7 Replies
Aug 11, 2007
Ok, most of my Visual Basic experience I admit was with VB 3 and VB 5. I'm just starting with VB 2005 Express, and get this error when trying to connect to a new database.
I'm using Windows Vista and have the latest Microsoft JET version, so I have no idea why I'm getting that error.
View 3 Replies
Jul 12, 2011
how can i uninstall previous version of my windows applcation which is with different name and location? on installing new versions?
View 3 Replies
Jan 28, 2009
how can i unistall previous version of my windows applcation which is with different name and location? on installing new versions?
View 36 Replies
Oct 27, 2010
Mainly I ask this because I don't want to distribute both versions, and if I need to instal a 64bit .NET on an x64 PC and a 32bit .NET on a 32 bit PC then I would need to make this check in my loader application to download the correct version for the correct PC.
[Code]...
View 2 Replies
May 27, 2011
Can the full version of NET framework 3.5 be included on the install CD? I have a redistributable license for Sql Server Compact, but I haven't been able to find such an agreement for the NET framework package. Just want to stay legal. In need both of these packages to run the distributed program.hemicro
View 2 Replies
Mar 15, 2009
When I upgrade my app it uses a new settings file for my.settings - is there a way to copy the setting from the old version?
View 2 Replies
Jul 7, 2009
I have Visual Studio 2005 Standard Edition. Can this be upgraded to Visual Studio 2005 Professional Edition, rather than purchasing a newer set of Professional Edition?
View 4 Replies
May 30, 2006
I support applications in VB6 and VB2003, and I'm trying to upgrade the VB6 app to VB2005, so I have three versions of Visual Studio on my pc. I ran VS2005 and opened the VB6 app to launch the upgrade wizard. It seemed to run fine until it threw an error saying it could not find the project it just created. The project I'm trying to upgrade is called MGxFromSAP.vbp. The error said it could not find MGxFromSAP.vbproj. The project file it actually created is called MGxFromSAP.vbproj.vs7.vbproj. When I try to open this project in VS2005 it says it was created in an earlier version of Visual Studio and needs to be upgraded.Did it perhaps invoke the VB2003 upgrade wizard instead of the new one? How would I be able to tell?
Should I just let VS2005 upgrade the vs7 project or should I try to deinstall the old VS2003 upgrade wizard and rerun the upgrade from scratch?
View 8 Replies
Mar 12, 2009
Is this software what i need to install to extract data from PDF documents using 2005? If so is this the link i need to get it from? [url] I just got no idea about itextsharp
View 5 Replies
Jun 21, 2010
Well I used the Visual Studio 2010 installer to install my application and I want it to be able to change the version displayed in the in the Add/ Remove Programs (in the Control Panel). How can I do this without going through the install wizard again?
View 3 Replies
Nov 2, 2010
I find that I need to get the first and last days of the previous month to use in a WHERE Between dates clause in a query, simple enough to get the current date, but how to find the other two, especially if you don't know the number of days in each month?
View 8 Replies
Mar 14, 2009
How can i work with Next and Previous button, in VB6 with the help of record set it was quite easy, but in dot net i little bit confused, how to do it?
View 1 Replies
Mar 31, 2009
How they relate and differ from each? What are the best practices for version control? Is there a primer about publish online? Or a good book?
And is it possible to make ClickOnce and a msi in one solution of VS 2008? If so, is there any conflict or pitfall?
BTW I am using VB if that makes any difference.
View 1 Replies
Jul 16, 2011
In Datagridview, Set as DatagridView1.ReadOnly=True,
Dgv1.Rows.Add()
When i tried to add a Row, it is copying previous Row data to new row,and also blank the previous row, why?Like Insert Row, Why...?
View 7 Replies
May 12, 2011
I have made setup of my application consisting of VB.net Windows Application and SQL Server Express 2005 SP4. I have attached SQLEXPR.EXE with proper arguments into Custom Action with commit option.
Now whenever i want to try to install my program is running properly But SQL Server Express is not running showing error (Another intstallation is running....)
So now i want to know how to install SQL Express 2005 SP4 before my package installed using VB.net Package and Deployment.
View 1 Replies
Jan 7, 2009
I need to write an "Install" script in which it installs an application with it's associated files. It also needs to make sure that the application runs in the background and is executed upon bootup of the PC.
View 1 Replies
Jan 21, 2010
Since VB 2005 express does not really install properly in windows 7, here is how to get it to install and make it work right. It's very simple.
1. Right click on the VB 2005 express installer file and click "Properties" in the menu.
2. Now click the "Compatibility" tab.
3. Check the box that says, "Run this program in compatibility mode for:"
4. Click the drop down menu and select "Windows Vista Service Pack 2. (I haven't tried service pack one.)
5. Now check the box that says "Run this program as an administrator" and click "Apply," then "OK"
6. Run the installer.
Wait until VB 2005 express has installed to do these next steps.
7. Make a desktop icon for VB 2005 Express
8. Right click on the VB 2005 express icon and click "Properties" in the menu.
9. Now click the "Compatibility" tab.
10. Check the box that says, "Run this program in compatibility mode for:"
11. Click the drop down menu and select "Windows Vista Service Pack 2. (I haven't tried service pack one.)
12. Now check the box that says "Run this program as an administrator" and click "Apply," then "OK"
VB 2005 Express should now run on you Windows 7 machine! (Yipee) Notice that it is necessary to repeat the same process for the installer file as well as the actual VB program becuase they are two different files and need to run in compatibility mode.
View 3 Replies
Jul 6, 2009
I've an application developed in VS 2005 vb.net I need to install the SQL 2005 express edition thorugh the set up and deployment wizard.I need
1.SQL installation
2.Product installation.
3.Custom form open to set some DB settings in config
View 4 Replies
May 19, 2009
I will be googling this but in case I don't find it easily, here is my question - how do you install a windows service that you've developed on your own PC to a server? Is there an option to produce the package (I thought it was an msi file) which you can run on the server?
View 1 Replies
Jan 23, 2009
I have created a setup project for my application and was wondering how I include the .net framework 2 install file?
View 8 Replies
May 27, 2009
I've asked this before, but it's just not working out in real life. I need to detect which OS is running. Most of them work, but not all. I define my variable:
[Code]...
Surely that isn't correct? these are the actual results from running the code on a machine and reading what it says. From this information, I can't distinguish between Vista and Win2008. How do I do this? What's the difference?
View 9 Replies
Nov 13, 2009
I am making a little Diagnostic Test app to check that certain folders and files exist.I would also like to list some system specs, i have almost all the ones i need except the currently installed framework version.
I have search the My.Computer libraries and in the help but cannot get the framework version to display in a listbox.How to get the framework version into a string?
View 5 Replies
Jun 22, 2009
how can I get the version of a gaced dll?
View 2 Replies
Apr 26, 2010
I have a multi-threaded client and server application written in VS 2005. The server application runs thousands of SQL Server 2005 stored procedures and a lot of file IO. The client application does a lot of file searching, file IO, and string comparisons.Right now everything targets the 2.0 framework. Would it be advantageous to upgrade one or all 3 of them to the 2010 versions? I'm mostly interested in seeing speed enhancements. I haven't been able to find much saying 2010 is better than 2005.
View 2 Replies