hi,

i am trying to make a program to do equations... and i cannot get any command line to work i am used with vb6 command line and i guess the .net ones are different...

i have this code so far:

Public Class Form1

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim txttest As Integer
txttest = 1234
End Sub
End Class

i made it to test my command so when i press on the button, the numbers 1234 are supposed to show on the textfield (txttest)... but nothing happens when i press on the button... can someone help me please?