Click here to Skip to main content
15,891,253 members
Articles / Database Development / SQL Server / SQL Server 2008

Configuring SQL Server Accent-Insensitivity

Rate me:
Please Sign up or sign in to vote.
5.00/5 (9 votes)
21 Feb 2012CPOL7 min read 57.9K   389   9  
This article describes the steps to re-configure SQL Server so that queries return accent-insensitive results. It includes source code (using Microsoft SQL Server 2008 R2 Shared Management Objects) to automate some of the steps in this procedure.
namespace Siphon.Windows.Application
{
	partial class ObjectCreator
    {
        /// <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 Windows Form 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()
        {
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ObjectCreator));
            this.tabControl1 = new System.Windows.Forms.TabControl();
            this.tabObjects = new System.Windows.Forms.TabPage();
            this.groupBox3 = new System.Windows.Forms.GroupBox();
            this.clbType = new System.Windows.Forms.CheckedListBox();
            this.clbSchema = new System.Windows.Forms.CheckedListBox();
            this.label3 = new System.Windows.Forms.Label();
            this.label4 = new System.Windows.Forms.Label();
            this.dgAvailableObjects = new System.Windows.Forms.DataGridView();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.ddlDatabases = new System.Windows.Forms.ComboBox();
            this.label2 = new System.Windows.Forms.Label();
            this.chkScriptAll = new System.Windows.Forms.CheckBox();
            this.label7 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.txtPassword = new System.Windows.Forms.TextBox();
            this.txtUsername = new System.Windows.Forms.TextBox();
            this.btnConnect = new System.Windows.Forms.Button();
            this.chkUseWindowsAuthentication = new System.Windows.Forms.CheckBox();
            this.label1 = new System.Windows.Forms.Label();
            this.txtServerName = new System.Windows.Forms.TextBox();
            this.tabOptions = new System.Windows.Forms.TabPage();
            this.groupBox2 = new System.Windows.Forms.GroupBox();
            this.rdoEncodingUnicode = new System.Windows.Forms.RadioButton();
            this.rdoEncodingUtf8 = new System.Windows.Forms.RadioButton();
            this.rdoEncodingAscii = new System.Windows.Forms.RadioButton();
            this.groupBox5 = new System.Windows.Forms.GroupBox();
            this.chkChecks = new System.Windows.Forms.CheckBox();
            this.chkDefaults = new System.Windows.Forms.CheckBox();
            this.chkProcedures = new System.Windows.Forms.CheckBox();
            this.chkViews = new System.Windows.Forms.CheckBox();
            this.chkFunctions = new System.Windows.Forms.CheckBox();
            this.chkAggregates = new System.Windows.Forms.CheckBox();
            this.chkSchemas = new System.Windows.Forms.CheckBox();
            this.chkAssemblies = new System.Windows.Forms.CheckBox();
            this.chkSynonyms = new System.Windows.Forms.CheckBox();
            this.chkTables = new System.Windows.Forms.CheckBox();
            this.chkInsert = new System.Windows.Forms.CheckBox();
            this.chkPermissions = new System.Windows.Forms.CheckBox();
            this.chkIndexes = new System.Windows.Forms.CheckBox();
            this.chkForeignKeys = new System.Windows.Forms.CheckBox();
            this.chkExistence = new System.Windows.Forms.CheckBox();
            this.chkDrop = new System.Windows.Forms.CheckBox();
            this.chkCreate = new System.Windows.Forms.CheckBox();
            this.chkIncludeHeaders = new System.Windows.Forms.CheckBox();
            this.chkSchemaQualify = new System.Windows.Forms.CheckBox();
            this.chkCollation = new System.Windows.Forms.CheckBox();
            this.groupBox4 = new System.Windows.Forms.GroupBox();
            this.rdoOneFilePerObject = new System.Windows.Forms.RadioButton();
            this.btnPickDirectory = new System.Windows.Forms.Button();
            this.label5 = new System.Windows.Forms.Label();
            this.txtSaveLocation = new System.Windows.Forms.TextBox();
            this.rdoOneFile = new System.Windows.Forms.RadioButton();
            this.rdoNoFiles = new System.Windows.Forms.RadioButton();
            this.tabResult = new System.Windows.Forms.TabPage();
            this.btnCopyClipboard = new System.Windows.Forms.Button();
            this.btnSaveAs = new System.Windows.Forms.Button();
            this.txtResult = new System.Windows.Forms.TextBox();
            this.btnCancel = new System.Windows.Forms.Button();
            this.btnScript = new System.Windows.Forms.Button();
            this.statusStrip1 = new System.Windows.Forms.StatusStrip();
            this.progress = new System.Windows.Forms.ToolStripProgressBar();
            this.status = new System.Windows.Forms.ToolStripStatusLabel();
            this.saveFileDialog1 = new System.Windows.Forms.SaveFileDialog();
            this.folderBrowserDialog1 = new System.Windows.Forms.FolderBrowserDialog();
            this.menuStrip1 = new System.Windows.Forms.MenuStrip();
            this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
            this.tabControl1.SuspendLayout();
            this.tabObjects.SuspendLayout();
            this.groupBox3.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgAvailableObjects)).BeginInit();
            this.groupBox1.SuspendLayout();
            this.tabOptions.SuspendLayout();
            this.groupBox2.SuspendLayout();
            this.groupBox5.SuspendLayout();
            this.groupBox4.SuspendLayout();
            this.tabResult.SuspendLayout();
            this.statusStrip1.SuspendLayout();
            this.menuStrip1.SuspendLayout();
            this.SuspendLayout();
            // 
            // tabControl1
            // 
            this.tabControl1.Controls.Add(this.tabObjects);
            this.tabControl1.Controls.Add(this.tabOptions);
            this.tabControl1.Controls.Add(this.tabResult);
            this.tabControl1.Location = new System.Drawing.Point(12, 27);
            this.tabControl1.Name = "tabControl1";
            this.tabControl1.SelectedIndex = 0;
            this.tabControl1.Size = new System.Drawing.Size(780, 622);
            this.tabControl1.TabIndex = 0;
            // 
            // tabObjects
            // 
            this.tabObjects.Controls.Add(this.groupBox3);
            this.tabObjects.Controls.Add(this.dgAvailableObjects);
            this.tabObjects.Controls.Add(this.groupBox1);
            this.tabObjects.Dock = System.Windows.Forms.DockStyle.Fill;
            this.tabObjects.Location = new System.Drawing.Point(4, 22);
            this.tabObjects.Name = "tabObjects";
            this.tabObjects.Padding = new System.Windows.Forms.Padding(3);
            this.tabObjects.Size = new System.Drawing.Size(772, 596);
            this.tabObjects.TabIndex = 0;
            this.tabObjects.Text = "Database Objects";
            this.tabObjects.UseVisualStyleBackColor = true;
            // 
            // groupBox3
            // 
            this.groupBox3.Controls.Add(this.clbType);
            this.groupBox3.Controls.Add(this.clbSchema);
            this.groupBox3.Controls.Add(this.label3);
            this.groupBox3.Controls.Add(this.label4);
            this.groupBox3.Location = new System.Drawing.Point(334, 6);
            this.groupBox3.Name = "groupBox3";
            this.groupBox3.Size = new System.Drawing.Size(428, 203);
            this.groupBox3.TabIndex = 13;
            this.groupBox3.TabStop = false;
            this.groupBox3.Text = "Filter";
            // 
            // clbType
            // 
            this.clbType.CheckOnClick = true;
            this.clbType.FormattingEnabled = true;
            this.clbType.Location = new System.Drawing.Point(218, 31);
            this.clbType.Name = "clbType";
            this.clbType.Size = new System.Drawing.Size(193, 154);
            this.clbType.TabIndex = 15;
            this.clbType.SelectedIndexChanged += new System.EventHandler(this.clbType_SelectedIndexChanged);
            // 
            // clbSchema
            // 
            this.clbSchema.CheckOnClick = true;
            this.clbSchema.FormattingEnabled = true;
            this.clbSchema.Location = new System.Drawing.Point(12, 31);
            this.clbSchema.Name = "clbSchema";
            this.clbSchema.Size = new System.Drawing.Size(193, 154);
            this.clbSchema.TabIndex = 14;
            this.clbSchema.SelectedIndexChanged += new System.EventHandler(this.clbSchema_SelectedIndexChanged);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(215, 16);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(68, 13);
            this.label3.TabIndex = 13;
            this.label3.Text = "Object Type:";
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(9, 16);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(49, 13);
            this.label4.TabIndex = 12;
            this.label4.Text = "Schema:";
            // 
            // dgAvailableObjects
            // 
            this.dgAvailableObjects.AllowUserToAddRows = false;
            this.dgAvailableObjects.AllowUserToDeleteRows = false;
            dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgAvailableObjects.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
            this.dgAvailableObjects.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
            dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
            dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
            this.dgAvailableObjects.DefaultCellStyle = dataGridViewCellStyle2;
            this.dgAvailableObjects.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
            this.dgAvailableObjects.Location = new System.Drawing.Point(6, 215);
            this.dgAvailableObjects.Name = "dgAvailableObjects";
            dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
            dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
            dataGridViewCellStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
            dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
            dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
            dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
            this.dgAvailableObjects.RowHeadersDefaultCellStyle = dataGridViewCellStyle3;
            this.dgAvailableObjects.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
            this.dgAvailableObjects.Size = new System.Drawing.Size(756, 373);
            this.dgAvailableObjects.TabIndex = 8;
            this.dgAvailableObjects.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgAvailableObjects_CellValueChanged);
            this.dgAvailableObjects.CurrentCellDirtyStateChanged += new System.EventHandler(this.dgAvailableObjects_CurrentCellDirtyStateChanged);
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.ddlDatabases);
            this.groupBox1.Controls.Add(this.label2);
            this.groupBox1.Controls.Add(this.chkScriptAll);
            this.groupBox1.Controls.Add(this.label7);
            this.groupBox1.Controls.Add(this.label6);
            this.groupBox1.Controls.Add(this.txtPassword);
            this.groupBox1.Controls.Add(this.txtUsername);
            this.groupBox1.Controls.Add(this.btnConnect);
            this.groupBox1.Controls.Add(this.chkUseWindowsAuthentication);
            this.groupBox1.Controls.Add(this.label1);
            this.groupBox1.Controls.Add(this.txtServerName);
            this.groupBox1.Location = new System.Drawing.Point(6, 6);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(322, 203);
            this.groupBox1.TabIndex = 2;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "Server";
            // 
            // ddlDatabases
            // 
            this.ddlDatabases.FormattingEnabled = true;
            this.ddlDatabases.Location = new System.Drawing.Point(73, 144);
            this.ddlDatabases.Name = "ddlDatabases";
            this.ddlDatabases.Size = new System.Drawing.Size(163, 21);
            this.ddlDatabases.TabIndex = 20;
            this.ddlDatabases.SelectedValueChanged += new System.EventHandler(this.ddlDatabases_SelectedIndexChanged);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(11, 147);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(56, 13);
            this.label2.TabIndex = 19;
            this.label2.Text = "Database:";
            // 
            // chkScriptAll
            // 
            this.chkScriptAll.AutoSize = true;
            this.chkScriptAll.Location = new System.Drawing.Point(246, 148);
            this.chkScriptAll.Name = "chkScriptAll";
            this.chkScriptAll.Size = new System.Drawing.Size(70, 17);
            this.chkScriptAll.TabIndex = 18;
            this.chkScriptAll.Text = "Select All";
            this.chkScriptAll.UseVisualStyleBackColor = true;
            this.chkScriptAll.CheckedChanged += new System.EventHandler(this.chkScriptAll_CheckedChanged);
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(11, 92);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(56, 13);
            this.label7.TabIndex = 7;
            this.label7.Text = "Password:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(9, 66);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(58, 13);
            this.label6.TabIndex = 6;
            this.label6.Text = "Username:";
            // 
            // txtPassword
            // 
            this.txtPassword.Enabled = false;
            this.txtPassword.Location = new System.Drawing.Point(73, 89);
            this.txtPassword.Name = "txtPassword";
            this.txtPassword.PasswordChar = '*';
            this.txtPassword.Size = new System.Drawing.Size(163, 20);
            this.txtPassword.TabIndex = 5;
            // 
            // txtUsername
            // 
            this.txtUsername.Enabled = false;
            this.txtUsername.Location = new System.Drawing.Point(73, 63);
            this.txtUsername.Name = "txtUsername";
            this.txtUsername.Size = new System.Drawing.Size(163, 20);
            this.txtUsername.TabIndex = 4;
            // 
            // btnConnect
            // 
            this.btnConnect.Location = new System.Drawing.Point(73, 115);
            this.btnConnect.Name = "btnConnect";
            this.btnConnect.Size = new System.Drawing.Size(75, 23);
            this.btnConnect.TabIndex = 3;
            this.btnConnect.Text = "&Connect";
            this.btnConnect.UseVisualStyleBackColor = true;
            this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
            // 
            // chkUseWindowsAuthentication
            // 
            this.chkUseWindowsAuthentication.AutoSize = true;
            this.chkUseWindowsAuthentication.Checked = true;
            this.chkUseWindowsAuthentication.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkUseWindowsAuthentication.Location = new System.Drawing.Point(73, 40);
            this.chkUseWindowsAuthentication.Name = "chkUseWindowsAuthentication";
            this.chkUseWindowsAuthentication.Size = new System.Drawing.Size(163, 17);
            this.chkUseWindowsAuthentication.TabIndex = 2;
            this.chkUseWindowsAuthentication.Text = "Use Windows Authentication";
            this.chkUseWindowsAuthentication.UseVisualStyleBackColor = true;
            this.chkUseWindowsAuthentication.CheckedChanged += new System.EventHandler(this.chkUseWindowsAuthentication_CheckedChanged);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(26, 16);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(41, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "Server:";
            // 
            // txtServerName
            // 
            this.txtServerName.Location = new System.Drawing.Point(73, 13);
            this.txtServerName.Name = "txtServerName";
            this.txtServerName.Size = new System.Drawing.Size(243, 20);
            this.txtServerName.TabIndex = 0;
            // 
            // tabOptions
            // 
            this.tabOptions.Controls.Add(this.groupBox2);
            this.tabOptions.Controls.Add(this.groupBox5);
            this.tabOptions.Controls.Add(this.groupBox4);
            this.tabOptions.Location = new System.Drawing.Point(4, 22);
            this.tabOptions.Name = "tabOptions";
            this.tabOptions.Size = new System.Drawing.Size(772, 596);
            this.tabOptions.TabIndex = 3;
            this.tabOptions.Text = "Options";
            this.tabOptions.UseVisualStyleBackColor = true;
            // 
            // groupBox2
            // 
            this.groupBox2.Controls.Add(this.rdoEncodingUnicode);
            this.groupBox2.Controls.Add(this.rdoEncodingUtf8);
            this.groupBox2.Controls.Add(this.rdoEncodingAscii);
            this.groupBox2.Location = new System.Drawing.Point(562, 3);
            this.groupBox2.Name = "groupBox2";
            this.groupBox2.Size = new System.Drawing.Size(200, 131);
            this.groupBox2.TabIndex = 20;
            this.groupBox2.TabStop = false;
            this.groupBox2.Text = "Encoding";
            // 
            // rdoEncodingUnicode
            // 
            this.rdoEncodingUnicode.AutoSize = true;
            this.rdoEncodingUnicode.Location = new System.Drawing.Point(16, 43);
            this.rdoEncodingUnicode.Name = "rdoEncodingUnicode";
            this.rdoEncodingUnicode.Size = new System.Drawing.Size(65, 17);
            this.rdoEncodingUnicode.TabIndex = 24;
            this.rdoEncodingUnicode.Text = "Unicode";
            this.rdoEncodingUnicode.UseVisualStyleBackColor = true;
            // 
            // rdoEncodingUtf8
            // 
            this.rdoEncodingUtf8.AutoSize = true;
            this.rdoEncodingUtf8.Location = new System.Drawing.Point(16, 66);
            this.rdoEncodingUtf8.Name = "rdoEncodingUtf8";
            this.rdoEncodingUtf8.Size = new System.Drawing.Size(52, 17);
            this.rdoEncodingUtf8.TabIndex = 23;
            this.rdoEncodingUtf8.Text = "UTF8";
            this.rdoEncodingUtf8.UseVisualStyleBackColor = true;
            // 
            // rdoEncodingAscii
            // 
            this.rdoEncodingAscii.AutoSize = true;
            this.rdoEncodingAscii.Checked = true;
            this.rdoEncodingAscii.Location = new System.Drawing.Point(16, 20);
            this.rdoEncodingAscii.Name = "rdoEncodingAscii";
            this.rdoEncodingAscii.Size = new System.Drawing.Size(52, 17);
            this.rdoEncodingAscii.TabIndex = 22;
            this.rdoEncodingAscii.TabStop = true;
            this.rdoEncodingAscii.Text = "ASCII";
            this.rdoEncodingAscii.UseVisualStyleBackColor = true;
            // 
            // groupBox5
            // 
            this.groupBox5.Controls.Add(this.chkChecks);
            this.groupBox5.Controls.Add(this.chkDefaults);
            this.groupBox5.Controls.Add(this.chkProcedures);
            this.groupBox5.Controls.Add(this.chkViews);
            this.groupBox5.Controls.Add(this.chkFunctions);
            this.groupBox5.Controls.Add(this.chkAggregates);
            this.groupBox5.Controls.Add(this.chkSchemas);
            this.groupBox5.Controls.Add(this.chkAssemblies);
            this.groupBox5.Controls.Add(this.chkSynonyms);
            this.groupBox5.Controls.Add(this.chkTables);
            this.groupBox5.Controls.Add(this.chkInsert);
            this.groupBox5.Controls.Add(this.chkPermissions);
            this.groupBox5.Controls.Add(this.chkIndexes);
            this.groupBox5.Controls.Add(this.chkForeignKeys);
            this.groupBox5.Controls.Add(this.chkExistence);
            this.groupBox5.Controls.Add(this.chkDrop);
            this.groupBox5.Controls.Add(this.chkCreate);
            this.groupBox5.Controls.Add(this.chkIncludeHeaders);
            this.groupBox5.Controls.Add(this.chkSchemaQualify);
            this.groupBox5.Controls.Add(this.chkCollation);
            this.groupBox5.Location = new System.Drawing.Point(9, 154);
            this.groupBox5.Name = "groupBox5";
            this.groupBox5.Size = new System.Drawing.Size(753, 437);
            this.groupBox5.TabIndex = 19;
            this.groupBox5.TabStop = false;
            this.groupBox5.Text = "Script Options";
            // 
            // chkChecks
            // 
            this.chkChecks.AutoSize = true;
            this.chkChecks.Checked = true;
            this.chkChecks.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkChecks.Location = new System.Drawing.Point(14, 258);
            this.chkChecks.Name = "chkChecks";
            this.chkChecks.Size = new System.Drawing.Size(91, 17);
            this.chkChecks.TabIndex = 30;
            this.chkChecks.Text = "Script checks";
            this.chkChecks.UseVisualStyleBackColor = true;
            // 
            // chkDefaults
            // 
            this.chkDefaults.AutoSize = true;
            this.chkDefaults.Checked = true;
            this.chkDefaults.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkDefaults.Location = new System.Drawing.Point(14, 235);
            this.chkDefaults.Name = "chkDefaults";
            this.chkDefaults.Size = new System.Drawing.Size(93, 17);
            this.chkDefaults.TabIndex = 29;
            this.chkDefaults.Text = "Script defaults";
            this.chkDefaults.UseVisualStyleBackColor = true;
            // 
            // chkProcedures
            // 
            this.chkProcedures.AutoSize = true;
            this.chkProcedures.Checked = true;
            this.chkProcedures.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkProcedures.Location = new System.Drawing.Point(14, 212);
            this.chkProcedures.Name = "chkProcedures";
            this.chkProcedures.Size = new System.Drawing.Size(141, 17);
            this.chkProcedures.TabIndex = 28;
            this.chkProcedures.Text = "Script stored procedures";
            this.chkProcedures.UseVisualStyleBackColor = true;
            // 
            // chkViews
            // 
            this.chkViews.AutoSize = true;
            this.chkViews.Checked = true;
            this.chkViews.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkViews.Location = new System.Drawing.Point(14, 189);
            this.chkViews.Name = "chkViews";
            this.chkViews.Size = new System.Drawing.Size(83, 17);
            this.chkViews.TabIndex = 27;
            this.chkViews.Text = "Script views";
            this.chkViews.UseVisualStyleBackColor = true;
            // 
            // chkFunctions
            // 
            this.chkFunctions.AutoSize = true;
            this.chkFunctions.Checked = true;
            this.chkFunctions.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkFunctions.Location = new System.Drawing.Point(14, 166);
            this.chkFunctions.Name = "chkFunctions";
            this.chkFunctions.Size = new System.Drawing.Size(99, 17);
            this.chkFunctions.TabIndex = 26;
            this.chkFunctions.Text = "Script functions";
            this.chkFunctions.UseVisualStyleBackColor = true;
            // 
            // chkAggregates
            // 
            this.chkAggregates.AutoSize = true;
            this.chkAggregates.Checked = true;
            this.chkAggregates.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkAggregates.Location = new System.Drawing.Point(14, 143);
            this.chkAggregates.Name = "chkAggregates";
            this.chkAggregates.Size = new System.Drawing.Size(109, 17);
            this.chkAggregates.TabIndex = 25;
            this.chkAggregates.Text = "Script aggregates";
            this.chkAggregates.UseVisualStyleBackColor = true;
            // 
            // chkSchemas
            // 
            this.chkSchemas.AutoSize = true;
            this.chkSchemas.Checked = true;
            this.chkSchemas.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkSchemas.Location = new System.Drawing.Point(14, 28);
            this.chkSchemas.Name = "chkSchemas";
            this.chkSchemas.Size = new System.Drawing.Size(98, 17);
            this.chkSchemas.TabIndex = 24;
            this.chkSchemas.Text = "Script schemas";
            this.chkSchemas.UseVisualStyleBackColor = true;
            // 
            // chkAssemblies
            // 
            this.chkAssemblies.AutoSize = true;
            this.chkAssemblies.Checked = true;
            this.chkAssemblies.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkAssemblies.Location = new System.Drawing.Point(14, 51);
            this.chkAssemblies.Name = "chkAssemblies";
            this.chkAssemblies.Size = new System.Drawing.Size(107, 17);
            this.chkAssemblies.TabIndex = 23;
            this.chkAssemblies.Text = "Script assemblies";
            this.chkAssemblies.UseVisualStyleBackColor = true;
            // 
            // chkSynonyms
            // 
            this.chkSynonyms.AutoSize = true;
            this.chkSynonyms.Checked = true;
            this.chkSynonyms.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkSynonyms.Location = new System.Drawing.Point(14, 74);
            this.chkSynonyms.Name = "chkSynonyms";
            this.chkSynonyms.Size = new System.Drawing.Size(102, 17);
            this.chkSynonyms.TabIndex = 22;
            this.chkSynonyms.Text = "Script synonyms";
            this.chkSynonyms.UseVisualStyleBackColor = true;
            // 
            // chkTables
            // 
            this.chkTables.AutoSize = true;
            this.chkTables.Checked = true;
            this.chkTables.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkTables.Location = new System.Drawing.Point(14, 97);
            this.chkTables.Name = "chkTables";
            this.chkTables.Size = new System.Drawing.Size(84, 17);
            this.chkTables.TabIndex = 21;
            this.chkTables.Text = "Script tables";
            this.chkTables.UseVisualStyleBackColor = true;
            // 
            // chkInsert
            // 
            this.chkInsert.AutoSize = true;
            this.chkInsert.Location = new System.Drawing.Point(416, 74);
            this.chkInsert.Name = "chkInsert";
            this.chkInsert.Size = new System.Drawing.Size(126, 17);
            this.chkInsert.TabIndex = 20;
            this.chkInsert.Text = "Script INSERT (data)";
            this.chkInsert.UseVisualStyleBackColor = true;
            // 
            // chkPermissions
            // 
            this.chkPermissions.AutoSize = true;
            this.chkPermissions.Location = new System.Drawing.Point(205, 120);
            this.chkPermissions.Name = "chkPermissions";
            this.chkPermissions.Size = new System.Drawing.Size(167, 17);
            this.chkPermissions.TabIndex = 19;
            this.chkPermissions.Text = "Script object-level permissions";
            this.chkPermissions.UseVisualStyleBackColor = true;
            // 
            // chkIndexes
            // 
            this.chkIndexes.AutoSize = true;
            this.chkIndexes.Checked = true;
            this.chkIndexes.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkIndexes.Location = new System.Drawing.Point(14, 120);
            this.chkIndexes.Name = "chkIndexes";
            this.chkIndexes.Size = new System.Drawing.Size(92, 17);
            this.chkIndexes.TabIndex = 18;
            this.chkIndexes.Text = "Script indexes";
            this.chkIndexes.UseVisualStyleBackColor = true;
            // 
            // chkForeignKeys
            // 
            this.chkForeignKeys.AutoSize = true;
            this.chkForeignKeys.Checked = true;
            this.chkForeignKeys.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkForeignKeys.Location = new System.Drawing.Point(14, 281);
            this.chkForeignKeys.Name = "chkForeignKeys";
            this.chkForeignKeys.Size = new System.Drawing.Size(113, 17);
            this.chkForeignKeys.TabIndex = 17;
            this.chkForeignKeys.Text = "Script foreign keys";
            this.chkForeignKeys.UseVisualStyleBackColor = true;
            // 
            // chkExistence
            // 
            this.chkExistence.AutoSize = true;
            this.chkExistence.Location = new System.Drawing.Point(205, 74);
            this.chkExistence.Name = "chkExistence";
            this.chkExistence.Size = new System.Drawing.Size(140, 17);
            this.chkExistence.TabIndex = 16;
            this.chkExistence.Text = "Include IF NOT EXISTS";
            this.chkExistence.UseVisualStyleBackColor = true;
            // 
            // chkDrop
            // 
            this.chkDrop.AutoSize = true;
            this.chkDrop.Location = new System.Drawing.Point(416, 51);
            this.chkDrop.Name = "chkDrop";
            this.chkDrop.Size = new System.Drawing.Size(87, 17);
            this.chkDrop.TabIndex = 15;
            this.chkDrop.Text = "Script DROP";
            this.chkDrop.UseVisualStyleBackColor = true;
            // 
            // chkCreate
            // 
            this.chkCreate.AutoSize = true;
            this.chkCreate.Checked = true;
            this.chkCreate.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkCreate.Location = new System.Drawing.Point(416, 28);
            this.chkCreate.Name = "chkCreate";
            this.chkCreate.Size = new System.Drawing.Size(99, 17);
            this.chkCreate.TabIndex = 14;
            this.chkCreate.Text = "Script CREATE";
            this.chkCreate.UseVisualStyleBackColor = true;
            // 
            // chkIncludeHeaders
            // 
            this.chkIncludeHeaders.AutoSize = true;
            this.chkIncludeHeaders.Checked = true;
            this.chkIncludeHeaders.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkIncludeHeaders.Location = new System.Drawing.Point(205, 28);
            this.chkIncludeHeaders.Name = "chkIncludeHeaders";
            this.chkIncludeHeaders.Size = new System.Drawing.Size(156, 17);
            this.chkIncludeHeaders.TabIndex = 13;
            this.chkIncludeHeaders.Text = "Include descriptive headers";
            this.chkIncludeHeaders.UseVisualStyleBackColor = true;
            // 
            // chkSchemaQualify
            // 
            this.chkSchemaQualify.AutoSize = true;
            this.chkSchemaQualify.Checked = true;
            this.chkSchemaQualify.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkSchemaQualify.Location = new System.Drawing.Point(205, 97);
            this.chkSchemaQualify.Name = "chkSchemaQualify";
            this.chkSchemaQualify.Size = new System.Drawing.Size(164, 17);
            this.chkSchemaQualify.TabIndex = 1;
            this.chkSchemaQualify.Text = "Schema-qualify object names";
            this.chkSchemaQualify.UseVisualStyleBackColor = true;
            // 
            // chkCollation
            // 
            this.chkCollation.AutoSize = true;
            this.chkCollation.Location = new System.Drawing.Point(205, 51);
            this.chkCollation.Name = "chkCollation";
            this.chkCollation.Size = new System.Drawing.Size(95, 17);
            this.chkCollation.TabIndex = 0;
            this.chkCollation.Text = "Script collation";
            this.chkCollation.UseVisualStyleBackColor = true;
            // 
            // groupBox4
            // 
            this.groupBox4.Controls.Add(this.rdoOneFilePerObject);
            this.groupBox4.Controls.Add(this.btnPickDirectory);
            this.groupBox4.Controls.Add(this.label5);
            this.groupBox4.Controls.Add(this.txtSaveLocation);
            this.groupBox4.Controls.Add(this.rdoOneFile);
            this.groupBox4.Controls.Add(this.rdoNoFiles);
            this.groupBox4.Location = new System.Drawing.Point(9, 3);
            this.groupBox4.Name = "groupBox4";
            this.groupBox4.Size = new System.Drawing.Size(542, 131);
            this.groupBox4.TabIndex = 18;
            this.groupBox4.TabStop = false;
            this.groupBox4.Text = "File Options";
            // 
            // rdoOneFilePerObject
            // 
            this.rdoOneFilePerObject.AutoSize = true;
            this.rdoOneFilePerObject.Location = new System.Drawing.Point(14, 66);
            this.rdoOneFilePerObject.Name = "rdoOneFilePerObject";
            this.rdoOneFilePerObject.Size = new System.Drawing.Size(143, 17);
            this.rdoOneFilePerObject.TabIndex = 2;
            this.rdoOneFilePerObject.Text = "Single file per object type";
            this.rdoOneFilePerObject.UseVisualStyleBackColor = true;
            this.rdoOneFilePerObject.CheckedChanged += new System.EventHandler(this.rdoOneFilePerObject_CheckedChanged);
            // 
            // btnPickDirectory
            // 
            this.btnPickDirectory.Location = new System.Drawing.Point(501, 96);
            this.btnPickDirectory.Name = "btnPickDirectory";
            this.btnPickDirectory.Size = new System.Drawing.Size(26, 23);
            this.btnPickDirectory.TabIndex = 16;
            this.btnPickDirectory.Text = "...";
            this.btnPickDirectory.UseVisualStyleBackColor = true;
            this.btnPickDirectory.Click += new System.EventHandler(this.btnPickDirectory_Click);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(3, 101);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(51, 13);
            this.label5.TabIndex = 17;
            this.label5.Text = "Location:";
            // 
            // txtSaveLocation
            // 
            this.txtSaveLocation.Location = new System.Drawing.Point(60, 98);
            this.txtSaveLocation.Name = "txtSaveLocation";
            this.txtSaveLocation.Size = new System.Drawing.Size(435, 20);
            this.txtSaveLocation.TabIndex = 15;
            // 
            // rdoOneFile
            // 
            this.rdoOneFile.AutoSize = true;
            this.rdoOneFile.Location = new System.Drawing.Point(14, 43);
            this.rdoOneFile.Name = "rdoOneFile";
            this.rdoOneFile.Size = new System.Drawing.Size(70, 17);
            this.rdoOneFile.TabIndex = 1;
            this.rdoOneFile.Text = "Single file";
            this.rdoOneFile.UseVisualStyleBackColor = true;
            this.rdoOneFile.CheckedChanged += new System.EventHandler(this.rdoOneFile_CheckedChanged);
            // 
            // rdoNoFiles
            // 
            this.rdoNoFiles.AutoSize = true;
            this.rdoNoFiles.Checked = true;
            this.rdoNoFiles.Location = new System.Drawing.Point(14, 20);
            this.rdoNoFiles.Name = "rdoNoFiles";
            this.rdoNoFiles.Size = new System.Drawing.Size(60, 17);
            this.rdoNoFiles.TabIndex = 0;
            this.rdoNoFiles.TabStop = true;
            this.rdoNoFiles.Text = "No files";
            this.rdoNoFiles.UseVisualStyleBackColor = true;
            this.rdoNoFiles.CheckedChanged += new System.EventHandler(this.rdoNoFiles_CheckedChanged);
            // 
            // tabResult
            // 
            this.tabResult.Controls.Add(this.btnCopyClipboard);
            this.tabResult.Controls.Add(this.btnSaveAs);
            this.tabResult.Controls.Add(this.txtResult);
            this.tabResult.Location = new System.Drawing.Point(4, 22);
            this.tabResult.Name = "tabResult";
            this.tabResult.Size = new System.Drawing.Size(772, 596);
            this.tabResult.TabIndex = 2;
            this.tabResult.Text = "Output";
            this.tabResult.UseVisualStyleBackColor = true;
            // 
            // btnCopyClipboard
            // 
            this.btnCopyClipboard.Location = new System.Drawing.Point(3, 571);
            this.btnCopyClipboard.Name = "btnCopyClipboard";
            this.btnCopyClipboard.Size = new System.Drawing.Size(135, 21);
            this.btnCopyClipboard.TabIndex = 2;
            this.btnCopyClipboard.Text = "&Copy to Clipboard";
            this.btnCopyClipboard.UseVisualStyleBackColor = true;
            this.btnCopyClipboard.Click += new System.EventHandler(this.btnCopyClipboard_Click);
            // 
            // btnSaveAs
            // 
            this.btnSaveAs.Location = new System.Drawing.Point(144, 571);
            this.btnSaveAs.Name = "btnSaveAs";
            this.btnSaveAs.Size = new System.Drawing.Size(75, 21);
            this.btnSaveAs.TabIndex = 1;
            this.btnSaveAs.Text = "Save &As...";
            this.btnSaveAs.UseVisualStyleBackColor = true;
            this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
            // 
            // txtResult
            // 
            this.txtResult.Location = new System.Drawing.Point(3, 3);
            this.txtResult.Multiline = true;
            this.txtResult.Name = "txtResult";
            this.txtResult.ScrollBars = System.Windows.Forms.ScrollBars.Both;
            this.txtResult.Size = new System.Drawing.Size(766, 562);
            this.txtResult.TabIndex = 0;
            this.txtResult.WordWrap = false;
            this.txtResult.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtResult_KeyPress);
            // 
            // btnCancel
            // 
            this.btnCancel.Location = new System.Drawing.Point(703, 655);
            this.btnCancel.Name = "btnCancel";
            this.btnCancel.Size = new System.Drawing.Size(75, 23);
            this.btnCancel.TabIndex = 1;
            this.btnCancel.Text = "&Exit";
            this.btnCancel.UseVisualStyleBackColor = true;
            this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
            // 
            // btnScript
            // 
            this.btnScript.Location = new System.Drawing.Point(622, 655);
            this.btnScript.Name = "btnScript";
            this.btnScript.Size = new System.Drawing.Size(75, 23);
            this.btnScript.TabIndex = 2;
            this.btnScript.Text = "&Script";
            this.btnScript.UseVisualStyleBackColor = true;
            this.btnScript.Click += new System.EventHandler(this.btnScript_Click);
            // 
            // statusStrip1
            // 
            this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.progress,
            this.status});
            this.statusStrip1.Location = new System.Drawing.Point(0, 686);
            this.statusStrip1.Name = "statusStrip1";
            this.statusStrip1.Size = new System.Drawing.Size(804, 22);
            this.statusStrip1.SizingGrip = false;
            this.statusStrip1.TabIndex = 4;
            this.statusStrip1.Text = "statusStrip1";
            // 
            // progress
            // 
            this.progress.Name = "progress";
            this.progress.Size = new System.Drawing.Size(200, 16);
            // 
            // status
            // 
            this.status.AutoSize = false;
            this.status.Name = "status";
            this.status.Size = new System.Drawing.Size(300, 17);
            this.status.Text = "Ready";
            this.status.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            // 
            // saveFileDialog1
            // 
            this.saveFileDialog1.DefaultExt = "sql";
            this.saveFileDialog1.Filter = "SQL scripts (*.sql)|*.sql|Stored Procedure scripts (*.prc)|*.prc|View scripts (*." +
    "viw)|*.viw|UDF scripts (*.udf)|*.udf|Table scripts (*.tab)|*.tab|Trigger scripts" +
    " (*.trg)|*.trg|All files (*.*)|*.*";
            // 
            // menuStrip1
            // 
            this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.fileToolStripMenuItem});
            this.menuStrip1.Location = new System.Drawing.Point(0, 0);
            this.menuStrip1.Name = "menuStrip1";
            this.menuStrip1.Size = new System.Drawing.Size(804, 24);
            this.menuStrip1.TabIndex = 5;
            this.menuStrip1.Text = "menuStrip1";
            // 
            // fileToolStripMenuItem
            // 
            this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.exitToolStripMenuItem});
            this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
            this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
            this.fileToolStripMenuItem.Text = "&File";
            // 
            // exitToolStripMenuItem
            // 
            this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
            this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
            this.exitToolStripMenuItem.Text = "&Exit";
            // 
            // ObjectCreator
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(804, 708);
            this.Controls.Add(this.statusStrip1);
            this.Controls.Add(this.menuStrip1);
            this.Controls.Add(this.btnScript);
            this.Controls.Add(this.btnCancel);
            this.Controls.Add(this.tabControl1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MainMenuStrip = this.menuStrip1;
            this.MaximizeBox = false;
            this.MaximumSize = new System.Drawing.Size(814, 740);
            this.MinimizeBox = false;
            this.MinimumSize = new System.Drawing.Size(814, 740);
            this.Name = "ObjectCreator";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Siphon - SQL Object Creator";
            this.Load += new System.EventHandler(this.ObjectCreator_Load);
            this.tabControl1.ResumeLayout(false);
            this.tabObjects.ResumeLayout(false);
            this.groupBox3.ResumeLayout(false);
            this.groupBox3.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.dgAvailableObjects)).EndInit();
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.tabOptions.ResumeLayout(false);
            this.groupBox2.ResumeLayout(false);
            this.groupBox2.PerformLayout();
            this.groupBox5.ResumeLayout(false);
            this.groupBox5.PerformLayout();
            this.groupBox4.ResumeLayout(false);
            this.groupBox4.PerformLayout();
            this.tabResult.ResumeLayout(false);
            this.tabResult.PerformLayout();
            this.statusStrip1.ResumeLayout(false);
            this.statusStrip1.PerformLayout();
            this.menuStrip1.ResumeLayout(false);
            this.menuStrip1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TabControl tabControl1;
        private System.Windows.Forms.TabPage tabObjects;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox txtServerName;
        private System.Windows.Forms.Button btnCancel;
        private System.Windows.Forms.Button btnScript;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.CheckBox chkUseWindowsAuthentication;
        private System.Windows.Forms.Button btnConnect;
        private System.Windows.Forms.TabPage tabResult;
        private System.Windows.Forms.TextBox txtResult;
        private System.Windows.Forms.DataGridView dgAvailableObjects;
        private System.Windows.Forms.StatusStrip statusStrip1;
        private System.Windows.Forms.ToolStripProgressBar progress;
        private System.Windows.Forms.ToolStripStatusLabel status;
        private System.Windows.Forms.GroupBox groupBox3;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox txtPassword;
        private System.Windows.Forms.TextBox txtUsername;
        private System.Windows.Forms.SaveFileDialog saveFileDialog1;
        private System.Windows.Forms.Button btnSaveAs;
        private System.Windows.Forms.FolderBrowserDialog folderBrowserDialog1;
        private System.Windows.Forms.TabPage tabOptions;
        private System.Windows.Forms.GroupBox groupBox4;
        private System.Windows.Forms.RadioButton rdoOneFilePerObject;
        private System.Windows.Forms.RadioButton rdoOneFile;
        private System.Windows.Forms.RadioButton rdoNoFiles;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Button btnPickDirectory;
        private System.Windows.Forms.TextBox txtSaveLocation;
        private System.Windows.Forms.Button btnCopyClipboard;
        private System.Windows.Forms.Label label7;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.MenuStrip menuStrip1;
        private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem;
        private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem;
        private System.Windows.Forms.GroupBox groupBox5;
        private System.Windows.Forms.CheckBox chkCollation;
		private System.Windows.Forms.CheckBox chkSchemaQualify;
        private System.Windows.Forms.CheckedListBox clbType;
        private System.Windows.Forms.CheckedListBox clbSchema;
        private System.Windows.Forms.CheckBox chkPermissions;
        private System.Windows.Forms.CheckBox chkIndexes;
        private System.Windows.Forms.CheckBox chkForeignKeys;
        private System.Windows.Forms.CheckBox chkExistence;
        private System.Windows.Forms.CheckBox chkDrop;
        private System.Windows.Forms.CheckBox chkCreate;
        private System.Windows.Forms.CheckBox chkIncludeHeaders;
        private System.Windows.Forms.CheckBox chkInsert;
        private System.Windows.Forms.GroupBox groupBox2;
        private System.Windows.Forms.RadioButton rdoEncodingUnicode;
        private System.Windows.Forms.RadioButton rdoEncodingUtf8;
        private System.Windows.Forms.RadioButton rdoEncodingAscii;
        private System.Windows.Forms.ComboBox ddlDatabases;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.CheckBox chkScriptAll;
		private System.Windows.Forms.CheckBox chkChecks;
		private System.Windows.Forms.CheckBox chkDefaults;
		private System.Windows.Forms.CheckBox chkProcedures;
		private System.Windows.Forms.CheckBox chkViews;
		private System.Windows.Forms.CheckBox chkFunctions;
		private System.Windows.Forms.CheckBox chkAggregates;
		private System.Windows.Forms.CheckBox chkSchemas;
		private System.Windows.Forms.CheckBox chkAssemblies;
		private System.Windows.Forms.CheckBox chkSynonyms;
		private System.Windows.Forms.CheckBox chkTables;

        
    }
}

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
Chief Technology Officer Shift iQ
Canada Canada
I have been building software systems for more than 20 years, working for organizations that range from small non-profit associations in my local community to global Fortune 500 enterprises.

I specialize in the design and implementation of online database solutions. My work-related research interests include software design patterns and information architecture.

Comments and Discussions