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]4 Replies - 68 Views - Last Post: Today, 06:33 AM
#1
Reputation: 0
- Posts: 8
- Joined: 29-November 12
Posted Today, 06:13 AM
Since vb doesn't copy the "&" sign if it's not typed "&&" i need to replace the text in textbox3 that contains the "&" with "&&".Problem is it doesn't replace itCode:
If TextBox3.Text.Contains("&") Then TextBox3.Text.Replace("&", "&&") End If
Is This A Good Question/Topic? 0
Replies To: vb.net textbox replace & with &&
#2
Reputation: 673
- Posts: 2,011
- Joined: 12-December 12
Re: vb.net textbox replace & with &&
Posted Today, 06:23 AM
Strings are immutable so you need to set the textbox's Text to the revised version:TextBox3.Text = TextBox3.Text.Replace("&", "&&")
I trust that this is not the actual name of your textbox(?).
This post has been edited by andrewsw: Today, 06:24 AM
#3
Reputation: 1881
- Posts: 8,415
- Joined: 29-May 08
Re: vb.net textbox replace & with &&
Posted Today, 06:24 AM
Tutorial on Strings This post has been edited by AdamSpeight2008: Today, 06:31 AM
Reason for edit:: Rage Copied the wrong stuff in URL
#4
Reputation: 0
- Posts: 8
- Joined: 29-November 12
Re: vb.net textbox replace & with &&
Posted Today, 06:28 AM
andrewsw, on 23 March 2013 - 06:23 AM, said:
I trust that this is not the actual name of your textbox(?).
Thanks for the help forgot that.
Yes that's the name of the textbox why is it so bad to let it default?
#5
Reputation: 673
- Posts: 2,011
- Joined: 12-December 12
Re: vb.net textbox replace & with &&
Posted Today, 06:33 AM
VBbeginner01, on 23 March 2013 - 01:28 PM, said:
andrewsw, on 23 March 2013 - 06:23 AM, said:
I trust that this is not the actual name of your textbox(?).
Thanks for the help forgot that.
Yes that's the name of the textbox why is it so bad to let it default?
Because it is meaningless. If you end up with 10 textboxes, named TextBox1..TextBox10 how will you be able to understand your code?
I still use prefixes: txtFirstName, txtPassword, etc.. If you rename it in the Properties Window, Visual Studio is likely to rename every occurrence of the old name in your code.
Page 1 of 1
Source: http://www.dreamincode.net/forums/topic/316436-vbnet-textbox-replace-with/
Dec 21 2012 doomsday Is The World Going To End Mayans camilla belle Robert Bork instagram
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.