Results 1 to 6 of 6

Thread: Visual Studio Project Group (IDE)

  1. #1

    Thread Starter
    Addicted Member Tengkorak's Avatar
    Join Date
    Nov 2006
    Posts
    240

    Visual Studio Project Group (IDE)

    how to make a group project in visual studio. NET ?

  2. #2
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Visual Studio Project Group (IDE)

    Assume in future that too many words are better than too few and try to provide a full and clear explanation of the problem. What do you mean by "a group project"? Are you talking about a project that multiple people are going to work on? If so then it's just like any other project, as far as VS is concerned.

    What a proper development team will do is use some form of source control to each merge their changes into a master copy of the project stored on a server and to get everyone else's changes from that server and merge them into their local copy. That's not going to be so easy for a study group though, because you probably won't have a server that you can all access regularly to use for source control.

    Your best bet might be to create a single solution that contains multiple projects and each work on just one project. You can all then merge your projects into the one solution each time you meet. You would have to spend a bit of time up front analysing the project and deciding how to break it up. That part may not be that easy either.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  3. #3

    Thread Starter
    Addicted Member Tengkorak's Avatar
    Join Date
    Nov 2006
    Posts
    240

    Re: Visual Studio Project Group (IDE)

    I want in my project there are several projects.

    For example:
    * Project 1 (windows application)
    * Project 2 (Class Library)
    * Project 3 (Component)

    and I want to merge the three projects mentioned above, in a work area (Group)

  4. #4
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    Re: Visual Studio Project Group (IDE)

    This is a perfect example of why you need to provide a proper explanation of what you want to do. I never would have guessed that that's what you meant.

    You don't have to do anything special. VS works like that by default. When you create a new project, VS automatically creates a solution and adds the project to it. That's why VS has a Solution Explorer window and not a Project Explorer. If you want to keep multiple related projects to gather then you just add them to the same solution. Just as you can add multiple new or existing items to a project, you can add multiple new or existing projects to a solution.

    One advantage of having an application project and its dependent library projects in the same solution is that the library can then reference the projects themselves instead of the output. You can then debug all projects together seamlessly.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

  5. #5
    Randalf the Red honeybee's Avatar
    Join Date
    Jun 2000
    Location
    off others' brains
    Posts
    4,345

    Re: Visual Studio Project Group (IDE)

    The 'group' which you are referring to, is a 'Solution' in visual studio. When you create/open a project, a solution is automatically created by Visual Studio. Select this solution file in the Solution Explorer window and right-click on it. From the context menu you can select Add > New Project to add a new project to the solution, or if the project already is developed, select Add > Existing Project and browse to the existing project that you want to add.

    .
    I am not a complete idiot. Some parts are still missing.
    Check out the rtf-help tutorial
    General VB Faq Thread
    Change is the only constant thing. I have not changed my signature in a long while and now it has started to stink!
    Get more power for your floppy disks. ; View honeybee's Elite Club:
    Use meaningfull thread titles. And add "[Resolved]" in the thread title when you have got a satisfactory response.
    And if that response was mine, please think about giving me a rep. I like to collect them!

  6. #6

    Thread Starter
    Addicted Member Tengkorak's Avatar
    Join Date
    Nov 2006
    Posts
    240

    Re: Visual Studio Project Group (IDE)

    Thanks for the explanation, very helpful at all.
    Finally today I managed to make it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width