cool release ^^
Ik Ik. It's a little bit complex but it also work my way, maybe I'll write one to but I won't release itQuote:
[Only registered and activated users can see links. Click Here To Register...]
i need more textboxes bec im using like this
'Form1 Load
'Dim func As String
'func = fileReader.ReadLine()
'TextBox1.Text = func
'Form 2 v
'checkbox checked
'memwrite(form1.textbox1.text, bla bla)
Example:Quote:
Ik Ik. It's a little bit complex but it also work my way, maybe I'll write one to but I won't release it
Quote:
Dim textBoxes As New List(Of TextBox)() From {TextBox1, TextBox2}
'TextBoxes(0) -> TextBox1
'TextBoxes(1) -> TextBox2
'textBox(i) -> All
For i As Integer = 0 To textBoxes.Count - 1
MessageBox.Show(textBoxes(i).Text, "Message", MessageBoxButtons.OK, MessageBoxIcon.Information)
Next
orQuote:
If Combobox.text = 1 Then Textbox1.visible = True Else Textbox1.visible = False end if