#region License Information /* HeuristicLab * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL) * * This file is part of HeuristicLab. * * HeuristicLab is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * HeuristicLab is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with HeuristicLab. If not, see . */ #endregion namespace HeuristicLab.DataImporter.Backend.Csv { partial class CsvImporterView { /// /// 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.chbIncludeColumnNames = new System.Windows.Forms.CheckBox(); this.btnBrowse = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.txtFileName = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.txtDelimiter = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // chbIncludeColumnNames // this.chbIncludeColumnNames.AutoSize = true; this.chbIncludeColumnNames.Checked = true; this.chbIncludeColumnNames.CheckState = System.Windows.Forms.CheckState.Checked; this.chbIncludeColumnNames.Location = new System.Drawing.Point(54, 56); this.chbIncludeColumnNames.Name = "chbIncludeColumnNames"; this.chbIncludeColumnNames.Size = new System.Drawing.Size(151, 17); this.chbIncludeColumnNames.TabIndex = 3; this.chbIncludeColumnNames.Text = "Column names in first row?"; this.chbIncludeColumnNames.UseVisualStyleBackColor = true; // // btnBrowse // this.btnBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.btnBrowse.Location = new System.Drawing.Point(323, 3); this.btnBrowse.Name = "btnBrowse"; this.btnBrowse.Size = new System.Drawing.Size(75, 23); this.btnBrowse.TabIndex = 17; this.btnBrowse.Text = "Browse"; this.btnBrowse.UseVisualStyleBackColor = true; this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(1, 7); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(49, 13); this.label1.TabIndex = 16; this.label1.Text = "Filename"; // // txtFileName // this.txtFileName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtFileName.Location = new System.Drawing.Point(54, 4); this.txtFileName.Name = "txtFileName"; this.txtFileName.Size = new System.Drawing.Size(263, 20); this.txtFileName.TabIndex = 15; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(1, 33); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(47, 13); this.label2.TabIndex = 21; this.label2.Text = "Delimiter"; // // txtDelimiter // this.txtDelimiter.Location = new System.Drawing.Point(54, 30); this.txtDelimiter.MaxLength = 1; this.txtDelimiter.Name = "txtDelimiter"; this.txtDelimiter.Size = new System.Drawing.Size(66, 20); this.txtDelimiter.TabIndex = 20; // // CsvImporterView // this.Controls.Add(this.label2); this.Controls.Add(this.txtDelimiter); this.Controls.Add(this.btnBrowse); this.Controls.Add(this.label1); this.Controls.Add(this.txtFileName); this.Controls.Add(this.chbIncludeColumnNames); this.Name = "CsvImporterView"; this.Size = new System.Drawing.Size(400, 83); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.CheckBox chbIncludeColumnNames; private System.Windows.Forms.Button btnBrowse; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtFileName; private System.Windows.Forms.Label label2; private System.Windows.Forms.TextBox txtDelimiter; } }