So I need to Include both the code and the form. As far as writing it I am beyond lost. Cannot seem to get a running program out of my code.
Public Class Form1
Private Sub btnConvert_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles btnConvert.Clic k
Label1.Text = (9 / 5) * CSng(TextBox1.T ext) + 32
End Sub
Private Sub TextBox1_TextCh anged(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles TextBox1.TextCh anged
End Sub
End Class
btw much respect tot hose who do this for a living.
Public Class Form1
Private Sub btnConvert_Clic k(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles btnConvert.Clic k
Label1.Text = (9 / 5) * CSng(TextBox1.T ext) + 32
End Sub
Private Sub TextBox1_TextCh anged(ByVal sender As System.Object, ByVal e As System.EventArg s) Handles TextBox1.TextCh anged
End Sub
End Class
btw much respect tot hose who do this for a living.
Comment