K
kirkm
Is there any way, in a text box, to make the Cursor white so it's
invisible?
Thanks - Kirk
invisible?
Thanks - Kirk
Why would you want to do that?
A textbox is a control where the user can type
something. You shouls use a lable instead, and make it's background white or
whichever color you like.
Kirk,
As long as the user does not need to interact with the text, you can
.Enabled=false for the textbox.
You will lose the scroll bars though.
However, Tamar suggestion of a label may work better.
You can set the label's AutoSize=True, .Width to something suitable,
.MultiLine=true.
No scroll bars, but you can't have everything <g>.