Big Trouble in updating any application

  • Thread starter Thread starter Vinay Patel
  • Start date Start date
V

Vinay Patel

Hi frnds

Here i stuck with big .. problem

i have developed one billing system software now the problem is when
ever i modify something in software ,

to install the new setup i has to uninstall previous s/w so is there
any way to create application

or setup or update pack in this case to avoid process of uninstall and
install to direct only update previous version as standard software
providers are providing

Thanks in advance !!
 
If you organise your code into assemblies then you need to only
replace the modified assembly. For that to work you will need to
organise your code into separate classses for different business and
database functions and then you can move those class files into a
class library project and compilt to DLL. Suppose you will have many
DLLs, then you only need to replace the DLL which was modified by you
in your recent change to the code.

Also if you think yours is a small and simple application made up of
only one exe and some supporting files, why you don't just overwrite
the old exe and other files with the new files. Why you want to run
the setup again?

Also worth checking out is something called ClickOnce Deployment -
http://msdn.microsoft.com/msdnmag/issues/04/05/ClickOnce/

So there are many solutions to your problem. If you give more info
about the structure about your application, what is installed on
user's machine by the setup and things like that I can try to help you
more.

Cheers!

Sachin Palewar
(Certified Scrum Master)

Palewar Techno Solutions
(Mobile Solutions for Your Business)
www.palewar.com
 
Back
Top