January 18th, 2000, 07:31 PM
how do I change the fontsize of a rich text box? or make the font of it bold, italic, underline, and/or strikethru?
|
Click to See Complete Forum and Search --> : rich text boxes January 18th, 2000, 07:31 PM how do I change the fontsize of a rich text box? or make the font of it bold, italic, underline, and/or strikethru? valkyrie January 18th, 2000, 07:42 PM Hello... This is a bit of coding taken from my project... RichTextBox1.Font.Size = 12 RichTextBox1.Font.Bold = true RichTextBox1.Font.Italic = true RichTextBox1.Font.Strikethrough = true RichTextBox1.Font.Underline = true Hope this helps ____________________________________ The VB Bugs in my Life... codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |