A Tick in Snapshot

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
What if you were to bring it in from Character Map? (Assuming it is
available in Character Map...)
 
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

Tick in snapshot 2
Snapshot viewer 3
Export separate snapshots 1
Problem exporting report as snapshot 2
Snapshot Viewer 2
Creating snapshots in DAP 1
Can I email a report with link criteria? 2
Snapshot - landscape? 5

Back
Top