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. C#
  4. upgrade C# application from 1.1 to 2.0

upgrade C# application from 1.1 to 2.0

Scheduled Pinned Locked Moved C#
csharpdatabasedotnetcomannouncement
6 Posts 4 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.
  • U Offline
    U Offline
    unitecsoft
    wrote on last edited by
    #1

    Hi I have a large application written in C# with SQL server2000 as database the application is running ok for 2 years now , limitation in Datagrid in C# 1.1 is the only headache facing me when mdifying this application . my quastion is regarding the upgrade to 2.0 for the full application , can 2.0 run the older 1.1 with no modifcations at all , and does the enhancement in 2.0 for the DataGrid in particular and C# in general worth migrating the application into 2.0 . and if so , we have to update the .NET framework on the users machines . is that a straight forward process . Thanx unitecsoft@hotmail.com We will either find a way , or make one .

    C 1 Reply Last reply
    0
    • U unitecsoft

      Hi I have a large application written in C# with SQL server2000 as database the application is running ok for 2 years now , limitation in Datagrid in C# 1.1 is the only headache facing me when mdifying this application . my quastion is regarding the upgrade to 2.0 for the full application , can 2.0 run the older 1.1 with no modifcations at all , and does the enhancement in 2.0 for the DataGrid in particular and C# in general worth migrating the application into 2.0 . and if so , we have to update the .NET framework on the users machines . is that a straight forward process . Thanx unitecsoft@hotmail.com We will either find a way , or make one .

      C Offline
      C Offline
      Christian Graus
      wrote on last edited by
      #2

      I moved a 1.1 app to 2.0, a big one, and didn't have any real issues.

      unitecsoft wrote:

      and if so , we have to update the .NET framework on the users machines . is that a straight forward process .

      There's no upgrade, you leave 1.1, and put 2.0 on as well. So, it's very simple, you just install 2.0

      Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

      U 1 Reply Last reply
      0
      • C Christian Graus

        I moved a 1.1 app to 2.0, a big one, and didn't have any real issues.

        unitecsoft wrote:

        and if so , we have to update the .NET framework on the users machines . is that a straight forward process .

        There's no upgrade, you leave 1.1, and put 2.0 on as well. So, it's very simple, you just install 2.0

        Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )

        U Offline
        U Offline
        unitecsoft
        wrote on last edited by
        #3

        Thanx Christian for your reply That is good , but it raises few more quastions , If .NET 1.1 and 2.0 can exist together on the same development machine , what about user machine , can .NET frameworks 1.1 and 2.0 exist on the same machine ? is .NET 1.1 framework services included within .NET 2.0 ? If I have an application compiled under 1.1 can it run directly on a user machine which has .NET 2.0 , and the opposite ? Also my main quastion regarding DataGrid in C# 2.0 , is it different / better than DataGrid in C# 1.1 , as per my experiance Datagrid in 1.1 is a headache . Dean unitecsoft We will either find a way , Or make one .

        D 1 Reply Last reply
        0
        • U unitecsoft

          Thanx Christian for your reply That is good , but it raises few more quastions , If .NET 1.1 and 2.0 can exist together on the same development machine , what about user machine , can .NET frameworks 1.1 and 2.0 exist on the same machine ? is .NET 1.1 framework services included within .NET 2.0 ? If I have an application compiled under 1.1 can it run directly on a user machine which has .NET 2.0 , and the opposite ? Also my main quastion regarding DataGrid in C# 2.0 , is it different / better than DataGrid in C# 1.1 , as per my experiance Datagrid in 1.1 is a headache . Dean unitecsoft We will either find a way , Or make one .

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

          unitecsoft wrote:

          what about user machine , can .NET frameworks 1.1 and 2.0 exist on the same machine ?

          Of course it can.

          unitecsoft wrote:

          is .NET 1.1 framework services included within .NET 2.0 ?

          unitecsoft wrote:

          If I have an application compiled under 1.1 can it run directly on a user machine which has .NET 2.0

          Yes. There are, however, breaking changes[^]. If you try to run a 1.1 app on a machine that has only .NET 2.0, you'll need to read this.

          unitecsoft wrote:

          and the opposite ?

          No. If you application uses ANY 2.0 specific functionality, it cannot be run under 1.1.

          unitecsoft wrote:

          Also my main quastion regarding DataGrid in C# 2.0 , is it different / better than DataGrid in C# 1.1 , as per my experiance Datagrid in 1.1 is a headache

          The new DataGridView is a completely new grid and blows the old DataGrid right out of the water.

          A guide to posting questions on CodeProject[^]
          Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
               2006, 2007

          U 1 Reply Last reply
          0
          • D Dave Kreskowiak

            unitecsoft wrote:

            what about user machine , can .NET frameworks 1.1 and 2.0 exist on the same machine ?

            Of course it can.

            unitecsoft wrote:

            is .NET 1.1 framework services included within .NET 2.0 ?

            unitecsoft wrote:

            If I have an application compiled under 1.1 can it run directly on a user machine which has .NET 2.0

            Yes. There are, however, breaking changes[^]. If you try to run a 1.1 app on a machine that has only .NET 2.0, you'll need to read this.

            unitecsoft wrote:

            and the opposite ?

            No. If you application uses ANY 2.0 specific functionality, it cannot be run under 1.1.

            unitecsoft wrote:

            Also my main quastion regarding DataGrid in C# 2.0 , is it different / better than DataGrid in C# 1.1 , as per my experiance Datagrid in 1.1 is a headache

            The new DataGridView is a completely new grid and blows the old DataGrid right out of the water.

            A guide to posting questions on CodeProject[^]
            Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
                 2006, 2007

            U Offline
            U Offline
            unitecsoft
            wrote on last edited by
            #5

            Thanx alot dave your reply is realy helpfull , let me ask you about crystal reports , is it still supported in VS2005 . I have about 200 reports written in crystal reports 9 under VS2003 , last thing I nead is to recreate them . Crystal reports are realy powerful , only distribution with the aplication is a bit complicated from the license point of view . is there any reporting system in VS2005 different than crystal reports , and if so , is it better ? Dean We will either find a way , or make one .

            N 1 Reply Last reply
            0
            • U unitecsoft

              Thanx alot dave your reply is realy helpfull , let me ask you about crystal reports , is it still supported in VS2005 . I have about 200 reports written in crystal reports 9 under VS2003 , last thing I nead is to recreate them . Crystal reports are realy powerful , only distribution with the aplication is a bit complicated from the license point of view . is there any reporting system in VS2005 different than crystal reports , and if so , is it better ? Dean We will either find a way , or make one .

              N Offline
              N Offline
              Nouman Bhatti
              wrote on last edited by
              #6

              crystal reports works well with VS2005. only thing as u said u have to take care at the time of making setup and deployment. i heard of something "reporting services" in VS2005 but didn't work in it.

              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