Click here to Skip to main content
15,891,253 members
Articles / Web Development / HTML

ASP.NET HTML Editor Control

Rate me:
Please Sign up or sign in to vote.
4.91/5 (68 votes)
30 May 2013CPOL13 min read 188.4K   11.2K   130  
Creating a useful ASP.NET HTML Editor custom control.
��<!DOCTYPE html>

<!-- saved from url=(0014)about:internet -->

 <html xmlns:msxsl="urn:schemas-microsoft-com:xslt"><head><meta content="en-us" http-equiv="Content-Language" /><meta content="text/html; charset=utf-16" http-equiv="Content-Type" /><link type="text/css" rel="stylesheet" href="_UpgradeReport_Files\UpgradeReport.css" /><title _locID="ConversionReport0">

          Migration Report

        </title><script type="text/javascript" language="javascript"> 

          

            // Startup 

            // Hook up the the loaded event for the document/window, to linkify the document content

            var startupFunction = function() { linkifyElement("messages"); };

            

            if(window.attachEvent)

            {

              window.attachEvent('onload', startupFunction);

            }

            else if (window.addEventListener) 

            {

              window.addEventListener('load', startupFunction, false);

            }

            else 

            {

              document.addEventListener('load', startupFunction, false);

            } 

            

            // Toggles the visibility of table rows with the specified name 

            function toggleTableRowsByName(name)

            {

               var allRows = document.getElementsByTagName('tr');

               for (i=0; i < allRows.length; i++)

               {

                  var currentName = allRows[i].getAttribute('name');

                  if(!!currentName && currentName.indexOf(name) == 0)

                  {

                      var isVisible = allRows[i].style.display == ''; 

                      isVisible ? allRows[i].style.display = 'none' : allRows[i].style.display = '';

                  }

               }

            }

            

            function scrollToFirstVisibleRow(name) 

            {

               var allRows = document.getElementsByTagName('tr');

               for (i=0; i < allRows.length; i++)

               {

                  var currentName = allRows[i].getAttribute('name');

                  var isVisible = allRows[i].style.display == ''; 

                  if(!!currentName && currentName.indexOf(name) == 0 && isVisible)

                  {

                     allRows[i].scrollIntoView(true); 

                     return true; 

                  }

               }

               

               return false;

            }

            

            // Linkifies the specified text content, replaces candidate links with html links 

            function linkify(text)

            {

                 if(!text || 0 === text.length)

                 {

                     return text; 

                 }



                 // Find http, https and ftp links and replace them with hyper links 

                 var urlLink = /(http|https|ftp)\:\/\/[a-zA-Z0-9\-\.]+(:[a-zA-Z0-9]*)?\/?([a-zA-Z0-9\-\._\?\,\/\\\+&%\$#\=~;\{\}])*/gi;

                 

                 return text.replace(urlLink, '<a href="$&">$&</a>') ;

            }

            

            // Linkifies the specified element by ID

            function linkifyElement(id)

            {

                var element = document.getElementById(id);

                if(!!element)

                {

                  element.innerHTML = linkify(element.innerHTML); 

                }

            }

            

            function ToggleMessageVisibility(projectName)

            {

              if(!projectName || 0 === projectName.length)

              {

                return; 

              }

              

              toggleTableRowsByName("MessageRowClass" + projectName);

              toggleTableRowsByName('MessageRowHeaderShow' + projectName);

              toggleTableRowsByName('MessageRowHeaderHide' + projectName); 

            }

            

            function ScrollToFirstVisibleMessage(projectName)

            {

              if(!projectName || 0 === projectName.length)

              {

                return; 

              }

              

              // First try the 'Show messages' row

              if(!scrollToFirstVisibleRow('MessageRowHeaderShow' + projectName))

              {

                // Failed to find a visible row for 'Show messages', try an actual message row 

                scrollToFirstVisibleRow('MessageRowClass' + projectName); 

              }

            }

           </script></head><body><h1 _locID="ConversionReport">

          Migration Report - Sigma</h1><div id="content"><h2 _locID="OverviewTitle">Overview</h2><div id="overview"><table><tr><th></th><th _locID="ProjectTableHeader">Project</th><th _locID="PathTableHeader">Path</th><th _locID="ErrorsTableHeader">Errors</th><th _locID="WarningsTableHeader">Warnings</th><th _locID="MessagesTableHeader">Messages</th></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td><strong><a href="#testCustomControl">testCustomControl</a></strong></td><td>testCustom\testCustomControl.csproj</td><td class="textCentered"><a href="#testCustomControlError">7</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#" onclick="ScrollToFirstVisibleMessage('testCustomControl'); return false;">17</a></td></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Warning.png" alt="Warning" /></td><td><strong><a href="#Solution"><span _locID="OverviewSolutionSpan">Solution</span></a></strong></td><td>Sigma.sln</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#SolutionWarning">1</a></td><td class="textCentered"><a href="#" onclick="ScrollToFirstVisibleMessage('Solution'); return false;">3</a></td></tr><tr><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Success.png" alt="Success" /></td><td><strong><a href="#SigmaToolBox">SigmaToolBox</a></strong></td><td>MyControl\SigmaToolBox.csproj</td><td class="textCentered"><a>0</a></td><td class="textCentered"><a>0</a></td><td class="textCentered"><a href="#" onclick="ScrollToFirstVisibleMessage('SigmaToolBox'); return false;">110</a></td></tr></table></div><h2 _locID="SolutionAndProjectsTitle">Solution and projects</h2><div id="messages"><a name="testCustomControl" /><h3>testCustomControl</h3><table><tr id="testCustomControlHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="ErrorRowClasstestCustomControl"><td><a name="testCustomControlError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>testCustom\Uploads\background.jpg:

        </strong><span>Failed to backup file as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\background.jpg</span></td></tr><tr name="ErrorRowClasstestCustomControl"><td><a name="testCustomControlError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>testCustom\Uploads\Oracle (1).jpg:

        </strong><span>Failed to backup file as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\Oracle (1).jpg</span></td></tr><tr name="ErrorRowClasstestCustomControl"><td><a name="testCustomControlError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>testCustom\Uploads\oracle.jpg:

        </strong><span>Failed to backup file as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\oracle.jpg</span></td></tr><tr name="ErrorRowClasstestCustomControl"><td><a name="testCustomControlError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>testCustom\Uploads\sql2008.png:

        </strong><span>Failed to backup file as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\sql2008.png</span></td></tr><tr name="ErrorRowClasstestCustomControl"><td><a name="testCustomControlError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>testCustom\Uploads\titleicon1.gif:

        </strong><span>Failed to backup file as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\titleicon1.gif</span></td></tr><tr name="ErrorRowClasstestCustomControl"><td><a name="testCustomControlError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>testCustom\Uploads\titleicon2.gif:

        </strong><span>Failed to backup file as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\titleicon2.gif</span></td></tr><tr name="ErrorRowClasstestCustomControl"><td><a name="testCustomControlError" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Error.png" alt="Error" /></td><td class="messageCell"><strong>testCustom\Uploads\titleicon3.gif:

        </strong><span>Failed to backup file as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\titleicon3.gif</span></td></tr><tr name="MessageRowHeaderShowtestCustomControl"><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell"><a _locID="ShowAdditionalMessages" href="#" name="testCustomControlMessage" onclick="ToggleMessageVisibility('testCustomControl'); return false;">

          Show 17 additional messages

        </a></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\testCustomControl.csproj:

        </strong><span>Project file successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\testCustomControl.csproj</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\testCustomControl.csproj.user:

        </strong><span>Project user file successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\testCustomControl.csproj.user</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Default.aspx.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Default.aspx.cs</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Default.aspx.designer.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Default.aspx.designer.cs</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Properties\AssemblyInfo.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Properties\AssemblyInfo.cs</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\WebForm1.aspx.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\WebForm1.aspx.cs</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\WebForm1.aspx.designer.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\WebForm1.aspx.designer.cs</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Default.aspx:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Default.aspx</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\HTMLPage1.htm:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\HTMLPage1.htm</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Uploads\3372161886_e82c7c8b1b_o.jpg:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\3372161886_e82c7c8b1b_o.jpg</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Uploads\Clock.swf:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\Clock.swf</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Uploads\Downloads4.jpg:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\Downloads4.jpg</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Uploads\fifa-2010.swf:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Uploads\fifa-2010.swf</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\Web.config:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\Web.config</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\WebForm1.aspx:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\testCustom\WebForm1.aspx</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\testCustomControl.csproj:

        </strong><span>Project migrated successfully</span></td></tr><tr name="MessageRowClasstestCustomControl" style="display: none"><td><a name="testCustomControlMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>testCustom\testCustomControl.csproj:

        </strong><span>Scan complete: Migration not required for project files.</span></td></tr><tr style="display: none" name="MessageRowHeaderHidetestCustomControl"><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell"><a _locID="HideAdditionalMessages" href="#" name="testCustomControlMessage" onclick="ToggleMessageVisibility('testCustomControl'); return false;">

          Hide 17 additional messages

        </a></td></tr></table><a name="Solution" /><h3 _locID="ProjectDisplayNameHeader">Solution</h3><table><tr id="SolutionHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="WarningRowClassSolution"><td><a name="SolutionWarning" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Warning.png" alt="Warning" /></td><td class="messageCell"><strong>Sigma.sln:

        </strong><span>Visual Studio needs to make non-functional changes to this project in order to enable the project to open in this version and Visual Studio 2010 SP1 without impacting project behavior.</span></td></tr><tr name="MessageRowHeaderShowSolution"><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell"><a _locID="ShowAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;">

          Show 3 additional messages

        </a></td></tr><tr name="MessageRowClassSolution" style="display: none"><td><a name="SolutionMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>Sigma.sln:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\Sigma.sln</span></td></tr><tr name="MessageRowClassSolution" style="display: none"><td><a name="SolutionMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>Sigma.v11.suo:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\Sigma.v11.suo</span></td></tr><tr name="MessageRowClassSolution" style="display: none"><td><a name="SolutionMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>Sigma.sln:

        </strong><span>Solution migrated successfully</span></td></tr><tr style="display: none" name="MessageRowHeaderHideSolution"><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell"><a _locID="HideAdditionalMessages" href="#" name="SolutionMessage" onclick="ToggleMessageVisibility('Solution'); return false;">

          Hide 3 additional messages

        </a></td></tr></table><a name="SigmaToolBox" /><h3>SigmaToolBox</h3><table><tr id="SigmaToolBoxHeaderRow"><th></th><th class="messageCell" _locID="MessageTableHeader">Message</th></tr><tr name="MessageRowHeaderShowSigmaToolBox"><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell"><a _locID="ShowAdditionalMessages" href="#" name="SigmaToolBoxMessage" onclick="ToggleMessageVisibility('SigmaToolBox'); return false;">

          Show 110 additional messages

        </a></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\SigmaToolBox.csproj:

        </strong><span>Project file successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\SigmaToolBox.csproj</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\App_Code\HtmlSourceInitializer.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\App_Code\HtmlSourceInitializer.cs</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\App_Code\Registrar.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\App_Code\Registrar.cs</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\App_Code\Security.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\App_Code\Security.cs</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\App_Code\SourceActions.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\App_Code\SourceActions.cs</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\Properties\Resources.Designer.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\Properties\Resources.Designer.cs</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextBox.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextBox.cs</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\Properties\AssemblyInfo.cs:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\Properties\AssemblyInfo.cs</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\format_text_strikethrough.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\format_text_strikethrough.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\EditorStyles\Style.css:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\EditorStyles\Style.css</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\js\RichText.js:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\js\RichText.js</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\EditorStyles\slider.css:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\EditorStyles\slider.css</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\EditorStyles\textEditor.css:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\EditorStyles\textEditor.css</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\js\Encoder.js:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\js\Encoder.js</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\js\jscolor.js:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\js\jscolor.js</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\js\slider.js:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\js\slider.js</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\1280657916_format-text-italic.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\1280657916_format-text-italic.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\bold.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\bold.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\bullets.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\bullets.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\center.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\center.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\colorPicker.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\colorPicker.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\copy.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\copy.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\createtable.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\createtable.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\directionLeft.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\directionLeft.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\eraser.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\eraser.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\fontFamily.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\fontFamily.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\fontFamily2.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\fontFamily2.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\fontFamily3.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\fontFamily3.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\fontsize.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\fontsize.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\fontStyle.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\fontStyle.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\fontStyle2.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\fontStyle2.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\font_bold.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\font_bold.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\highlight.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\highlight.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\highlighter_text.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\highlighter_text.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\HorizontalLine.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\HorizontalLine.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insertImage.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insertImage.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_button.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_button.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_checkbox.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_checkbox.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_combobox.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_combobox.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_fileUpload.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_fileUpload.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_image.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_image.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_listBox.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_listBox.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_textbox.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_textbox.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\italic.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\italic.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\italic2.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\italic2.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\link2.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\link2.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\link3.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\link3.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\link_break.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\link_break.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\ltr.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\ltr.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\ltr_direction.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\ltr_direction.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\numbering.gif:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\numbering.gif</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\page_break.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\page_break.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\paste.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\paste.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\preview.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\preview.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\redo.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\redo.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\resize_both.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\resize_both.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\resize_horizontal.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\resize_horizontal.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\resize_vertical.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\resize_vertical.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\rtl.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\rtl.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\rtl_direction.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\rtl_direction.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\save.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\save.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\save_as.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\save_as.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\strikethrough.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\strikethrough.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\table.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\table.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\textColor.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\textColor.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\textColor2.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\textColor2.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\text_align_center.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\text_align_center.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\text_italic.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\text_italic.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\undo.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\undo.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\ColorPicker\colormap.gif:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\ColorPicker\colormap.gif</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\ColorPicker\palette.gif:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\ColorPicker\palette.gif</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\ColorPicker\palette.jpg:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\ColorPicker\palette.jpg</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\colormap.gif:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\colormap.gif</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\palette.gif:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\palette.gif</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\js\Initializer.js:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\js\Initializer.js</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\Properties\Resources.resx:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\Properties\Resources.resx</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\text_bold.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\text_bold.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\underline.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\underline.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\format_justify_left.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\format_justify_left.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\format_justify_right.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\format_justify_right.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\text_list_numbers.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\text_list_numbers.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\select_all.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\select_all.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\printer.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\printer.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_password.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_password.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\cut.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\cut.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\Htmlsource.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\Htmlsource.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\editorMode.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\editorMode.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\insert_textarea.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\insert_textarea.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\indent.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\indent.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\outdent.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\outdent.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\palette.jpg:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\palette.jpg</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\bullets_RTL.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\bullets_RTL.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\text_list_numbers-RTL.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\text_list_numbers-RTL.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\ltr_direction_on.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\ltr_direction_on.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\rtl_direction_on.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\rtl_direction_on.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\subscript.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\subscript.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\superscript.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\superscript.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\text_bold_on.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\text_bold_on.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\text_italic_on.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\text_italic_on.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\underline_on.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\underline_on.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\loadign.gif:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\loadign.gif</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\js\loading.js:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\js\loading.js</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\EditorStyles\loading.css:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\EditorStyles\loading.css</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\character_set.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\character_set.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\swfBackground.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\swfBackground.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\swf.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\swf.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\ui_radio_button.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\ui_radio_button.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\RichTextboxIcons\text_strikethrough.png:

        </strong><span>File successfully backed up as C:\Users\taavon\Desktop\RichTextBox\RichTextBox\Backup\MyControl\RichTextboxIcons\text_strikethrough.png</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\SigmaToolBox.csproj:

        </strong><span>Project migrated successfully</span></td></tr><tr name="MessageRowClassSigmaToolBox" style="display: none"><td><a name="SigmaToolBoxMessage" /><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" alt="Message" /></td><td class="messageCell"><strong>MyControl\SigmaToolBox.csproj:

        </strong><span>Scan complete: Migration not required for project files.</span></td></tr><tr style="display: none" name="MessageRowHeaderHideSigmaToolBox"><td><img width="16" height="16" src="_UpgradeReport_Files\UpgradeReport_Information.png" /></td><td class="messageCell"><a _locID="HideAdditionalMessages" href="#" name="SigmaToolBoxMessage" onclick="ToggleMessageVisibility('SigmaToolBox'); return false;">

          Hide 110 additional messages

        </a></td></tr></table></div></div></body></html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Student UFMG
Brazil Brazil
I am a PhD candidate in computer science. I started software development since 2006 and it seems like now it consumes most every part of my life. My life is my computer and solving problems, more specifically computational-mathematical problems, is my passion.I mostly enjoy areas like Machine Learning, Big Data and Brain-Computer Interface (BCI). My major goal in my life is becoming a person who utilizes everything he knows to improve human life quality. I also like hiking and reading self-development books.

Comments and Discussions