PDA

View Full Version : [SOLVED] Eliminating blinking cursor in UserForm Text box



K. Georgiadis
06-21-2005, 05:59 PM
Why property eliminates a blinking cursor in a text box when the UserForm1 is activated with?:


UseForm1.Show

Or should I be using a Label instead of a TextBox?

johnske
06-21-2005, 06:48 PM
Hi,

The blinking cursor is there as an invitation for the user to write something in the text box. If the intent is just to display something you could use a label (you can also use 'properties' to make the label look like a text box if that's what you want)

HTH,
John

K. Georgiadis
06-21-2005, 07:05 PM
Problem solved in the meantime, by using Labels and formatting them with Properties. Thanks!