Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Visual Basic
  4. Vb.net - multi user

Vb.net - multi user

Scheduled Pinned Locked Moved Visual Basic
csharpquestion
6 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Silver Grey
    wrote on last edited by
    #1

    Is there a way to make a vb.net project (solution) so that multiple end-users can use it at the same time ??? Thanks in advanced Silver-grey

    silver-gray

    D 1 Reply Last reply
    0
    • S Silver Grey

      Is there a way to make a vb.net project (solution) so that multiple end-users can use it at the same time ??? Thanks in advanced Silver-grey

      silver-gray

      D Offline
      D Offline
      Dave Kreskowiak
      wrote on last edited by
      #2

      If you're talking about multiple developers writing code in the same solution, then yes, there is. You have to have either Visual Source Safe installed (VS.NET 2002 and 2003) or one of the Visual Studio Team System versions installed (VS.NET 2005) with Team Server installed. Or, some other third party source control solution. This will manage file checkouts and checkins so multiple developers can work on different parts of the solution at the same time. Or were you asking how to write a multi-user app?

      Dave Kreskowiak Microsoft MVP - Visual Basic

      S 1 Reply Last reply
      0
      • D Dave Kreskowiak

        If you're talking about multiple developers writing code in the same solution, then yes, there is. You have to have either Visual Source Safe installed (VS.NET 2002 and 2003) or one of the Visual Studio Team System versions installed (VS.NET 2005) with Team Server installed. Or, some other third party source control solution. This will manage file checkouts and checkins so multiple developers can work on different parts of the solution at the same time. Or were you asking how to write a multi-user app?

        Dave Kreskowiak Microsoft MVP - Visual Basic

        S Offline
        S Offline
        Silver Grey
        wrote on last edited by
        #3

        multi user app

        silver-gray

        D 1 Reply Last reply
        0
        • S Silver Grey

          multi user app

          silver-gray

          D Offline
          D Offline
          Dave Kreskowiak
          wrote on last edited by
          #4

          That depends on what you mean my a "multi-user app"? Since Windows is a single user O/S, every instance of the app doesn't know about any other instance that's running, so I don't get you mean by "how do you do this?"

          Dave Kreskowiak Microsoft MVP - Visual Basic

          S 1 Reply Last reply
          0
          • D Dave Kreskowiak

            That depends on what you mean my a "multi-user app"? Since Windows is a single user O/S, every instance of the app doesn't know about any other instance that's running, so I don't get you mean by "how do you do this?"

            Dave Kreskowiak Microsoft MVP - Visual Basic

            S Offline
            S Offline
            Silver Grey
            wrote on last edited by
            #5

            Several pcs that have the same Software application (VB.NET) all using Access on one server. This is multi-user. This happens in mainframe (CICS) and also in pcs.

            silver-gray

            D 1 Reply Last reply
            0
            • S Silver Grey

              Several pcs that have the same Software application (VB.NET) all using Access on one server. This is multi-user. This happens in mainframe (CICS) and also in pcs.

              silver-gray

              D Offline
              D Offline
              Dave Sexton
              wrote on last edited by
              #6

              Each PC will run its own instance/instances of the app. It's up to you as the developer to provide the app the ability to communicate with the database on the server. Using Access as a database is a real pain (and it's also limited to a 2GB file size), and as such I'd recommend using SQL Server. Also, ADO.NET uses a disconnected data object model in that the app does not persist any connection to the database - it connects, retrieves data & disconnects. This allows your apps to be far more scalable however, concurrency of records then becomes an issue. Learning ADO.NET[^] Introduction to Data Concurrency in ADO.NET[^]

              1 Reply Last reply
              0
              Reply
              • Reply as topic
              Log in to reply
              • Oldest to Newest
              • Newest to Oldest
              • Most Votes


              • Login

              • Don't have an account? Register

              • Login or register to search.
              • First post
                Last post
              0
              • Categories
              • Recent
              • Tags
              • Popular
              • World
              • Users
              • Groups