namespace ExcelDataReaderDemo { partial class DemoForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.grpData = new System.Windows.Forms.GroupBox(); this.grdActiveSheet = new System.Windows.Forms.DataGridView(); this.cboSheet = new System.Windows.Forms.ComboBox(); this.lblSheet = new System.Windows.Forms.Label(); this.cmdLoad = new System.Windows.Forms.Button(); this.openDialog = new System.Windows.Forms.OpenFileDialog(); this.grpData.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdActiveSheet)).BeginInit(); this.SuspendLayout(); // // grpData // this.grpData.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.grpData.Controls.Add(this.lblSheet); this.grpData.Controls.Add(this.cboSheet); this.grpData.Controls.Add(this.grdActiveSheet); this.grpData.Enabled = false; this.grpData.Location = new System.Drawing.Point(12, 42); this.grpData.Name = "grpData"; this.grpData.Size = new System.Drawing.Size(572, 253); this.grpData.TabIndex = 0; this.grpData.TabStop = false; this.grpData.Text = "Excel data"; // // grdActiveSheet // this.grdActiveSheet.AllowUserToAddRows = false; this.grdActiveSheet.AllowUserToDeleteRows = false; this.grdActiveSheet.AllowUserToResizeRows = false; this.grdActiveSheet.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.grdActiveSheet.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.grdActiveSheet.Location = new System.Drawing.Point(6, 46); this.grdActiveSheet.Name = "grdActiveSheet"; this.grdActiveSheet.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing; this.grdActiveSheet.Size = new System.Drawing.Size(560, 201); this.grdActiveSheet.TabIndex = 0; // // cboSheet // this.cboSheet.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.cboSheet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cboSheet.FormattingEnabled = true; this.cboSheet.Location = new System.Drawing.Point(50, 19); this.cboSheet.Name = "cboSheet"; this.cboSheet.Size = new System.Drawing.Size(516, 21); this.cboSheet.TabIndex = 1; this.cboSheet.SelectedIndexChanged += new System.EventHandler(this.cboSheet_SelectedIndexChanged); // // lblSheet // this.lblSheet.AutoSize = true; this.lblSheet.Location = new System.Drawing.Point(6, 22); this.lblSheet.Name = "lblSheet"; this.lblSheet.Size = new System.Drawing.Size(38, 13); this.lblSheet.TabIndex = 2; this.lblSheet.Text = "Sheet:"; // // cmdLoad // this.cmdLoad.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.cmdLoad.Location = new System.Drawing.Point(12, 12); this.cmdLoad.Name = "cmdLoad"; this.cmdLoad.Size = new System.Drawing.Size(572, 24); this.cmdLoad.TabIndex = 1; this.cmdLoad.Text = "Load Excel file"; this.cmdLoad.UseVisualStyleBackColor = true; this.cmdLoad.Click += new System.EventHandler(this.cmdLoad_Click); // // openDialog // this.openDialog.DefaultExt = "xls"; this.openDialog.Filter = "Excel files|*.xls"; this.openDialog.Title = "Choose an Excel file to open"; // // DemoForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(596, 307); this.Controls.Add(this.cmdLoad); this.Controls.Add(this.grpData); this.Name = "DemoForm"; this.Text = "Form1"; this.grpData.ResumeLayout(false); this.grpData.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.grdActiveSheet)).EndInit(); this.ResumeLayout(false); } #endregion private System.Windows.Forms.GroupBox grpData; private System.Windows.Forms.DataGridView grdActiveSheet; private System.Windows.Forms.Label lblSheet; private System.Windows.Forms.ComboBox cboSheet; private System.Windows.Forms.Button cmdLoad; private System.Windows.Forms.OpenFileDialog openDialog; } }