Example
#{example}"); ipb.editor_values.get('templates')['togglesource'] = new Template(""); ipb.editor_values.get('templates')['toolbar'] = new Template(""); ipb.editor_values.get('templates')['button'] = new Template("
Emoticons
"); // Add smilies into the mix ipb.editor_values.set( 'show_emoticon_link', false ); ipb.editor_values.set( 'bbcodes', $H({"snapback":{"id":"1","title":"Post Snap Back","desc":"This tag displays a little linked image which links back to a post - used when quoting posts from the board. Opens in same window by default.","tag":"snapback","useoption":"0","example":"[snapback]100[/snapback]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"topic":{"id":"5","title":"Topic Link","desc":"This tag provides an easy way to link to a topic","tag":"topic","useoption":"1","example":"[topic=1]Click me![/topic]","switch_option":"0","menu_option_text":"Enter the topic ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"post":{"id":"6","title":"Post Link","desc":"This tag provides an easy way to link to a post.","tag":"post","useoption":"1","example":"[post=1]Click me![/post]","switch_option":"0","menu_option_text":"Enter the Post ID","menu_content_text":"Enter the title for this link","single_tag":"0","optional_option":"0","image":""},"spoiler":{"id":"7","title":"Spoiler","desc":"Spoiler tag","tag":"spoiler","useoption":"0","example":"[spoiler]Some hidden text[/spoiler]","switch_option":"0","menu_option_text":"","menu_content_text":"Enter the text to be masked","single_tag":"0","optional_option":"0","image":""},"acronym":{"id":"8","title":"Acronym","desc":"Allows you to make an acronym that will display a description when moused over","tag":"acronym","useoption":"1","example":"[acronym='Laugh Out Loud']lol[/acronym]","switch_option":"0","menu_option_text":"Enter the description for this acronym (EG: Laugh Out Loud)","menu_content_text":"Enter the acronym (EG: lol)","single_tag":"0","optional_option":"0","image":""},"hr":{"id":"12","title":"Horizontal Rule","desc":"Adds a horizontal rule to separate text","tag":"hr","useoption":"0","example":"[hr]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"1","optional_option":"0","image":""},"php":{"id":"14","title":"PHP Code","desc":"Allows you to enter PHP code into a formatted/highlighted syntax box","tag":"php","useoption":"0","example":"[php]$variable = true;\n\nprint_r($variable);[/php]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"html":{"id":"15","title":"HTML Code","desc":"Allows you to enter formatted/syntax-highlighted HTML code","tag":"html","useoption":"0","example":"[html]\n \n[/html]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"sql":{"id":"16","title":"SQL Code","desc":"Allows you to enter formatted/syntax-highlighted SQL code","tag":"sql","useoption":"0","example":"[sql]SELECT p.*, t.* FROM posts p LEFT JOIN topics t ON t.tid=p.topic_id WHERE t.tid=7[/sql]","switch_option":"0","menu_option_text":"","menu_content_text":"","single_tag":"0","optional_option":"0","image":""},"xml":{"id":"17","title":"XML Code","desc":"Allows you to enter formatted/syntax-highlighted XML code","tag":"xml","useoption":"0","example":"[xml]3 Replies - 60 Views - Last Post: Today, 09:58 PM
#1
Reputation: 0
- Posts: 4
- Joined: 25-March 13
Posted Today, 07:32 PM
I am new to this forum so sorry if I do something wrong. I have a RichTextBox1 and RichTextBox2 on my form. RichTextBox1 is for the user to enter some text. RichTextBox2 is not visible on form. I am trying to get the code to take the users text and put in RichTextBox2 to be able to save all the text each time the user hits saved button. I am not sure the best way to go about this. My code below saves the text ok the first time the saved button is hit but when the user adds more text and save again, it is adding the new text and the old text again. I just want it to save the new text only along with the old text but not add the old text again.Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click If RichTextBox1.Text.Length > 0 Then RichTextBox2.AppendText(RichTextBox1.Text) If RichTextBox2.Text = RichTextBox1.Text Then MessageBox.Show("Text was Saved") End If Else 'do nothing End If End Sub
Is This A Good Question/Topic? 0
Replies To: RichTextBox Append or Compare
#2
Reputation: 69
- Posts: 290
- Joined: 01-February 13
Re: RichTextBox Append or Compare
Posted Today, 08:03 PM
Hello donna2002,You will need to save the text from textbox2 in a string variable and clear the text from textbox2 before saving the text from textbox1. Thats what it sounds like from the way your explaining it. Try this
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click If RichTextBox1.Text.Length > 0 Then Dim txt As String = RichTextBox2.Text RichTextBox2.Clear() RichTextBox2.Text = RichTextBox1.Text If RichTextBox2.Text = RichTextBox1.Text Then MessageBox.Show("Text was Saved") End If End If End Sub
/>
This post has been edited by IronRazer: Today, 08:04 PM
#3
Reputation: 69
- Posts: 290
- Joined: 01-February 13
Re: RichTextBox Append or Compare
Posted Today, 08:56 PM
#4
Reputation: 0
- Posts: 4
- Joined: 25-March 13
Re: RichTextBox Append or Compare
Posted Today, 09:58 PM
Thank you IronRazer for the reply. Yes, that does work but maybe I am not explaining too well. That code does work until the user deletes something or clears his text to start over. I need the RichTextBox2 to always keep the text when the save button is clicked even if the user clears his or does whatever it still needs to keep the old text and add only the new text to RichTextBox2. I am probably not explaining it well. In other words I need both RTB to compare to each other and if there is new text added to RTB1 then add only that text to RTB2 along with what is already in RTB2. I have tried different ways but keep getting RTB2 with too much text adding the old and new text together and having duplicates of the same text when the user only entered it once. I hope that clears it up some. I am not good explaining myself.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/316917-richtextbox-append-or-compare/
hepatitis c symptoms david bradley david foster wallace pinterest attwireless taylor swift zac efron the scream
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.