473,396 Members | 1,860 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

team dev

hi guys

currently I am working with another developer doing c# but the problem is
when he is debugging I can not run the code or debug as a result we have to
constantly wait on each other.. thus reducing productivity

is there another solution to this ?

Thanks
Tom
Nov 16 '05 #1
9 1072
Hello Tom,

This is a matter of how you architect your software. For example, if you
were developing a Windows Form application and all the business logic is
within the form, you'd very much likely to have the problem you are having
right now. Separation of business logic and UI logic will enable you to have
separate files, which means multiple developers can work on different files.
hi guys

currently I am working with another developer doing c# but the problem
is when he is debugging I can not run the code or debug as a result we
have to constantly wait on each other.. thus reducing productivity

is there another solution to this ?

Thanks
Tom

Nov 16 '05 #2
Not sure if I understand your question completely but check this out:

http://msdn.microsoft.com/vstudio/previous/ssafe/
"Tom Gao" <to********@optushome.com.au> wrote in message
news:41***********************@news.optusnet.com.a u...
hi guys

currently I am working with another developer doing c# but the problem is
when he is debugging I can not run the code or debug as a result we have
to
constantly wait on each other.. thus reducing productivity

is there another solution to this ?

Thanks
Tom

Nov 16 '05 #3
What type of projects are you working on, Tom. ASP.NET?

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Sat, 27 Nov 2004 23:23:10 +1100, "Tom Gao"
<to********@optushome.com.au> wrote:
hi guys

currently I am working with another developer doing c# but the problem is
when he is debugging I can not run the code or debug as a result we have to
constantly wait on each other.. thus reducing productivity

is there another solution to this ?

Thanks
Tom


Nov 16 '05 #4
Hi scott

yes ASP.NET the issue is developer A starts debugging on the project then
the rest of us can not compile or debug. Or when he has an error the rest of
us can not compile either

Thanks
Tom
"Scott Allen" <bitmask@[nospam].fred.net> wrote in message
news:ud********************************@4ax.com...
What type of projects are you working on, Tom. ASP.NET?

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Sat, 27 Nov 2004 23:23:10 +1100, "Tom Gao"
<to********@optushome.com.au> wrote:
hi guys

currently I am working with another developer doing c# but the problem is
when he is debugging I can not run the code or debug as a result we have toconstantly wait on each other.. thus reducing productivity

is there another solution to this ?

Thanks
Tom

Nov 16 '05 #5
Have you thought about all developing on a local virtual directory on your own machines and using a source control system to make sure you don't override eachother's changes?

Regards

Richard Blewett - DevelopMentor
http://www.dotnetconsult.co.uk/weblog
http://www.dotnetconsult.co.uk

Hi scott

yes ASP.NET the issue is developer A starts debugging on the project then
the rest of us can not compile or debug. Or when he has an error the rest of
us can not compile either

Thanks
Tom

Nov 16 '05 #6
if you don't understand then why answer ?

does source safe allow you 3 developers to debug applications at the same
time ? I don't think so...

"Rene" <no****@nospam.nospam> wrote in message
news:ei**************@TK2MSFTNGP09.phx.gbl...
Not sure if I understand your question completely but check this out:

http://msdn.microsoft.com/vstudio/previous/ssafe/
"Tom Gao" <to********@optushome.com.au> wrote in message
news:41***********************@news.optusnet.com.a u...
hi guys

currently I am working with another developer doing c# but the problem is when he is debugging I can not run the code or debug as a result we have
to
constantly wait on each other.. thus reducing productivity

is there another solution to this ?

Thanks
Tom


Nov 16 '05 #7
Tom Gao <to********@optushome.com.au> wrote:
if you don't understand then why answer ?

does source safe allow you 3 developers to debug applications at the same
time ? I don't think so...


You're not being very clear in what you mean. SourceSafe does indeed
allow 3 developers to be developing and each debug the application on
their own box at the same time.

I suspect you mean something different by "debug applications at the
same time" but it's not very clear. Being sarcastic at those who are
trying to help you usually isn't a particularly good way of getting
more help, by the way.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet
If replying to the group, please do not mail me too
Nov 16 '05 #8
Yes, Source Safe is a tool that gives you the ability to have multiple
people working on the same project. This is accomplished by allowing each of
the developers to have a local copy of the whole project in their own
machines, in other words, it would be like if you were the only developer
working on the project locally in your computer.

Since multiple developers make changes to the files, source safe keeps track
of all these changes for you. So one developer can "Check Out" a certain
file form source safe and modify it, once the modifications are completed,
the developer would "Check In" the file so that other developers can "Get
Latest Version" of the file so that everybody's computer has the newest
code.

Like Rechard Blewtt told you, instead of working from a server you will have
to make some modification so that you host IIS in your local computer. Also,
like Jon Skeet told you, don't be so quick to say what on your mind, I know
these things can be frustrating and some time we say thing we did not mean
to so I have no problem letting this one go.

Source safe is nice but you still have to do some research to figure out how
the software works, further more, Microsoft source safe des not work
seamlessly with .Net, there are some things that may annoy you. (Like if you
ever need to rename a file).

You don't have to use Microsoft Source Safe, there are other source controls
tools other that will allow you to do essentially the same thing.
Nov 16 '05 #9
rene, you're right :) sorry about that.. I was frustrated and angry that the
project was going so slowly.

Sorry again
"Rene" <no****@nospam.nospam> wrote in message
news:eK**************@TK2MSFTNGP09.phx.gbl...
Yes, Source Safe is a tool that gives you the ability to have multiple
people working on the same project. This is accomplished by allowing each of the developers to have a local copy of the whole project in their own
machines, in other words, it would be like if you were the only developer
working on the project locally in your computer.

Since multiple developers make changes to the files, source safe keeps track of all these changes for you. So one developer can "Check Out" a certain
file form source safe and modify it, once the modifications are completed,
the developer would "Check In" the file so that other developers can "Get
Latest Version" of the file so that everybody's computer has the newest
code.

Like Rechard Blewtt told you, instead of working from a server you will have to make some modification so that you host IIS in your local computer. Also, like Jon Skeet told you, don't be so quick to say what on your mind, I know these things can be frustrating and some time we say thing we did not mean
to so I have no problem letting this one go.

Source safe is nice but you still have to do some research to figure out how the software works, further more, Microsoft source safe des not work
seamlessly with .Net, there are some things that may annoy you. (Like if you ever need to rename a file).

You don't have to use Microsoft Source Safe, there are other source controls tools other that will allow you to do essentially the same thing.

Nov 16 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Joe | last post by:
Based on what it says in the subscribers downloads for Team Suite I would think it would be there. Can it be downloaded separately or is it just the Workgroups one? Visual Studio Team System...
3
by: Arun Nair | last post by:
''' Can anyone help me with this program it just takes probability of the first team and runs the program doesnt takes the probability of the second team even though specified''' from random...
1
by: =?Utf-8?B?Sm9obiBT?= | last post by:
Hello, I am evaluating MS Team Suite. we need to decide which edition is the most benefit for US. if you have some experience or knowledge about MS Team Please Help.  What are the requirements...
1
by: bharathreddy | last post by:
This Article gives an introduction to VSTS Team Foundation & fundamental difference between Visual Source Safe (VSS) and VSTS Team Foundation. Team Foundation is a set of tools and technologies...
9
by: Smokey Grindel | last post by:
Ok this is making me want to rip my hair out trying to figure out the real price of this thing... we are trying to make up our 2008 budget... we have VS 2005 Pro right now... we like the team...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.