Results 1 to 8 of 8

Thread: Text1 or RichTextBox1?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2000
    Posts
    323
    I just want to make a simple HTML editor using a few features noone else uses to simplify it for me. I have been told to use a RichTextBox instead of a Text Box because if I wanted to set a color to specific types of code it would have to be a RichTextBox. I am just looking for some other opinions, I don't know anything about then and a little about Text Boxes. thanks
    If you think education is expensive, try ignorance.

  2. #2

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2000
    Posts
    323
    I don't know any of the properties for a RichTextBox though.

    As in:

    What is the equivelant to SelText in RichTextBox?
    If you think education is expensive, try ignorance.

  4. #4

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2000
    Posts
    323
    that makes sense, thanks. I will post my other questions when I get to them. Thanks again.
    If you think education is expensive, try ignorance.

  6. #6

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2000
    Posts
    323
    How do I have text default to being in the RichTextBox?

    <html>
    <body>
    ....
    </body>
    </html>

    on different lines like that?
    If you think education is expensive, try ignorance.

  7. #7
    Guest
    Code:
    RichTextBox1.Text = "<html>" & Chr$(13) & Chr$(10) & "<title>" & Chr$(13) & Chr$(10) & "...." & Chr$(13) & Chr$(10) & "</body>" & Chr$(13) & Chr$(10) & "</html>"

  8. #8

    Thread Starter
    Hyperactive Member
    Join Date
    Jan 2000
    Posts
    323
    Perfect thanks. I am almost done with most of it.

    How do I stop the words from wrapping? It never has a scroll bar across the bottom because it wraps to the next line.
    If you think education is expensive, try ignorance.

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