
Setting the text property for a textbox with textmode=single and multiline is pretty straight forward by giving TextBox1.Text = "The text we want to set"; However, if we set the Textmode property to Password, then we cannot simply set the text using the TextBox.text. In practical scenarios, we may not want to set the password for obvious reasons that password is one which we retrieve from the user and it shoult not be set. Also, even if we set some password, the user cannot read it as it is just a sequence of dots.
|