Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Noob to vb.net,need some guidance and tips for begining
#2
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
   msgbox("Hi!")
Else
   msgbox("Please say hello :(")
End If

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.
Reply


Messages In This Thread
RE: Noob to vb.net,need some guidance and tips for begining - by Fragma - 05-25-2010, 06:22 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [VB.Net] Simple captcha class [Commented][Noob/Friendly] The-One 18 9,633 09-08-2012, 04:20 PM
Last Post: spesificrelax
  {Noob Proof} Get text from a Website to a Textbox {TuT} iCrack 3 1,519 06-20-2011, 09:07 PM
Last Post: LulzBoat
  Noob's doubt about persistant process[Help] mandi 6 1,146 08-11-2010, 12:09 AM
Last Post: Daniel Faraday

Forum Jump:


Users browsing this thread: 1 Guest(s)