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. The Lounge
  3. Laptop recommendation

Laptop recommendation

Scheduled Pinned Locked Moved The Lounge
htmlmobilevisual-studiocomquestion
58 Posts 20 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.
  • R Rajesh R Subramanian

    I am looking at hp Pavilion tx1016AU[^], which is a 64 bit tablet pc. It looks like a good buy, but I have a few questions. This one being a 64 bit computer, will I be able to write applications for 32 bit computers sitting on it? I guess there has to be a setting in VS wherein I can specify if I need my app to run on 32 or 64 bit. I have never worked with 64 bit computers and so I do not know this for sure. Is there anything else that you think is bad about this notebook? I cannot think outside HP since my company has a tie-up with them. Moreover, can someone tell me if the AMD processor that it has will be good? :~ Is there an HP alternative that you would suggest? My budget is 85000 INR. Thank you very much.


    Nobody can give you wiser advice than yourself. - Cicero

    R Offline
    R Offline
    Ryan Roberts
    wrote on last edited by
    #30

    I was looking at one of those in my quest for a performant tablet PC. Its not a 'real' tablet - its an x-y digitizer not a proper wacom tablet with pressure / angle sensitivity. If you haven't used one, trust me you can tell the difference. I ended up getting a high end Tecra M7 (refurbished for about £800), that has pretty good video, 1440x900 display and a 1.66 core 2 duo. If you really want the 64 bits though..

    R 1 Reply Last reply
    0
    • D Dario Solera

      brahmma wrote:

      Will I be able to compile an application for 32 bit, sitting on an 64 bit OS?

      Yes, of course. BTW, if you're using .NET, you don't have to take care of that stuff.

      If you truly believe you need to pick a mobile phone that "says something" about your personality, don't bother. You don't have a personality. A mental illness, maybe - but not a personality. - Charlie Brooker My Blog - My Photos - ScrewTurn Wiki

      R Offline
      R Offline
      Rajesh R Subramanian
      wrote on last edited by
      #31

      Dario Solera wrote:

      Yes, of course

      Thank you very much.

      Dario Solera wrote:

      BTW, if you're using .NET, you don't have to take care of that stuff.

      How? Any link or a pointer? That must be an interesting read. (Anyways, we are using MFC and our next project is going to be on .NET; I can't wait).


      Nobody can give you wiser advice than yourself. - Cicero

      D 1 Reply Last reply
      0
      • M Mike Dimmick

        Visual Studio 2005 is still 32-bit and still generates 32-bit code (unless you use the x64 cross-compiler). The Solution Platform drop-down in 2005 gains an 'x64' entry in addition to the 'Win32' option. The 'native' x64 compiler (64-bit compiler generating 64-bit code) lives in C:\Program Files\Microsoft Visual Studio 8\VC\bin\amd64, while the cross-compiler (32-bit compiler generating 64-bit code) lives in C:\Program Files\Microsoft Visual Studio 8\VC\bin\x86_amd64. .NET Framework 2.0 supports both 32-bit and 64-bit processes on an x64 system. What code loads where depends on how the assemblies are marked. If marked 'MSIL' they are register-width independent, and will load into either width process - if an EXE, it will (I believe) start a 64-bit process. If marked 'x64' it will only load into a 64-bit process. If marked 'x86' it will only load into a 32-bit process and an EXE will start a 32-bit process. By default a new project in VS is marked 'Any CPU' (MSIL) - to add a different configuration, go into the Build/Configuration Manager dialog.

        Stability. What an interesting concept. -- Chris Maunder

        R Offline
        R Offline
        Rajesh R Subramanian
        wrote on last edited by
        #32

        Quite informative. Thank you very much.


        Nobody can give you wiser advice than yourself. - Cicero

        1 Reply Last reply
        0
        • M Mike Dimmick

          Visual Studio 2005 is still 32-bit and still generates 32-bit code (unless you use the x64 cross-compiler). The Solution Platform drop-down in 2005 gains an 'x64' entry in addition to the 'Win32' option. The 'native' x64 compiler (64-bit compiler generating 64-bit code) lives in C:\Program Files\Microsoft Visual Studio 8\VC\bin\amd64, while the cross-compiler (32-bit compiler generating 64-bit code) lives in C:\Program Files\Microsoft Visual Studio 8\VC\bin\x86_amd64. .NET Framework 2.0 supports both 32-bit and 64-bit processes on an x64 system. What code loads where depends on how the assemblies are marked. If marked 'MSIL' they are register-width independent, and will load into either width process - if an EXE, it will (I believe) start a 64-bit process. If marked 'x64' it will only load into a 64-bit process. If marked 'x86' it will only load into a 32-bit process and an EXE will start a 32-bit process. By default a new project in VS is marked 'Any CPU' (MSIL) - to add a different configuration, go into the Build/Configuration Manager dialog.

          Stability. What an interesting concept. -- Chris Maunder

          M Offline
          M Offline
          Maxwell Chen
          wrote on last edited by
          #33

          And there are Visual Studio 64-bit Components[^] in addition.


          Maxwell Chen

          1 Reply Last reply
          0
          • R Rajesh R Subramanian

            Dario Solera wrote:

            Yes, of course

            Thank you very much.

            Dario Solera wrote:

            BTW, if you're using .NET, you don't have to take care of that stuff.

            How? Any link or a pointer? That must be an interesting read. (Anyways, we are using MFC and our next project is going to be on .NET; I can't wait).


            Nobody can give you wiser advice than yourself. - Cicero

            D Offline
            D Offline
            Dario Solera
            wrote on last edited by
            #34

            brahmma wrote:

            How?

            It's just that .NET compiles to IL (Intermediate Language) which is JIT-compiled to native code on the target machine running the proper version of the .NET runtime. This way you don't have to take care of the target operating system, you just write your application. The nice thing of this structure is that (theoretically), your application runs as fast as possible on the target hardware (and OS), regardless of the configuration of the development machine.

            If you truly believe you need to pick a mobile phone that "says something" about your personality, don't bother. You don't have a personality. A mental illness, maybe - but not a personality. - Charlie Brooker My Blog - My Photos - ScrewTurn Wiki

            R 1 Reply Last reply
            0
            • R Ryan Roberts

              I was looking at one of those in my quest for a performant tablet PC. Its not a 'real' tablet - its an x-y digitizer not a proper wacom tablet with pressure / angle sensitivity. If you haven't used one, trust me you can tell the difference. I ended up getting a high end Tecra M7 (refurbished for about £800), that has pretty good video, 1440x900 display and a 1.66 core 2 duo. If you really want the 64 bits though..

              R Offline
              R Offline
              Rajesh R Subramanian
              wrote on last edited by
              #35

              I was not looking for a 'real' tablet. The device has tablet capabilities too and that makes me glad. :) I will be happy if it could perform as a 'real' notebook.


              Nobody can give you wiser advice than yourself. - Cicero

              1 Reply Last reply
              0
              • D Dario Solera

                brahmma wrote:

                How?

                It's just that .NET compiles to IL (Intermediate Language) which is JIT-compiled to native code on the target machine running the proper version of the .NET runtime. This way you don't have to take care of the target operating system, you just write your application. The nice thing of this structure is that (theoretically), your application runs as fast as possible on the target hardware (and OS), regardless of the configuration of the development machine.

                If you truly believe you need to pick a mobile phone that "says something" about your personality, don't bother. You don't have a personality. A mental illness, maybe - but not a personality. - Charlie Brooker My Blog - My Photos - ScrewTurn Wiki

                R Offline
                R Offline
                Rajesh R Subramanian
                wrote on last edited by
                #36

                I've done reading on the IL and JIT compilation, but I never knew it takes care of 32bit and 64 bit OS too. :omg:


                Nobody can give you wiser advice than yourself. - Cicero

                D 1 Reply Last reply
                0
                • R Rajesh R Subramanian

                  I've done reading on the IL and JIT compilation, but I never knew it takes care of 32bit and 64 bit OS too. :omg:


                  Nobody can give you wiser advice than yourself. - Cicero

                  D Offline
                  D Offline
                  Dario Solera
                  wrote on last edited by
                  #37

                  brahmma wrote:

                  I never knew it takes care of 32bit and 64 bit OS too.

                  It's nice, isn't it? :-D

                  If you truly believe you need to pick a mobile phone that "says something" about your personality, don't bother. You don't have a personality. A mental illness, maybe - but not a personality. - Charlie Brooker My Blog - My Photos - ScrewTurn Wiki

                  R 1 Reply Last reply
                  0
                  • R Rajesh R Subramanian

                    I am looking at hp Pavilion tx1016AU[^], which is a 64 bit tablet pc. It looks like a good buy, but I have a few questions. This one being a 64 bit computer, will I be able to write applications for 32 bit computers sitting on it? I guess there has to be a setting in VS wherein I can specify if I need my app to run on 32 or 64 bit. I have never worked with 64 bit computers and so I do not know this for sure. Is there anything else that you think is bad about this notebook? I cannot think outside HP since my company has a tie-up with them. Moreover, can someone tell me if the AMD processor that it has will be good? :~ Is there an HP alternative that you would suggest? My budget is 85000 INR. Thank you very much.


                    Nobody can give you wiser advice than yourself. - Cicero

                    J Offline
                    J Offline
                    Jain Mohit
                    wrote on last edited by
                    #38

                    have you considered HP's dv9330us or dv9339us they come loaded with 2 GB RAM and 160 HDD, NVidia and wot not and still cost less than 1500 USD...

                    R 1 Reply Last reply
                    0
                    • C Christian Graus

                      Mine was/is the most crash prone and poorly put together notebook I have ever owned.

                      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 )

                      D Offline
                      D Offline
                      Duncan Edwards Jones
                      wrote on last edited by
                      #39

                      HP install a bunch of crud software by defaulkt but the hardware istelf isn't so bad. My recommenddation if you do get an HP is spend half a day uninstalling all the "free" programs they give you. That said, my current dev machine is an Asus Aspire. Sparkly fashion statements and labels aside it is a very capable machine at a very competitive price.

                      '--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd

                      R 1 Reply Last reply
                      0
                      • M Mike Dimmick

                        Paul, sorry, you're wrong on this - the AMD/Intel 'x64' processors run 32-bit code natively even on a 64-bit operating system. The problem with that is that there are still relatively few drivers for the 64-bit OS, although all the hardware in the system will have drivers. You may be confused with the older Itanium IA-64 architecture, which does have 32-bit x86 compatibility in hardware, but the implementation was so poor that later versions of the Itanium version of Windows include a software emulator that JIT-compiles to native Itanium code. There are of course other 64-bit processor families such as Sun Sparc, MIPS, Alpha, PowerPC, and you're right that these do not execute x86 code natively and require emulation. However, they don't run Windows natively either.

                        Stability. What an interesting concept. -- Chris Maunder

                        P Offline
                        P Offline
                        Paul Selormey
                        wrote on last edited by
                        #40

                        Thanks for the information. I need not know of the architecture change from the IA-64, and my other experience was with the 64 bit Alpha. Best regards, Paul.

                        Jesus Christ is LOVE! Please tell somebody.

                        1 Reply Last reply
                        0
                        • D Dario Solera

                          x86-64 CPUs are able to run both 32- and 64-bit code natively, without emulation. In fact, unless your applications do many number-crunching, performance is usually the same for both applications.

                          If you truly believe you need to pick a mobile phone that "says something" about your personality, don't bother. You don't have a personality. A mental illness, maybe - but not a personality. - Charlie Brooker My Blog - My Photos - ScrewTurn Wiki

                          P Offline
                          P Offline
                          Paul Selormey
                          wrote on last edited by
                          #41

                          Thanks for the information. I think I am lagging far behind now. Best regards, Paul.

                          Jesus Christ is LOVE! Please tell somebody.

                          1 Reply Last reply
                          0
                          • D Duncan Edwards Jones

                            HP install a bunch of crud software by defaulkt but the hardware istelf isn't so bad. My recommenddation if you do get an HP is spend half a day uninstalling all the "free" programs they give you. That said, my current dev machine is an Asus Aspire. Sparkly fashion statements and labels aside it is a very capable machine at a very competitive price.

                            '--8<------------------------ Ex Datis: Duncan Jones Merrion Computing Ltd

                            R Offline
                            R Offline
                            Rajesh R Subramanian
                            wrote on last edited by
                            #42

                            Duncan Edwards Jones wrote:

                            HP install a bunch of crud software by defaulkt but the hardware istelf isn't so bad. My recommenddation if you do get an HP is spend half a day uninstalling all the "free" programs they give you.

                            I will spare that half a day. I will be sure to kick out the norton antivirus crap out of it and that would be the first thing I will do wit it.


                            Nobody can give you wiser advice than yourself. - Cicero

                            S 1 Reply Last reply
                            0
                            • J Jain Mohit

                              have you considered HP's dv9330us or dv9339us they come loaded with 2 GB RAM and 160 HDD, NVidia and wot not and still cost less than 1500 USD...

                              R Offline
                              R Offline
                              Rajesh R Subramanian
                              wrote on last edited by
                              #43

                              I can buy something, if it is available in India. I don't think the dv9339 is available in India.


                              Nobody can give you wiser advice than yourself. - Cicero

                              J 1 Reply Last reply
                              0
                              • R Rajesh R Subramanian

                                I am looking at hp Pavilion tx1016AU[^], which is a 64 bit tablet pc. It looks like a good buy, but I have a few questions. This one being a 64 bit computer, will I be able to write applications for 32 bit computers sitting on it? I guess there has to be a setting in VS wherein I can specify if I need my app to run on 32 or 64 bit. I have never worked with 64 bit computers and so I do not know this for sure. Is there anything else that you think is bad about this notebook? I cannot think outside HP since my company has a tie-up with them. Moreover, can someone tell me if the AMD processor that it has will be good? :~ Is there an HP alternative that you would suggest? My budget is 85000 INR. Thank you very much.


                                Nobody can give you wiser advice than yourself. - Cicero

                                M Offline
                                M Offline
                                Marc Clifton
                                wrote on last edited by
                                #44

                                I'm not impressed with the shared video memory. Try and find a laptop with dedicated video RAM, IMO. Marc

                                Thyme In The Country
                                Interacx

                                People are just notoriously impossible. --DavidCrow
                                There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                                People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                                R 1 Reply Last reply
                                0
                                • R Rajesh R Subramanian

                                  I can buy something, if it is available in India. I don't think the dv9339 is available in India.


                                  Nobody can give you wiser advice than yourself. - Cicero

                                  J Offline
                                  J Offline
                                  Jain Mohit
                                  wrote on last edited by
                                  #45

                                  well in that case i case across dv92xx serives at some store, priced roughly around 70k INR, but the only bargain was with 1 GB RAM instead of 2GB RAM. the store was probably some reliance degital chain if i correctly remember. also, if you are willign to go teh DELL way you can config a neat machine your self.. i did one for around 60k and was comparable to dv93xx servies...

                                  R 1 Reply Last reply
                                  0
                                  • J Jain Mohit

                                    well in that case i case across dv92xx serives at some store, priced roughly around 70k INR, but the only bargain was with 1 GB RAM instead of 2GB RAM. the store was probably some reliance degital chain if i correctly remember. also, if you are willign to go teh DELL way you can config a neat machine your self.. i did one for around 60k and was comparable to dv93xx servies...

                                    R Offline
                                    R Offline
                                    Rajesh R Subramanian
                                    wrote on last edited by
                                    #46

                                    Jain Mohit wrote:

                                    also, if you are willign to go teh DELL way you can config a neat machine your self.. i did one for around 60k and was comparable to dv93xx servies...

                                    My company has a tie with HP. I can't think of anything else.


                                    Nobody can give you wiser advice than yourself. - Cicero

                                    1 Reply Last reply
                                    0
                                    • M Marc Clifton

                                      I'm not impressed with the shared video memory. Try and find a laptop with dedicated video RAM, IMO. Marc

                                      Thyme In The Country
                                      Interacx

                                      People are just notoriously impossible. --DavidCrow
                                      There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                                      People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                                      R Offline
                                      R Offline
                                      Rajesh R Subramanian
                                      wrote on last edited by
                                      #47

                                      Marc Clifton wrote:

                                      I'm not impressed with the shared video memory. Try and find a laptop with dedicated video RAM, IMO.

                                      Is that a major factor that I need to think about? Now that I've passed on an approval for ordering this notebook, I can't do anything but get this one. I think, I will have to install a separate graphic card which has 512MB of memory in it, if there is a provision in the notebook. :~


                                      Nobody can give you wiser advice than yourself. - Cicero

                                      M D 2 Replies Last reply
                                      0
                                      • R Rajesh R Subramanian

                                        Marc Clifton wrote:

                                        I'm not impressed with the shared video memory. Try and find a laptop with dedicated video RAM, IMO.

                                        Is that a major factor that I need to think about? Now that I've passed on an approval for ordering this notebook, I can't do anything but get this one. I think, I will have to install a separate graphic card which has 512MB of memory in it, if there is a provision in the notebook. :~


                                        Nobody can give you wiser advice than yourself. - Cicero

                                        M Offline
                                        M Offline
                                        Marc Clifton
                                        wrote on last edited by
                                        #48

                                        brahmma wrote:

                                        Is that a major factor that I need to think about?

                                        IMO, if you're doing anything graphic intensive (Vista), it is.

                                        brahmma wrote:

                                        I will have to install a separate graphic card which has 512MB of memory in it, if there is a provision in the notebook.

                                        I doubt you'll have that option! Marc

                                        Thyme In The Country
                                        Interacx

                                        People are just notoriously impossible. --DavidCrow
                                        There's NO excuse for not commenting your code. -- John Simmons / outlaw programmer
                                        People who say that they will refactor their code later to make it "good" don't understand refactoring, nor the art and craft of programming. -- Josh Smith

                                        R L 2 Replies Last reply
                                        0
                                        • R Rajesh R Subramanian

                                          Duncan Edwards Jones wrote:

                                          HP install a bunch of crud software by defaulkt but the hardware istelf isn't so bad. My recommenddation if you do get an HP is spend half a day uninstalling all the "free" programs they give you.

                                          I will spare that half a day. I will be sure to kick out the norton antivirus crap out of it and that would be the first thing I will do wit it.


                                          Nobody can give you wiser advice than yourself. - Cicero

                                          S Offline
                                          S Offline
                                          Sarath C
                                          wrote on last edited by
                                          #49

                                          Which AC Software you prefer?

                                          -Sarath_._ "Great hopes make everything great possible" - Benjamin Franklin

                                          My blog - Sharing My Thoughts, An Article - Understanding Statepattern

                                          R 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