Ok, I mostly used Python to learn programming.. I am now trying to learn VB.. This is my problem..It seems that tutorial after tutorial I read has no examples as I am trying to do..
1. Dim x As Integer = 100
# this should make x = 100 right?
2.Private Sub Label4_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles Label4.TextChanged
# this should handle the lable4 to be ready to display something.
3. Label4.Text = x
# this should make x show up in label4 right? But it dose not..As I said im used to python and maybe I am still thinking that way..
Basicly I want to make x a number and make it show up and and be able to change if I so to choose to make it do so, but mostly I want it to show up in label4..