Premetto che sono alle prime armi con vb e sto costrundo un programma semplicissimo che mi divida soltanto due numeri...
Problema : dice che non riesce a fare il cast della lunghezza per via di qualche errore:
ublic Class calcolatore
'codice design
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
Private Sub Label2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label2.Click
End Sub
Private Sub calcola_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles calcola.Click
Dim primoNumero, secondoNumero
'divisione
primoNumero = ("lunghezza")
secondoNumero = ("tempo")
velocità = (primoNumero / secondoNumero)
End Sub
'chiusura si/no
Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
Dim _msgresult As DialogResult
_msgresult = MessageBox.Show("Do You Want To Close This Form ?", "Close Form", MessageBoxButtons.YesNo, MessageBoxIcon.Information)
If _msgresult = Windows.Forms.DialogResult.Yes Then
e.Cancel = False
Else
e.Cancel = True
End If
End Sub
Private Sub lunghezza_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lunghezza.TextChanged
End Sub
End Class
grazie in anticipo..