Click here to Skip to main content
15,887,910 members
Articles / Database Development / SQL Server

SQL Server Stored Procedures Comparer

Rate me:
Please Sign up or sign in to vote.
4.95/5 (35 votes)
22 Apr 2010CPOL9 min read 125.7K   6.5K   81  
Windows application that compares stored procedures between two SQL Server database
namespace SyncScrollingRichtextBox
{
    partial class SyncScrollingRichtextBox
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Component Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify 
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.splitContainer1 = new System.Windows.Forms.SplitContainer();
            this.RichTextBox1 = new System.Windows.Forms.RichTextBox();
            this.RichTextBox2 = new System.Windows.Forms.RichTextBox();
            this.Source = new System.Windows.Forms.GroupBox();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.splitContainer1.Panel1.SuspendLayout();
            this.splitContainer1.Panel2.SuspendLayout();
            this.splitContainer1.SuspendLayout();
            this.Source.SuspendLayout();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // splitContainer1
            // 
            this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.splitContainer1.Location = new System.Drawing.Point(0, 0);
            this.splitContainer1.Name = "splitContainer1";
            // 
            // splitContainer1.Panel1
            // 
            this.splitContainer1.Panel1.Controls.Add(this.Source);
            // 
            // splitContainer1.Panel2
            // 
            this.splitContainer1.Panel2.Controls.Add(this.groupBox1);
            this.splitContainer1.Size = new System.Drawing.Size(833, 388);
            this.splitContainer1.SplitterDistance = 426;
            this.splitContainer1.SplitterWidth = 2;
            this.splitContainer1.TabIndex = 0;
            // 
            // RichTextBox1
            // 
            this.RichTextBox1.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
            this.RichTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.RichTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.RichTextBox1.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RichTextBox1.Location = new System.Drawing.Point(3, 17);
            this.RichTextBox1.Name = "RichTextBox1";
            this.RichTextBox1.ReadOnly = true;
            this.RichTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth;
            this.RichTextBox1.Size = new System.Drawing.Size(420, 368);
            this.RichTextBox1.TabIndex = 0;
            this.RichTextBox1.TabStop = false;
            this.RichTextBox1.Text = "";
            this.RichTextBox1.WordWrap = false;
            // 
            // RichTextBox2
            // 
            this.RichTextBox2.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
            this.RichTextBox2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.RichTextBox2.Dock = System.Windows.Forms.DockStyle.Fill;
            this.RichTextBox2.Font = new System.Drawing.Font("Verdana", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.RichTextBox2.Location = new System.Drawing.Point(3, 17);
            this.RichTextBox2.Name = "RichTextBox2";
            this.RichTextBox2.ReadOnly = true;
            this.RichTextBox2.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedBoth;
            this.RichTextBox2.Size = new System.Drawing.Size(399, 368);
            this.RichTextBox2.TabIndex = 0;
            this.RichTextBox2.Text = "";
            this.RichTextBox2.WordWrap = false;
            // 
            // Source
            // 
            this.Source.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
            this.Source.Controls.Add(this.RichTextBox1);
            this.Source.Dock = System.Windows.Forms.DockStyle.Fill;
            this.Source.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Source.ForeColor = System.Drawing.SystemColors.ControlText;
            this.Source.Location = new System.Drawing.Point(0, 0);
            this.Source.Name = "Source";
            this.Source.Size = new System.Drawing.Size(426, 388);
            this.Source.TabIndex = 1;
            this.Source.TabStop = false;
            this.Source.Text = "Source";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.RichTextBox2);
            this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.groupBox1.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.groupBox1.ForeColor = System.Drawing.SystemColors.ControlText;
            this.groupBox1.Location = new System.Drawing.Point(0, 0);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(405, 388);
            this.groupBox1.TabIndex = 1;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Target";
            // 
            // SyncScrollingRichtextBox
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.AutoSize = true;
            this.Controls.Add(this.splitContainer1);
            this.DoubleBuffered = true;
            this.Name = "SyncScrollingRichtextBox";
            this.Size = new System.Drawing.Size(833, 388);
            this.ParentChanged += new System.EventHandler(this.SyncScrollingRichtextBox_ParentChanged);
            this.splitContainer1.Panel1.ResumeLayout(false);
            this.splitContainer1.Panel2.ResumeLayout(false);
            this.splitContainer1.ResumeLayout(false);
            this.Source.ResumeLayout(false);
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        public System.Windows.Forms.RichTextBox RichTextBox1;
        public System.Windows.Forms.RichTextBox RichTextBox2;
        public System.Windows.Forms.SplitContainer splitContainer1;
        private System.Windows.Forms.GroupBox Source;
        private System.Windows.Forms.GroupBox groupBox1;
    }
}

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
Database Developer Virtify Inc.
Philippines Philippines
I am a database developer in my current employment for nearly 4 years. I'm proficient in programming using C/C++, C#, and T-sql. When I am not working, I like to read books(non-fiction specially), play mmorpgs where I can be what I don't want to be Smile | :) , and going outdoors.

Comments and Discussions