Here's a brief guide with an example (Royal said this would be helpful, so I'm posting it) You'll be making a program using a couple basic If statements to determine if Goku's power level is, indeed, over 9000. Yes, I know - a shocking meme - but it was all I could think of as an example Instructions: 1. Open up VB.NET, and create a new project. 2. In design view, create two (2) buttons, and a text box. Label them as follows: TextBox1: - Name: txtValue - Location: 13,12 - Size: 146,20 Button1: - Name: btnCheckNumbers - Location: 12,38 - Size: 147,23 Button2: - Name: btnExit - Location: 59,81 - Size: 100,29 3. Double click on btnCheckNumbers and paste this coding: Code (Text): Private Sub btnCheckNumbers_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCheckNumbers.Click 'Declare variable Dim intNumber As Integer Try 'Get the number from the text box intNumber = txtValue.Text Catch End Try 'Is intNumber less than or equal to 9000? If intNumber <= 9000 Then MessageBox.Show("LESS THAN OR EQUAL TO 9000!? Yes!", "OVER 9000?! (If Demo)") Else MessageBox.Show("LESS THAN OR EQUAL TO 9000!? No!", "OVER 9000?! (If Demo)") End If 'Is intNumber greater than 9000? If intNumber > 9000 Then MessageBox.Show("OVER 9000!? SRS??", "OVER 9000?! (If Demo)") Else MessageBox.Show("OVER 9000!? No!", "OVER 9000?! (If Demo)") End If 'Is intNumber greater than or equal to 9000? If intNumber >= 9000 Then MessageBox.Show("OVER OR EQUAL TO 9000!? Yes!", "OVER 9000?! (If Demo)") Else MessageBox.Show("OVER OR EQUAL TO 9000!? No!", "OVER 9000?! (If Demo)") End If End Sub This will declare the variable and compare the value in txtValue.Text with the criteria (whether or not it is over 9000!) and return results accordingly. The MessageBox.Show format, if you can't already tell from the coding follows this basic format: Code (Text): MessageBox.Show("What you want to say in the message box", "What you want the title of the message box to be") and the If statement, again if you couldn't tell, follows this basic format: Code (Text): If [variable] <=> [constant] Then [Action if true] Else [Action if not true] End If 4. Double click on btnExit and paste this coding: Code (Text): Private Sub btnExit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExit.Click Me.Close() End Sub End Class 5. Have a test of the program you just made. Enter some numbers (eg. 9000, 8999, 9001, etc) and watch the If statement at work. That's all there is to basic If statements in VB.NET. More advanced If statements only really build on this, and use more advanced variables. Hoped this helped