Thread Rating:
  • 1 Vote(s) - 5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Noob to vb.net,need some guidance and tips for begining
#1
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..
Reply
#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
#3
If you need any help just give me a PM I would be sure to help you.
Reply
#4
Matt ish good with stuff.
Reply
#5
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
6. Now double click Login and type
Code:
if textbox1.text = "Username" + textbox2.text = "Password" then
form2.show
me.hide
else
msgbox("Username or Password is incorrect or missing",msgbox.style.critical,"Error")

7.Your done !
Reply
#6
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
[Image: blanktemplate.png]
Reply
#7
I highly recommend these videos on HF:
http://www.hackforums.net/showthread.php...319&page=1
Reply
#8
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.
Reply


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

Forum Jump:


Users browsing this thread: 1 Guest(s)