yves_michel
New Member
- Joined
- Jun 13, 2011
- Messages
- 3
Hello,
I have created a array of 10 and 11 textbox in each text box I am trying to pass the value of the textbox into a segment of my array. But it does not seem to work the values in the array remain 0 even though I entered a decimal value in the textbox, Here a fragment of the program:
Declaration:
Dim parameters(10) As Long
In one of the textbox:
Public Sub TextBox4_Change()
parameters(3) = Val(TextBox4.Text)
End Sub
Many thanks
I have created a array of 10 and 11 textbox in each text box I am trying to pass the value of the textbox into a segment of my array. But it does not seem to work the values in the array remain 0 even though I entered a decimal value in the textbox, Here a fragment of the program:
Declaration:
Dim parameters(10) As Long
In one of the textbox:
Public Sub TextBox4_Change()
parameters(3) = Val(TextBox4.Text)
End Sub
Many thanks