08-18-2011, 02:56 AM
Hey there i made this video to help anyone that needs it.
It shows you how to set the value of a text box's content.
I hope it helps.
Video Tutorial: Please watch in 720p and fullscreen
Codes:
Button method
CheckBox Method
It shows you how to set the value of a text box's content.
I hope it helps.
Video Tutorial: Please watch in 720p and fullscreen
Codes:
Button method
Code:
TextBox1.Text = "123456789"
Code:
If CheckBox1.Checked = True Then
TextBox1.Text = "Your text"
Else
TextBox1.Text = ""