Salve a tutti piccolo problema per me problemone.
con excel se voglio contare i valori dalla cella 1A alla cella 50A e visualizzare il dato nella cella 51A come formula nella cella 51A scrivo:
=conta valori (A1:A50)
inserendo dei numeri casuali nelle varie caselle ,alla casella 51A conta quante caselle occupo.
con vb.net nel form metto 3 textbox e nella textbox4 voglio visualizzare il numero contato tipo excel.
il code scritto purtroppo non funziona ,sapete dirmi dove sbaglio . grazie
Class Form1
Dim TextBoxes(3) As TextBox
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
For i As Integer = 0 To 3
TextBoxes(i) = New TextBox
TextBoxes(i).Name = String.Format("TextBox{0}", i)
Next
End Sub
Private Sub Somma()
Dim sum As Long
For i As Integer = 0 To 3
sum = sum + CLng(TextBoxes(i).Text)
Next
TextBox4.Text = sum.ToString()
End Sub
Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged
Dim sum As Long
TextBox4.Text = sum.ToString()
End Sub
Private Sub TextBox2_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox2.TextChanged
Dim sum As Long
TextBox4.Text = sum.ToString()
End Sub
Private Sub TextBox3_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox3.TextChanged
Dim sum As Long
TextBox4.Text = sum.ToString()
End Sub
End Class