[Lq] Trainer Creator

09/18/2015 18:49 Jugram#16
cool release ^^
09/19/2015 00:46 TheMokko#17
Quote:
Originally Posted by Xonivion View Post
[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)
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
09/19/2015 18:18 alexmen10#18
Quote:
Originally Posted by TheMokko View Post
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
Example:

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

[Only registered and activated users can see links. Click Here To Register...]
09/19/2015 18:23 _Trade#19
Gleich ma testen C:
09/19/2015 18:38 Xonivion#20
Quote:
Originally Posted by alexmen10 View Post
Example:





[Only registered and activated users can see links. Click Here To Register...]
or

Code:
If Combobox.text = 1 Then
Textbox1.visible = True
Else
Textbox1.visible = False
end if