vb.net design question on version updates

S

Simon Whale

Hi,

need some design advise. Looking at converting an Access Project into
vb.net but the project undergoes some regular enhancements according to the
business requirements.

Using Visual Studio 2005 what would be the best method to upgrade 40 users
on a version rollout? or would a 3rd party product be better?

Many thanks
Simon Whale
 
S

Scott M.

Simon Whale said:
Hi,

need some design advise. Looking at converting an Access Project into
vb.net but the project undergoes some regular enhancements according to
the business requirements.

Using Visual Studio 2005 what would be the best method to upgrade 40 users
on a version rollout? or would a 3rd party product be better?

Many thanks
Simon Whale


Is it possible to make this an ASP.NET web application and upgrade to SQL
Server? If so, you'd solve your 40 user issue and you'd be able to make
updates as necessary.

-Scott
 
S

Simon Whale

Sadly no as its an insurance underwriting system they dont want to take that
avenue on so it will be a vb.net front end and sql server 2005 back end.
 
S

Scott M.

Simon Whale said:
Sadly no as its an insurance underwriting system they dont want to take
that avenue on so it will be a vb.net front end and sql server 2005 back
end.

It can still be a VB .NET front end and SQL back end. ASP .NET just means
that it will use a web-based interface. It can also be an intranet
applicaiton, so that it is secured and only available internally.

Either way, you are going to have to rewrite most of the code since you
won't be using Acess or Access column types or the Access object model or
VBA anymore.

-Scott
 
S

Simon Whale

the rewrite isn't the problem as i have mainly an .net background rather
than access. i meant by vb.net front end that it wasn't to be intrannet /
extrannet based sorry. hence i was after finding out how best to update the
clients for each update after the initial roll out

Simon
 
S

Scott M.

Well, you have several choices depending on whether these updates will be
mandatory or not.

You could build a polling mechanish into the application that fires upon
startup and uses the network to determine if an update is available and if
so initiate a download of the new assembly, which can take the place of the
orginial.

-Scott
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top