multitask visualbasic.net

  • Thread starter Thread starter adam
  • Start date Start date
A

adam

Is it possible to have 2 different people working on the
same program over a network, and how is this done?
 
adam,

what do you mean by "working on the same program?" Is it possible to
develop an application with more then 1 developer then the answer is yes
assuming you segragate the tasks and define interfaces and or use a tool
like Visual Source Safe.

If you mean can you install the application on a server and have multiple
users use the same windows-form application then I believe that the answer
is yes assuming that the appropriate dot.net security setting have been
made.

Dan
 
If you mean actually changing the code, then no.. You will need some
source control software (such as Visual Source Safe) which enables a
developer to "check out" code for update which will prevent anybody else
checking out the same code until the first developer checks it back in
again.

A good product to try is from Perforce - www.perforce.com

HTH

Regards
Simon
 
Back
Top