A Tick in Snapshot

G

Guest

I have copied a "Tick" symbol from Word in Access Report and export the
report into snapshot format. The "Tick" has become a question mark in
snapshot format.
Is there any other way to add a "Tick" in access report and report it into
snapshot format?
 
G

Guest

What if you were to bring it in from Character Map? (Assuming it is
available in Character Map...)
 
G

Guest

I have tired it as well but it doesn't work

Sharkbyte said:
What if you were to bring it in from Character Map? (Assuming it is
available in Character Map...)
 
B

Brendan Reynolds

Depends on the font you use. There's a tick character in the WingDings font.
Here's an example that displays a tick using a label control ...

Private Sub Command2_Click()

Me.Label1.FontName = "WingDings"
Me.Label1.FontSize = 42
Me.Label1.Caption = Chr$(&HFC)

End Sub
 

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

Similar Threads


Top