Click here to Skip to main content
15,915,724 members
Home / Discussions / C#
   

C#

 
AnswerRe: Enums and text descriptions Pin
J4amieC6-May-08 3:49
J4amieC6-May-08 3:49 
GeneralRe: Enums and text descriptions Pin
MrEyes6-May-08 4:13
MrEyes6-May-08 4:13 
GeneralRe: Enums and text descriptions Pin
J4amieC6-May-08 4:17
J4amieC6-May-08 4:17 
GeneralRe: Enums and text descriptions Pin
MrEyes6-May-08 5:01
MrEyes6-May-08 5:01 
GeneralRe: Enums and text descriptions Pin
PIEBALDconsult6-May-08 5:34
mvePIEBALDconsult6-May-08 5:34 
GeneralRe: Enums and text descriptions Pin
MrEyes6-May-08 5:50
MrEyes6-May-08 5:50 
GeneralRe: Enums and text descriptions Pin
PIEBALDconsult6-May-08 5:28
mvePIEBALDconsult6-May-08 5:28 
GeneralRe: Enums and text descriptions Pin
PIEBALDconsult6-May-08 5:30
mvePIEBALDconsult6-May-08 5:30 
GeneralRe: Enums and text descriptions Pin
J4amieC6-May-08 6:03
J4amieC6-May-08 6:03 
GeneralRe: Enums and text descriptions Pin
PIEBALDconsult6-May-08 12:31
mvePIEBALDconsult6-May-08 12:31 
AnswerRe: Enums and text descriptions Pin
PIEBALDconsult6-May-08 5:31
mvePIEBALDconsult6-May-08 5:31 
QuestionSimple C# Text Recognition Pin
Reelix6-May-08 3:14
Reelix6-May-08 3:14 
AnswerRe: Simple C# Text Recognition Pin
J a a n s6-May-08 3:39
professionalJ a a n s6-May-08 3:39 
GeneralRe: Simple C# Text Recognition Pin
Reelix6-May-08 3:42
Reelix6-May-08 3:42 
QuestionHow to create custom Globalization for fomatting numbers ? Pin
hdv2126-May-08 3:13
hdv2126-May-08 3:13 
QuestionWorkFlow Error (Hellp Me Please) Pin
Thaer Hamael6-May-08 2:48
Thaer Hamael6-May-08 2:48 
QuestionCreate a PDF Library to add checkbox, textbox etc in PDF document Pin
Munal Kalyan6-May-08 2:48
Munal Kalyan6-May-08 2:48 
AnswerRe: Create a PDF Library to add checkbox, textbox etc in PDF document Pin
Dave Kreskowiak6-May-08 4:06
mveDave Kreskowiak6-May-08 4:06 
QuestionAdd to Resource (.resx) file problem Pin
Krishnraj6-May-08 2:47
Krishnraj6-May-08 2:47 
AnswerRe: Add to Resource (.resx) file problem Pin
Reelix6-May-08 3:09
Reelix6-May-08 3:09 
QuestionContext Menu problem Pin
Ballita6-May-08 2:22
Ballita6-May-08 2:22 
Questionsetup and deployment project version problem Pin
GuyThiebaut6-May-08 2:20
professionalGuyThiebaut6-May-08 2:20 
AnswerRe: setup and deployment project version problem Pin
Jimmanuel6-May-08 2:50
Jimmanuel6-May-08 2:50 
two options:
1) change the version number to one greater than what you have and rebuild
2) use Windows "Add/Remove Programs" to remove the product that's currently installed and then reinstall the new version

The problem is that windows caches the installer somewhere in it's bowels when you run it. Then when you go back into the project, make changes and rebuild there are now two distinct copies of the installer: the one that windows cached when you last successfully ran it and the new one that you just built in your DEBUG (or Release) folder. Both installers have the same product name and version number so when you try to run the new installer that you just built windows looks and sees that the product that you're trying to install is already there. Then you get the error message that you're seeing.

One way to fix the problem is to used the installer that windows cached when it was to run to remove your product. To do this go through Windows "Add/Remove Programs" and remove it from there.

To change the version number select the Setup Project's project file in the Solution Explorer and look at the Properties tab. One of the Properties is the version number.



GeneralRe: setup and deployment project version problem Pin
GuyThiebaut6-May-08 2:58
professionalGuyThiebaut6-May-08 2:58 
GeneralRe: setup and deployment project version problem Pin
Jimmanuel6-May-08 3:02
Jimmanuel6-May-08 3:02 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.