Click here to Skip to main content
15,889,839 members
Articles / Programming Languages / Visual Basic

Visual Studio Add-in for testing regular expressions

Rate me:
Please Sign up or sign in to vote.
4.94/5 (17 votes)
1 Dec 2010CPOL4 min read 39.7K   474   36  
An add-in for debugging and creating regular expression directly in Visual Studio
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace RegexTester.UserControls
{
    public partial class MessageDecorator : UserControl
    {
        private Control wrappedControl;

        public MessageDecorator()
        {
            InitializeComponent();
        }

        private void ConfigureControl()
        {
            wrappedControl.Dock = DockStyle.Fill;
            panelWrappedControl.Controls.Add(wrappedControl);
        }

        public Control WrappedControl { get { return wrappedControl; } set { wrappedControl = value; ConfigureControl(); } }

        public void SetMessage(string message)
        {
            this.textBoxMessage.Text = message;
        }

        public void ResetMessage()
        {
            this.textBoxMessage.Text = "";
        }
    }
}

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
Software Developer (Senior)
Denmark Denmark
.NET developer. I wanted to be first an astronaut, then a jet pilot, but when I got a Commodore 64 for Christmas I never looked back. Also I would never have qualified for the first two things and everybody knows computer programmers get all the girls.

Comments and Discussions