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 cowski on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Diff fonts

Status
Not open for further replies.

Rednyx

Civil/Environmental
Joined
Feb 22, 2001
Messages
42
Location
JP

I want to use two DIFFERENT type of formats in one button/label/text box . Just like if i have to denote sigma(Greek) x(Arial) in one button what should i do?
 
I don't think that you can use multiple fonts on the same item. If you need to insert special characters that are in the ASCII character set, define the captions in the Form_Load event.
Code:
Private Sub frmMain_Load()
    Label1.Caption = "Sigma (" & Chr(228) & "):"
End Sub

Hope this helps! DimensionalSolutions@Core.com
While I welcome e-mail messages, please post all thread activity in these forums for the benefit of all members.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top