-
Can anyone point me to a thread or site that showcases the various things that can be done with the rich text box control? I know how to do the basic stuff like setting the font, color of text, bold, underline, etc. I'm looking for examples on how to use the indenting and bulleting and things like this. Thanks in advance.
-
Code:
Private Sub Command1_Click()
rtb.BulletIndent = 5
rtb.SelBullet = Not rtb.SelBullet
End Sub
-
Thanks, Dennis. I see that doing bullets is similar to the other properties. Do you know how to do hanging indents? What I'm really looking for is to allow the user to make a numbered list, similar to MS-Word. I didn't see anything like that in the drop-down property list for the RTB, but I did see some stuff on hanging indents (which would in effect let the user create their own numbered list); I'd be looking for some code on this.
-
Code:
rtb.SelHangingIndent = 10