/* * Created by SharpDevelop. * User: simpsont * Date: 30/10/2006 * Time: 3:38 PM * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ namespace Browser { partial class MainForm : System.Windows.Forms.Form { /// /// Designer variable used to keep track of non-visual components. /// private System.ComponentModel.IContainer components = null; /// /// Disposes resources used by the form. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing) { if (components != null) { components.Dispose(); } } base.Dispose(disposing); } /// /// This method is required for Windows Forms designer support. /// Do not change the method contents inside the source code editor. The Forms designer might /// not be able to load this method if it was changed manually. /// private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); this.statusStrip1 = new System.Windows.Forms.StatusStrip(); this.StatusText = new System.Windows.Forms.ToolStripStatusLabel(); this.splitContainer1 = new System.Windows.Forms.SplitContainer(); this.splitContainer2 = new System.Windows.Forms.SplitContainer(); this.btnExecute = new System.Windows.Forms.Button(); this.sqlEditor = new ICSharpCode.TextEditor.TextEditorControl(); this.dataGridView1 = new System.Windows.Forms.DataGridView(); this.dataSet1 = new System.Data.DataSet(); this.sqlConnection1 = new System.Data.SqlClient.SqlConnection(); this.sqlDataAdapter1 = new System.Data.SqlClient.SqlDataAdapter(); this.imageList1 = new System.Windows.Forms.ImageList(this.components); this.statusStrip1.SuspendLayout(); this.splitContainer1.Panel1.SuspendLayout(); this.splitContainer1.Panel2.SuspendLayout(); this.splitContainer1.SuspendLayout(); this.splitContainer2.Panel2.SuspendLayout(); this.splitContainer2.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit(); this.SuspendLayout(); // // statusStrip1 // this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.StatusText}); this.statusStrip1.Location = new System.Drawing.Point(0, 403); this.statusStrip1.Name = "statusStrip1"; this.statusStrip1.Size = new System.Drawing.Size(799, 22); this.statusStrip1.TabIndex = 0; this.statusStrip1.Text = "statusStrip1"; // // StatusText // this.StatusText.Name = "StatusText"; this.StatusText.Size = new System.Drawing.Size(0, 17); // // splitContainer1 // this.splitContainer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer1.Location = new System.Drawing.Point(0, 0); this.splitContainer1.Name = "splitContainer1"; this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal; // // splitContainer1.Panel1 // this.splitContainer1.Panel1.Controls.Add(this.splitContainer2); // // splitContainer1.Panel2 // this.splitContainer1.Panel2.Controls.Add(this.dataGridView1); this.splitContainer1.Size = new System.Drawing.Size(799, 403); this.splitContainer1.SplitterDistance = 266; this.splitContainer1.TabIndex = 1; // // splitContainer2 // this.splitContainer2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill; this.splitContainer2.Location = new System.Drawing.Point(0, 0); this.splitContainer2.Name = "splitContainer2"; // // splitContainer2.Panel2 // this.splitContainer2.Panel2.Controls.Add(this.btnExecute); this.splitContainer2.Panel2.Controls.Add(this.sqlEditor); this.splitContainer2.Size = new System.Drawing.Size(799, 266); this.splitContainer2.SplitterDistance = 266; this.splitContainer2.TabIndex = 3; // // btnExecute // this.btnExecute.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.btnExecute.Location = new System.Drawing.Point(3, 238); this.btnExecute.Name = "btnExecute"; this.btnExecute.Size = new System.Drawing.Size(75, 23); this.btnExecute.TabIndex = 1; this.btnExecute.Text = "Execute"; this.btnExecute.UseVisualStyleBackColor = true; this.btnExecute.Click += new System.EventHandler(this.BtnExecuteClick); // // sqlEditor // this.sqlEditor.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.sqlEditor.IsIconBarVisible = false; this.sqlEditor.Location = new System.Drawing.Point(3, 3); this.sqlEditor.Name = "sqlEditor"; this.sqlEditor.ShowEOLMarkers = true; this.sqlEditor.ShowInvalidLines = false; this.sqlEditor.ShowSpaces = true; this.sqlEditor.ShowTabs = true; this.sqlEditor.ShowVRuler = true; this.sqlEditor.Size = new System.Drawing.Size(521, 231); this.sqlEditor.TabIndex = 0; // // dataGridView1 // this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.dataGridView1.Location = new System.Drawing.Point(3, 3); this.dataGridView1.Name = "dataGridView1"; this.dataGridView1.Size = new System.Drawing.Size(791, 125); this.dataGridView1.TabIndex = 2; // // dataSet1 // this.dataSet1.DataSetName = "NewDataSet"; // // sqlConnection1 // this.sqlConnection1.FireInfoMessageEventOnUserErrors = false; // // imageList1 // this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream"))); this.imageList1.TransparentColor = System.Drawing.Color.White; this.imageList1.Images.SetKeyName(0, "tablerow.gif"); this.imageList1.Images.SetKeyName(1, "ok.gif"); this.imageList1.Images.SetKeyName(2, "wait.gif"); this.imageList1.Images.SetKeyName(3, "warning.gif"); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(799, 425); this.Controls.Add(this.splitContainer1); this.Controls.Add(this.statusStrip1); this.Name = "MainForm"; this.Text = "Browser"; this.Load += new System.EventHandler(this.MainFormLoad); this.statusStrip1.ResumeLayout(false); this.statusStrip1.PerformLayout(); this.splitContainer1.Panel1.ResumeLayout(false); this.splitContainer1.Panel2.ResumeLayout(false); this.splitContainer1.ResumeLayout(false); this.splitContainer2.Panel2.ResumeLayout(false); this.splitContainer2.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } private System.Windows.Forms.ToolStripStatusLabel StatusText; private ICSharpCode.TextEditor.TextEditorControl sqlEditor; internal System.Windows.Forms.ImageList imageList1; private System.Data.SqlClient.SqlDataAdapter sqlDataAdapter1; private System.Data.SqlClient.SqlConnection sqlConnection1; private System.Data.DataSet dataSet1; private System.Windows.Forms.Button btnExecute; private System.Windows.Forms.DataGridView dataGridView1; private System.Windows.Forms.SplitContainer splitContainer2; private System.Windows.Forms.SplitContainer splitContainer1; private System.Windows.Forms.StatusStrip statusStrip1; } }