T
tshad
I am trying to display 10 bullets in my textbox similar to the way Password
mode does it.
Is there a way to do this?
Thanks,
Tom
mode does it.
Is there a way to do this?
Thanks,
Tom
I don't want to set it to Password mode. I just want to put the bullets inMark Rae said:Set it to Password mode.
Set it to Password mode.
I don't want to set it to Password mode. I just want to put the bullets in
the field. At the moment, I am using asterisks and would rather use the
bullets that the password mode uses.
Thanks,
Tom
message"tshad"
Set it to Password mode.
I don't want to set it to Password mode. I just want to put the bullets in
the field. At the moment, I am using asterisks and would rather use the
bullets that the password mode uses.
Thanks,
Tom
TextBox1.Text = String.Empty.PadLeft(10, '\u25cf');
That works pretty well. Looks almost like a bullet (black circle) but a
little off.
How would it test this? ie:
if (TextBox.Text == "?")
then do something
Thanks,
Tom
The difference is that the client wants the user to see bullets in the fieldMark Rae said:What's the difference...?