Handling errors when inserting file path links in RichTextBox

Source: Internet
Author: User

In this paper, on the basis of http://blog.csdn.net/greystar/archive/2008/03/13/2175958.aspx, extended.

When we insert a link in RichTextBox, if the link is a file path (such as C:/AA/bb.doc), The/symbol will be lost. in this way, if we want to click on some connections, the obtained data is incorrect.

Public void insertlink (string text, string hyperlink, int position)
{
If (position <0 | position> This. Text. length)
Throw new argumentoutofrangeexception ("position ");

This. selectionstart = position;
// This. selectedrtf = @ "{/rtf1/ANSI" + TEXT + @ "/V #" + hyperlink + @ "/V0}"; // Chinese garbled characters may occur. This. selectedrtf = @ "{/rtf1/ansicpg936" + texttortf (text) + @ "/V #" + hyperlink + @ "/V0 }";
This. Select (Position, text. Length + hyperlink. Length + 1 );
This. setselectionlink (true );
This. Select (Position + text. Length + hyperlink. Length + 1, 0 );
}
// Used for path Processing
Public String texttortf (string atext)
{
String vreturn = "";
Foreach (char vchar in atext)
{
Switch (vchar)
{
Case '//':
Vreturn + = @"//";
Break;
Case '{':
Vreturn + = @"/{";
Break;
Case '}':
Vreturn + = @"/}";
Break;
Default:
If (vchar> (char) 127)
Vreturn + = @ "/u" + (INT) vchar). tostring () + "? ";
Else vreturn + = vchar;
Break;
}
}
Return vreturn;
}
In this article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.