TextBox1.PasswordChar()
Property access must assign to the property or use its value








textbox1.passwordchar = true
TextBox1.Passwordchar = "*"
Public Class Form1
Public Property PasswordChar() As Char
Get
End Get
Set(ByVal value As Char)
End Set
End Property
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.PasswordChar = ""
End Sub
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
TextBox1.PasswordChar = ""
End Sub
End Class
TextBox1.PasswordChar = ""
TextBox1.PasswordChar = ""
Public Property PasswordChar() As Char
Get
End Get
Set(ByVal value As Char)
End Set
End Property