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