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.