Support Forums
How to set a textbox's value [VB] - Printable Version

+- Support Forums (https://www.supportforums.net)
+-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87)
+--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18)
+---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19)
+---- Thread: How to set a textbox's value [VB] (/showthread.php?tid=21508)

Pages: 1 2


How to set a textbox's value [VB] - James Ford - 08-18-2011

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


RE: How to set a textbox's value [VB] - Braco22 - 08-18-2011

Well since I am a beginner at coding thanks for posting this tutorial.


RE: How to set a textbox's value [VB] - AceInfinity - 08-18-2011

There's another 100+ ways though, but decent for beginners


RE: How to set a textbox's value [VB] - James Ford - 08-18-2011

(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.






RE: How to set a textbox's value [VB] - Scream - 08-19-2011

Very easy, and simple tutorial, but still very usefull for new coders Smile


RE: How to set a textbox's value [VB] - ✖ ✖ ✖ - 08-19-2011

thanks, im currently learning, will bookmark it for reference Smile


RE: How to set a textbox's value [VB] - LiveModz - 08-25-2011

Thanks for this tutorial you are the man.


RE: How to set a textbox's value [VB] - Fragma - 08-26-2011

Suppose this is a good starting point for those who have never coded anything before.
Nice share.


RE: How to set a textbox's value [VB] - Coding Support - 08-28-2011

You can edit the value in the properties tab, but this will be helpful for beginners. Good Quality on the video.


RE: How to set a textbox's value [VB] - alabama - 08-30-2011

Thanks for the tutorial, new beginners will find this useful and resourceful.