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. New to writing code...brain is melting......

New to writing code...brain is melting......

Scheduled Pinned Locked Moved The Lounge
visual-studiocsharphardwarebusiness
55 Posts 27 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.
  • I ITWino

    Hello all.... Great web site. Love the info and suggestions I can get here. So, I have been doing IT work for over 25 years (servers, networks, hardware, etc...) and never delved into the development field. I now have the opportunity to learn writing and modifying code, but I am having a hard time making this logic click. I have several beginner books on Visual Studio (2005,2010,2012)and have done the training classes offered by a local business. I am focusing on Visual Basic as my language of choice because the company I work for uses this only. Any suggestions on how I can make all this info click? I understand the concepts, but just could not write the code behind a app i lay out in VS Designer to save my life. EDIT: Thanks all for the great advice. I sort of suspected I was trying to bite off more than I could chew. Going to go back simple and work my way up.

    R Offline
    R Offline
    RafagaX
    wrote on last edited by
    #46

    I dislike the Visual part of Visual Studio, because it hides too much complexy that a novice programmer need to know to fully appreciate the Visual benefits, having said that, VB is a simple language that is as close as possible to speaking to the computer and telling it what to do, other language of that kind is Pascal (The Delphi variants are my favorites), so you may want to take a look at it if you have time. I recommend you to start with simple console apps, then start building simple Winforms apps from scratch (without the visual editor), and then go ahead using all the tools that Visual Studio offers you. Also, writing pseudocode in a piede of paper may help you to organize your ideas and get the logic you need to program efficiently.

    CEO at: - Rafaga Systems - Para Facturas - Modern Components for the moment...

    1 Reply Last reply
    0
    • A Al Chak

      :) What's about Object oriented Assembler?

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #47

      True. I used that years ago. It was based on MASM, if I remember correctly.

      A 1 Reply Last reply
      0
      • I ITWino

        Hello all.... Great web site. Love the info and suggestions I can get here. So, I have been doing IT work for over 25 years (servers, networks, hardware, etc...) and never delved into the development field. I now have the opportunity to learn writing and modifying code, but I am having a hard time making this logic click. I have several beginner books on Visual Studio (2005,2010,2012)and have done the training classes offered by a local business. I am focusing on Visual Basic as my language of choice because the company I work for uses this only. Any suggestions on how I can make all this info click? I understand the concepts, but just could not write the code behind a app i lay out in VS Designer to save my life. EDIT: Thanks all for the great advice. I sort of suspected I was trying to bite off more than I could chew. Going to go back simple and work my way up.

        C Offline
        C Offline
        charliebear24
        wrote on last edited by
        #48

        I feel the pain! I was in the same position in 2001 when switching to VS C#. I use google to find examples and help (forget about MS help system). For example: a search on google for ListCollectionView will show a good list with examples from all corners of the world. If MS shows up first, I check it out but scroll down through the members list to the examples. Mentally, in 2001, I said to myself "this stuff looks like Greek to me but a year from now I'll understand it." It worked. Now it's all about design, coding is more about the never ending challenge to keep things "clean" and "tidy". I also purchased at least $1,000 in books over the first two years. If you want a really good beginners book on WPF and MVC try "Teach Yourself WPF in 24 Hours" by Eisenberg and Bennage. It will point you in the right direction and get those "little grey cells" electrified! Buy older books from Amazon "used" for a fraction of retail. Good luck and Cheers!

        1 Reply Last reply
        0
        • H H Brydon

          ITWino wrote:

          I have read that once you have a language down, it makes learning other languages easier...

          This is indeed true to a certain extent. I know about 100 computer languages, and at least in the early days, it was all really just syntax. I was usually able to learn a new language by reading the language reference. There were several exceptions to this (assembly, APL, C). Nowadays that is not quite so true. What is more important to grasp is the concepts and programming paradigms involved: [assembly], object oriented programming, functional programming, web, templates, lambdas, ... Next to that is frameworks and environment: MFC, WTL, CLR, unix/linux, ... Finally: Concurrency Each of these is a separate skill, and shifting from one language to another is a much smaller step if you understand the paradigms involved.

          -- Harvey

          C Offline
          C Offline
          Cj Welborn
          wrote on last edited by
          #49

          H.Brydon wrote:

          at least in the early days, it was all really just syntax.

          I am experiencing something like this right now. I know about 3 or more languages (depends on what you consider 'knowing' a language). I was given a test in a language I had never attempted to learn before. I had to fix 3 bugs. The first was just strings that are really dates being sorted alphabetically like "1-Feb-2012" coming before "1-Jan-2012". I had to make it sort chronologically. I got the syntax down, found out how the date types work, and I fixed it. The other 2 bugs had nothing to do with the main code language they were using. The template system they use needed to be modified for the second bug. The third bug involved changing an oracle database table to include two more columns, and having their build scripts and code generation tools pick up these two extra values. I fixed 2 out of 3. I felt awesome when I made that brand new language do what I wanted, and then stupid for not knowing nearly enough about the other components that drive their application. I am on a mission now to learn these things, and what you just said really hit home.

          1 Reply Last reply
          0
          • I ITWino

            Hello all.... Great web site. Love the info and suggestions I can get here. So, I have been doing IT work for over 25 years (servers, networks, hardware, etc...) and never delved into the development field. I now have the opportunity to learn writing and modifying code, but I am having a hard time making this logic click. I have several beginner books on Visual Studio (2005,2010,2012)and have done the training classes offered by a local business. I am focusing on Visual Basic as my language of choice because the company I work for uses this only. Any suggestions on how I can make all this info click? I understand the concepts, but just could not write the code behind a app i lay out in VS Designer to save my life. EDIT: Thanks all for the great advice. I sort of suspected I was trying to bite off more than I could chew. Going to go back simple and work my way up.

            K Offline
            K Offline
            KP Lee
            wrote on last edited by
            #50

            Keep at it. I personally prefer C#. There's only one thing I really dislike about vb.net and that's no built in intellisense. (It has no problem using it, but no way I found to create it and the documentation expressly says it isn't supported, so I doubt I missed the nook where it works. Anyone who would call you a n00b for using vb.net is a n00b in programming. Be sure you understand the underlying OO concepts that built C++ to begin with.

            1 Reply Last reply
            0
            • L Lost User

              True. I used that years ago. It was based on MASM, if I remember correctly.

              A Offline
              A Offline
              Al Chak
              wrote on last edited by
              #51

              MASM means Macro Assembler, doesn't it? It was good choise for asembler coding 40 years ago. But now :confused:

              1 Reply Last reply
              0
              • B BillWoodruff

                etkins wrote:

                you can't.
                it's a personality thing.
                either your personality maps to the job description or it doesn't.

                Utter nonsense ! yrs, Bill

                This thing we tell of can never be found by seeking, yet only seekers find it. Abu Yazid Al-Bistami (Persian, Sufi, 804-872)

                E Offline
                E Offline
                etkid84
                wrote on last edited by
                #52

                bill, read this, call them up, ask them some questions: http://www.bizet.com/index.php. I took the AVA.

                David

                1 Reply Last reply
                0
                • M Mark_Wallace

                  I've known quality developers with all manner of personalities.

                  I wanna be a eunuchs developer! Pass me a bread knife!

                  E Offline
                  E Offline
                  etkid84
                  wrote on last edited by
                  #53

                  it's not the "variety" of personalities -- it is likely they have two strong traits in common: analytical and problem solving oriented, i.e. like to fix things, find out how things work, seek to understand the "how" and the "why". Zen in on that for just a second.

                  David

                  M 1 Reply Last reply
                  0
                  • E etkid84

                    it's not the "variety" of personalities -- it is likely they have two strong traits in common: analytical and problem solving oriented, i.e. like to fix things, find out how things work, seek to understand the "how" and the "why". Zen in on that for just a second.

                    David

                    M Offline
                    M Offline
                    Mark_Wallace
                    wrote on last edited by
                    #54

                    What people do in the privacy of their brain is very often not reflected in their outward appearance and behaviour. You cannot say that someone is not a "programming type" unless you have complete, intimate details of how and what they think. I would say that another major requirement for a good programmer is creativity, and you never know how a creative person might like to make himself appear to others.

                    I wanna be a eunuchs developer! Pass me a bread knife!

                    1 Reply Last reply
                    0
                    • I ITWino

                      Hello all.... Great web site. Love the info and suggestions I can get here. So, I have been doing IT work for over 25 years (servers, networks, hardware, etc...) and never delved into the development field. I now have the opportunity to learn writing and modifying code, but I am having a hard time making this logic click. I have several beginner books on Visual Studio (2005,2010,2012)and have done the training classes offered by a local business. I am focusing on Visual Basic as my language of choice because the company I work for uses this only. Any suggestions on how I can make all this info click? I understand the concepts, but just could not write the code behind a app i lay out in VS Designer to save my life. EDIT: Thanks all for the great advice. I sort of suspected I was trying to bite off more than I could chew. Going to go back simple and work my way up.

                      D Offline
                      D Offline
                      DarthDana
                      wrote on last edited by
                      #55

                      I'd start with http://www.w3schools.com and go from there.

                      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