|
-
Aug 14th, 2000, 02:30 PM
#1
Thread Starter
PowerPoster
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.
"It's cold gin time again ..."
Check out my website here.
-
Aug 14th, 2000, 02:43 PM
#2
Code:
Private Sub Command1_Click()
rtb.BulletIndent = 5
rtb.SelBullet = Not rtb.SelBullet
End Sub
-
Aug 14th, 2000, 02:52 PM
#3
Thread Starter
PowerPoster
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.
"It's cold gin time again ..."
Check out my website here.
-
Aug 14th, 2000, 03:29 PM
#4
Code:
rtb.SelHangingIndent = 10
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|