I'm trying to use some special characters taken from the Wingding 2 font set. According to the Windows layout for that font set, the characters I'm wanting to use are Unicode code 0x61 and 0x61. The compiler does not accept what I've coded. How does one get such characters in report design mode?
Code:
Private Sub Report_Open(Cancel As Integer)
Dim lblLeft As String
Dim lblRight As String
lblLeft = ChrW(0x61) & ChrW(0x61) & ChrW(0x61) & ChrW(0x61) & ChrW(0x61) & ChrW(0x61) & ChrW(0x61)
lblRight = ChrW(0x62) & ChrW(0x62) & ChrW(0x62) & ChrW(0x62) & ChrW(0x62) & ChrW(0x62) & ChrW(0x62)
Me.lblBreakfast = lblLeft & " BREAKFAST " & lblRight
End Sub