How would i make Text Italic in VB 6.0
Im assuming would involve a RichTextBox
Please help
Printable View
How would i make Text Italic in VB 6.0
Im assuming would involve a RichTextBox
Please help
I always used code like
VB Code:
textbox.Font.Italic or Textbox.font.Bold
Something to that effect.
If you need to use RichTextBox then you may set Italic font for selected text but other than that you can set font for pretty much every control that suports that property:
VB Code:
Private Sub Command1_Click() Label1.FontItalic = True Text1.FontItalic = True RichTextBox1.SelItalic = True End Sub