Posts: 556
Threads: 36
Joined: Jun 2011
Reputation:
14
Forget actually coding at the moment. Just start with experimenting with forms layout and design. Make a form. Put some controls on it. Change the properties. Then, watch some YT tutorials. It's really easy.
Posts: 2,216
Threads: 187
Joined: Jul 2011
Try experimenting what this does:
For your Form1 put in a Textbox and a Button, then double click on the button to open the code. Now put this in between the "Button1_Click" and "End Sub":
Code:
If Textbox1.Text = ("Text Here") Then
MsgBox ("Hello World!")
Else
MsgBox Textbox1.Text
End If
Once you've done that, press F5 and find out what happens when you enter text into the Textbox and click the Button.
VB.NET is actually quite easy, but I prefer VB6 so I'm not sure if that code will work or not, I've only used .NET a few times but that does work on VB6.
Posts: 106
Threads: 15
Joined: Dec 2011
Reputation:
1
I use to practice by making SMS bombers they are fun to make the outcome is even better. You can search the internet for tutorials.
Title
Title
button is I think all you need.