|
-
Jun 13th, 2006, 10:50 AM
#1
Thread Starter
Member
Re: RichTextBox Question - Simple
WebBrowswer1.DocumentText = TextBox1.Text
That solves the problem 
Also, you can apply source-formatting buttons by doing this:
Create a button, "Make Text Bold" ... When this button is pressed, have it perform the following action
TextBox1.SelectedText = "<b>" & TextBox1.SelectedText & "</b>"
This will add HTML bold tags around whatever is selected.
Hope this helps!
Jonathan
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
|