Noob to vb.net,need some guidance and tips for begining - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19) +---- Thread: Noob to vb.net,need some guidance and tips for begining (/showthread.php?tid=7329) |
Noob to vb.net,need some guidance and tips for begining - mandi - 05-24-2010 Hi guys, this is just another noob asking advice regarding where to begin ? I am much intrested learning vb.net programming and after learning some programming I am intrested in making my own programs,but here are some if my worries 1)ok I decided where to start? 2)with in how many days can I able to cover the basics? 3)i know that making programs in vb.net requires .net framework on the pc which we need to run,but I don't like this,is it possible to convert the code from vb.net to other languages and build a application ,so that I can able to run with out .net support 4)can you guys recommend me some good e-books which contains step by steo instruction regarding learning the basic of vb.net,+ recommend me some sites where I can get some open source codes for vb.net applications and some videos(if any ) regarding learning vb.net I am here to ask suggestions and guidance from the programmers here,if I am wrong just correct me and guide me in a proper way for learning,donot flame. hope I will get some guidance and tips from the programmers here.. RE: Noob to vb.net,need some guidance and tips for begining - Fragma - 05-25-2010 Read over peoples source codes.. try to understand what is going on.. Without ripping peoples source codes, try to create your own simple program to start with. Refer to other sources if you get stuck or use google. Start by experimenting with the "IF" statement. I'll try to explain it a bit.. If If something happens then as a result of that something else happens.. Else If something doesn't happen then something else happens instead.. Example Code: If Textbox1.text = "Hello" then This is a very basic example. Obviously to put it to use you would have to put it under a Button_Click sub. I learned the basics within 2 weeks of coding so it is fairly easy to pick up I think. Just read online tutorials, guides & e-books. Practice practice practice. RE: Noob to vb.net,need some guidance and tips for begining - Matt™ - 05-26-2010 If you need any help just give me a PM I would be sure to help you. RE: Noob to vb.net,need some guidance and tips for begining - Mudkipzz - 05-26-2010 Matt ish good with stuff. RE: Noob to vb.net,need some guidance and tips for begining - Toχic - 06-01-2010 You can make a login box to another form. Steps 1. Make a second form. 2. Go back to form1.vb. 3. Add 2 buttons and 2 textbox's. 4. Name 1 button Login and the other Cancel Or Exit. 5. Double click Cancel Or Exit and type Code: end Code: if textbox1.text = "Username" + textbox2.text = "Password" then 7.Your done ! RE: Noob to vb.net,need some guidance and tips for begining - mmki - 06-04-2010 Add my msn and ill mentor your say thou your first few weeks of learning if you want My msn is backflip_boy@iprimus.com.au I wont be on till tommorw thou soz as im about to go to bed Should take 2 weeks or so before you start making cool stuff RE: Noob to vb.net,need some guidance and tips for begining - robbiecee2 - 06-07-2010 I highly recommend these videos on HF: http://www.hackforums.net/showthread.php?tid=298319&page=1 RE: Noob to vb.net,need some guidance and tips for begining - MySocksAreWet - 06-08-2010 I learned from being a leecher. As many source codes you can get your hands on, study them like a bitch. Also, books from your local library are great resources. |