how put predifined text in text box
how do i put text in a text box that shows up on start i used the 开发者_开发问答following but it dont work?
TextBox1.Text = "enter your name here!"
the text box remains empty?
ta-
You must do the code on form_load. Set the text property to "enter your name here" as you already have.
TextBox1.Text = "enter your name here!"
try TextBox1.Value = "enter your name here!"
精彩评论