Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Special chars in combo box

Status
Not open for further replies.

ValleyJim

Technical User
Dec 27, 2009
1
US
I am trying to create a small app for use as an Ohm's Law calculator.

I have pretty much everything done except I would like to use an omega symbol in the combo box.

I have a combo box for resistance, ohms, and the symbol for the ohm is Ω and I want to be able to use this.

Anyone have any idea on how to accomplish this?

Thanks for reading!
Jim
 
Change the font to Arial Unicode, then do

Code:
TextBox1.Text = ChrW(937) & "abcde"
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top