View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default "Less than or equal to" symbol in a UserForm

Private Sub UserForm_Initialize()
Label1.Font.Name = "Arial Unicode MS"
Label1.Font.Size = 10
Label1.Caption = "ABC " & ChrW(&H2264) & " CDF"
End Sub

2264 is hex value.

Regards,
Tom Ogilvy


"RockNRoll" wrote in message
...
Dear VBA gurus,

I am creating a userform that allows users to enter in constraints for
linear programming problems.

I want to have the "Less than or equal to" symbol on my form. I do not

just
want to put "<=", I would like the actual symbol in a label. It is

unicode
character 2264.

How do I get that symbol into my userform? Thank you kindly.