Support Forums

Full Version: How to set a textbox's value [VB]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
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
Code:
TextBox1.Text = "123456789"
CheckBox Method
Code:
If CheckBox1.Checked = True Then
            TextBox1.Text = "Your text"
        Else
            TextBox1.Text = ""
Victoire
Well since I am a beginner at coding thanks for posting this tutorial.
There's another 100+ ways though, but decent for beginners
(08-18-2011, 05:19 AM)Ace Wrote: [ -> ]There's another 100+ ways though, but decent for beginners
I know there are other ways, but i just hoped to help someone.

(08-18-2011, 04:30 AM)Faceless Void Wrote: [ -> ]Well since I am a beginner at coding thanks for posting this tutorial.
I hope it helps you sometime, you're welcome.



Very easy, and simple tutorial, but still very usefull for new coders Smile
thanks, im currently learning, will bookmark it for reference Smile
Thanks for this tutorial you are the man.
Suppose this is a good starting point for those who have never coded anything before.
Nice share.
You can edit the value in the properties tab, but this will be helpful for beginners. Good Quality on the video.
Thanks for the tutorial, new beginners will find this useful and resourceful.
Pages: 1 2