Changing Active X control Label text from 1 to a wingding(A "1" witha circle around it)

R

Richard

This code is what I have so far. I'm using a "2" in this example. I
need the "2" to be a "1" with a circle around it. Which is a wingding2
(106). If I go into the code properties and change the font to
wingdings, it also changes the "1" to a wingding. Is there a way to
set each one. Or another way? Thanks in advance!!!

Private Sub Label1_Click()
If Label1.Caption = "2" Then
Label1.Caption = "1"
Else
If Label1.Caption = "1" Then
Label1.Caption = "2"
End If
End If
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

Top