Textbox and Bullets

B

Benz

Using a userform - Is there a line of code that will insert " * " at the
insert point of a textbox or where the user clicks and then runs the macro?
or possibly ever time the user clicks return in a multiline textbox for the
macro to auto insert " * " ?

Any help is appreciated.

Thank you.

Ben Z.
 
B

Bear

Benz:

In your form, you can write code to initialize the content to have a
starting asterisk. This is the UserForm Initialize procedure.

You can also add code to the txtName (whatever label you use) Change
procedure to determine whether or not the user has pressed Enter, and append
an asterisk to the value of the textbox.

Bear
 
Top