Getting a check (tick) into a label

G

Gem_man

Anyone got any ideas on how I get the caption on a label to represent a check
mark (tick)?

The Chr($) dont show one in the character set.

Many thanks
gem_man
 
J

Jezebel

chr$() will work with the entire Unicode set, which includes ticks. But
easier to look up the code using Insert > Symbol.
 
G

Gem_man

Hi Jezabel,

I kinda thought that which propted me to record ths macro to see if I could
figure it that way.

Selection.InsertSymbol Font:="Times New Roman", CharacterNumber:=8730, _
Unicode:=True

Trouble is, I cannot figure out how to achieve this with code Label1.Caption
= ????????

Can asign a variable to this CharacterNumber and then use that?
Not had much success so far trying various ways.

Any pointers would be kind.

Regards
gem_man
 
J

Jezebel

Label1.Caption = ChrW(8730)


Gem_man said:
Hi Jezabel,

I kinda thought that which propted me to record ths macro to see if I
could
figure it that way.

Selection.InsertSymbol Font:="Times New Roman", CharacterNumber:=8730, _
Unicode:=True

Trouble is, I cannot figure out how to achieve this with code
Label1.Caption
= ????????

Can asign a variable to this CharacterNumber and then use that?
Not had much success so far trying various ways.

Any pointers would be kind.

Regards
gem_man
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top