Results 1 to 4 of 4

Thread: Looking for a comprehensive rich text box example

  1. #1

    Thread Starter
    PowerPoster BruceG's Avatar
    Join Date
    May 2000
    Location
    New Jersey (USA)
    Posts
    2,657
    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.

  2. #2
    Guest
    Code:
    Private Sub Command1_Click()
    
     rtb.BulletIndent = 5
     rtb.SelBullet = Not rtb.SelBullet
    
    End Sub

  3. #3

    Thread Starter
    PowerPoster BruceG's Avatar
    Join Date
    May 2000
    Location
    New Jersey (USA)
    Posts
    2,657
    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.

  4. #4
    Guest
    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
  •  



Click Here to Expand Forum to Full Width