using FastReport.Controls;
namespace FastReport.Data.ConnectionEditors
{
partial class CsvConnectionEditor
{
///
/// 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.tbCsvFile = new FastReport.Controls.TextBoxButton();
this.gbSelectDatabase = new System.Windows.Forms.GroupBox();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabFilePreview = new System.Windows.Forms.TabPage();
this.tbFilePreview = new System.Windows.Forms.TextBox();
this.tabDataPreview = new System.Windows.Forms.TabPage();
this.dgvTablePreview = new System.Windows.Forms.DataGridView();
this.cbxDateTimeFormat = new System.Windows.Forms.ComboBox();
this.cbxCurrencyFormat = new System.Windows.Forms.ComboBox();
this.cbxNumberFormat = new System.Windows.Forms.ComboBox();
this.lblDateTimeFormat = new System.Windows.Forms.Label();
this.lblCurrencyFormat = new System.Windows.Forms.Label();
this.lblNumberFormat = new System.Windows.Forms.Label();
this.cbxTryConvertTypes = new System.Windows.Forms.CheckBox();
this.cbxSeparator = new System.Windows.Forms.ComboBox();
this.cbxFieldNames = new System.Windows.Forms.CheckBox();
this.cbxRemoveQuotes = new System.Windows.Forms.CheckBox();
this.cbxCodepage = new System.Windows.Forms.ComboBox();
this.labelCodepage = new System.Windows.Forms.Label();
this.tbSeparator = new System.Windows.Forms.TextBox();
this.labelSeparator = new System.Windows.Forms.Label();
this.labelSelectCsvFile = new System.Windows.Forms.Label();
this.gbSelectDatabase.SuspendLayout();
this.tabControl1.SuspendLayout();
this.tabFilePreview.SuspendLayout();
this.tabDataPreview.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvTablePreview)).BeginInit();
this.SuspendLayout();
//
// tbCsvFile
//
this.tbCsvFile.ButtonText = "";
this.tbCsvFile.Image = null;
this.tbCsvFile.Location = new System.Drawing.Point(12, 40);
this.tbCsvFile.Name = "tbCsvFile";
this.tbCsvFile.Size = new System.Drawing.Size(296, 21);
this.tbCsvFile.TabIndex = 0;
this.tbCsvFile.ButtonClick += new System.EventHandler(this.tbCsvFile_ButtonClick);
//
// gbSelectDatabase
//
this.gbSelectDatabase.Controls.Add(this.tabControl1);
this.gbSelectDatabase.Controls.Add(this.cbxDateTimeFormat);
this.gbSelectDatabase.Controls.Add(this.cbxCurrencyFormat);
this.gbSelectDatabase.Controls.Add(this.cbxNumberFormat);
this.gbSelectDatabase.Controls.Add(this.lblDateTimeFormat);
this.gbSelectDatabase.Controls.Add(this.lblCurrencyFormat);
this.gbSelectDatabase.Controls.Add(this.lblNumberFormat);
this.gbSelectDatabase.Controls.Add(this.cbxTryConvertTypes);
this.gbSelectDatabase.Controls.Add(this.cbxSeparator);
this.gbSelectDatabase.Controls.Add(this.cbxFieldNames);
this.gbSelectDatabase.Controls.Add(this.cbxRemoveQuotes);
this.gbSelectDatabase.Controls.Add(this.cbxCodepage);
this.gbSelectDatabase.Controls.Add(this.labelCodepage);
this.gbSelectDatabase.Controls.Add(this.tbSeparator);
this.gbSelectDatabase.Controls.Add(this.labelSeparator);
this.gbSelectDatabase.Controls.Add(this.labelSelectCsvFile);
this.gbSelectDatabase.Controls.Add(this.tbCsvFile);
this.gbSelectDatabase.Location = new System.Drawing.Point(8, 4);
this.gbSelectDatabase.Name = "gbSelectDatabase";
this.gbSelectDatabase.Size = new System.Drawing.Size(320, 432);
this.gbSelectDatabase.TabIndex = 4;
this.gbSelectDatabase.TabStop = false;
this.gbSelectDatabase.Text = "Configure database";
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabFilePreview);
this.tabControl1.Controls.Add(this.tabDataPreview);
this.tabControl1.Location = new System.Drawing.Point(12, 282);
this.tabControl1.Name = "tabControl1";
this.tabControl1.SelectedIndex = 0;
this.tabControl1.Size = new System.Drawing.Size(296, 138);
this.tabControl1.TabIndex = 10;
//
// tabFilePreview
//
this.tabFilePreview.Controls.Add(this.tbFilePreview);
this.tabFilePreview.Location = new System.Drawing.Point(4, 22);
this.tabFilePreview.Name = "tabFilePreview";
this.tabFilePreview.Padding = new System.Windows.Forms.Padding(3);
this.tabFilePreview.Size = new System.Drawing.Size(288, 112);
this.tabFilePreview.TabIndex = 0;
this.tabFilePreview.Text = "File preview";
this.tabFilePreview.UseVisualStyleBackColor = true;
//
// tbFilePreview
//
this.tbFilePreview.Dock = System.Windows.Forms.DockStyle.Fill;
this.tbFilePreview.Location = new System.Drawing.Point(3, 3);
this.tbFilePreview.Multiline = true;
this.tbFilePreview.Name = "tbFilePreview";
this.tbFilePreview.ReadOnly = true;
this.tbFilePreview.ScrollBars = System.Windows.Forms.ScrollBars.Horizontal;
this.tbFilePreview.Size = new System.Drawing.Size(282, 106);
this.tbFilePreview.TabIndex = 0;
//
// tabDataPreview
//
this.tabDataPreview.Controls.Add(this.dgvTablePreview);
this.tabDataPreview.Location = new System.Drawing.Point(4, 22);
this.tabDataPreview.Name = "tabDataPreview";
this.tabDataPreview.Padding = new System.Windows.Forms.Padding(3);
this.tabDataPreview.Size = new System.Drawing.Size(288, 112);
this.tabDataPreview.TabIndex = 1;
this.tabDataPreview.Text = "Data preview";
this.tabDataPreview.UseVisualStyleBackColor = true;
//
// dgvTablePreview
//
this.dgvTablePreview.AllowUserToAddRows = false;
this.dgvTablePreview.AllowUserToDeleteRows = false;
this.dgvTablePreview.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvTablePreview.Dock = System.Windows.Forms.DockStyle.Fill;
this.dgvTablePreview.Location = new System.Drawing.Point(3, 3);
this.dgvTablePreview.Name = "dgvTablePreview";
this.dgvTablePreview.ReadOnly = true;
this.dgvTablePreview.RowHeadersVisible = false;
this.dgvTablePreview.Size = new System.Drawing.Size(282, 106);
this.dgvTablePreview.TabIndex = 13;
//
// cbxDateTimeFormat
//
this.cbxDateTimeFormat.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.cbxDateTimeFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxDateTimeFormat.DropDownWidth = 400;
this.cbxDateTimeFormat.FormattingEnabled = true;
this.cbxDateTimeFormat.Location = new System.Drawing.Point(168, 248);
this.cbxDateTimeFormat.Name = "cbxDateTimeFormat";
this.cbxDateTimeFormat.Size = new System.Drawing.Size(140, 21);
this.cbxDateTimeFormat.TabIndex = 9;
this.cbxDateTimeFormat.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.cbxDateTimeFormat_DrawItem);
this.cbxDateTimeFormat.SelectedIndexChanged += new System.EventHandler(this.cbxNumberLocale_SelectedIndexChanged);
//
// cbxCurrencyFormat
//
this.cbxCurrencyFormat.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.cbxCurrencyFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxCurrencyFormat.DropDownWidth = 400;
this.cbxCurrencyFormat.FormattingEnabled = true;
this.cbxCurrencyFormat.Location = new System.Drawing.Point(168, 218);
this.cbxCurrencyFormat.Name = "cbxCurrencyFormat";
this.cbxCurrencyFormat.Size = new System.Drawing.Size(140, 21);
this.cbxCurrencyFormat.TabIndex = 8;
this.cbxCurrencyFormat.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.cbxCurrencyFormat_DrawItem);
this.cbxCurrencyFormat.SelectedIndexChanged += new System.EventHandler(this.cbxNumberLocale_SelectedIndexChanged);
//
// cbxNumberFormat
//
this.cbxNumberFormat.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
this.cbxNumberFormat.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxNumberFormat.DropDownWidth = 400;
this.cbxNumberFormat.FormattingEnabled = true;
this.cbxNumberFormat.Location = new System.Drawing.Point(168, 191);
this.cbxNumberFormat.Name = "cbxNumberFormat";
this.cbxNumberFormat.Size = new System.Drawing.Size(140, 21);
this.cbxNumberFormat.TabIndex = 7;
this.cbxNumberFormat.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.cbxNumberFormat_DrawItem);
this.cbxNumberFormat.SelectedIndexChanged += new System.EventHandler(this.cbxNumberLocale_SelectedIndexChanged);
//
// lblDateTimeFormat
//
this.lblDateTimeFormat.AutoSize = true;
this.lblDateTimeFormat.Location = new System.Drawing.Point(12, 248);
this.lblDateTimeFormat.Name = "lblDateTimeFormat";
this.lblDateTimeFormat.Size = new System.Drawing.Size(93, 13);
this.lblDateTimeFormat.TabIndex = 16;
this.lblDateTimeFormat.Text = "Date/Time format:";
//
// lblCurrencyFormat
//
this.lblCurrencyFormat.AutoSize = true;
this.lblCurrencyFormat.Location = new System.Drawing.Point(12, 221);
this.lblCurrencyFormat.Name = "lblCurrencyFormat";
this.lblCurrencyFormat.Size = new System.Drawing.Size(84, 13);
this.lblCurrencyFormat.TabIndex = 16;
this.lblCurrencyFormat.Text = "Currency format:";
//
// lblNumberFormat
//
this.lblNumberFormat.AutoSize = true;
this.lblNumberFormat.Location = new System.Drawing.Point(12, 194);
this.lblNumberFormat.Name = "lblNumberFormat";
this.lblNumberFormat.Size = new System.Drawing.Size(79, 13);
this.lblNumberFormat.TabIndex = 16;
this.lblNumberFormat.Text = "Number format:";
//
// cbxTryConvertTypes
//
this.cbxTryConvertTypes.AutoSize = true;
this.cbxTryConvertTypes.Location = new System.Drawing.Point(15, 168);
this.cbxTryConvertTypes.Name = "cbxTryConvertTypes";
this.cbxTryConvertTypes.Size = new System.Drawing.Size(142, 17);
this.cbxTryConvertTypes.TabIndex = 6;
this.cbxTryConvertTypes.Text = "Try to convert field types";
this.cbxTryConvertTypes.UseVisualStyleBackColor = true;
this.cbxTryConvertTypes.CheckedChanged += new System.EventHandler(this.cbxTryConvertTypes_CheckedChanged);
//
// cbxSeparator
//
this.cbxSeparator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxSeparator.FormattingEnabled = true;
this.cbxSeparator.Location = new System.Drawing.Point(168, 94);
this.cbxSeparator.Name = "cbxSeparator";
this.cbxSeparator.Size = new System.Drawing.Size(94, 21);
this.cbxSeparator.TabIndex = 2;
this.cbxSeparator.SelectedIndexChanged += new System.EventHandler(this.cbxSeparator_SelectedIndexChanged);
//
// cbxFieldNames
//
this.cbxFieldNames.AutoSize = true;
this.cbxFieldNames.Location = new System.Drawing.Point(15, 122);
this.cbxFieldNames.Name = "cbxFieldNames";
this.cbxFieldNames.Size = new System.Drawing.Size(140, 17);
this.cbxFieldNames.TabIndex = 4;
this.cbxFieldNames.Text = "Field names in first string";
this.cbxFieldNames.UseVisualStyleBackColor = true;
this.cbxFieldNames.CheckedChanged += new System.EventHandler(this.cbxFieldNames_CheckedChanged);
//
// cbxRemoveQuotes
//
this.cbxRemoveQuotes.AutoSize = true;
this.cbxRemoveQuotes.Location = new System.Drawing.Point(15, 145);
this.cbxRemoveQuotes.Name = "cbxRemoveQuotes";
this.cbxRemoveQuotes.Size = new System.Drawing.Size(144, 17);
this.cbxRemoveQuotes.TabIndex = 5;
this.cbxRemoveQuotes.Text = "Remove quotation marks";
this.cbxRemoveQuotes.UseVisualStyleBackColor = true;
this.cbxRemoveQuotes.CheckedChanged += new System.EventHandler(this.cbxRemoveQuotes_CheckedChanged);
//
// cbxCodepage
//
this.cbxCodepage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxCodepage.FormattingEnabled = true;
this.cbxCodepage.Location = new System.Drawing.Point(168, 67);
this.cbxCodepage.Name = "cbxCodepage";
this.cbxCodepage.Size = new System.Drawing.Size(140, 21);
this.cbxCodepage.TabIndex = 1;
this.cbxCodepage.SelectedIndexChanged += new System.EventHandler(this.cbxEncoding_SelectedIndexChanged);
//
// labelCodepage
//
this.labelCodepage.AutoSize = true;
this.labelCodepage.Location = new System.Drawing.Point(12, 70);
this.labelCodepage.Name = "labelCodepage";
this.labelCodepage.Size = new System.Drawing.Size(59, 13);
this.labelCodepage.TabIndex = 7;
this.labelCodepage.Text = "Codepage:";
//
// tbSeparator
//
this.tbSeparator.Enabled = false;
this.tbSeparator.Location = new System.Drawing.Point(268, 94);
this.tbSeparator.Name = "tbSeparator";
this.tbSeparator.Size = new System.Drawing.Size(40, 20);
this.tbSeparator.TabIndex = 3;
this.tbSeparator.Text = ";";
this.tbSeparator.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.tbSeparator.TextChanged += new System.EventHandler(this.tbSeparator_TextChanged);
//
// labelSeparator
//
this.labelSeparator.AutoSize = true;
this.labelSeparator.Location = new System.Drawing.Point(12, 97);
this.labelSeparator.Name = "labelSeparator";
this.labelSeparator.Size = new System.Drawing.Size(56, 13);
this.labelSeparator.TabIndex = 5;
this.labelSeparator.Text = "Separator:";
//
// labelSelectCsvFile
//
this.labelSelectCsvFile.AutoSize = true;
this.labelSelectCsvFile.Location = new System.Drawing.Point(12, 20);
this.labelSelectCsvFile.Name = "labelSelectCsvFile";
this.labelSelectCsvFile.Size = new System.Drawing.Size(79, 13);
this.labelSelectCsvFile.TabIndex = 4;
this.labelSelectCsvFile.Text = "Select .csv file:";
//
// CsvConnectionEditor
//
this.Controls.Add(this.gbSelectDatabase);
this.Name = "CsvConnectionEditor";
this.Size = new System.Drawing.Size(336, 443);
this.gbSelectDatabase.ResumeLayout(false);
this.gbSelectDatabase.PerformLayout();
this.tabControl1.ResumeLayout(false);
this.tabFilePreview.ResumeLayout(false);
this.tabFilePreview.PerformLayout();
this.tabDataPreview.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvTablePreview)).EndInit();
this.ResumeLayout(false);
}
#endregion
private FastReport.Controls.TextBoxButton tbCsvFile;
private System.Windows.Forms.GroupBox gbSelectDatabase;
private System.Windows.Forms.Label labelSelectCsvFile;
private System.Windows.Forms.Label labelSeparator;
private System.Windows.Forms.TextBox tbSeparator;
private System.Windows.Forms.ComboBox cbxCodepage;
private System.Windows.Forms.Label labelCodepage;
private System.Windows.Forms.TextBox tbFilePreview;
private System.Windows.Forms.DataGridView dgvTablePreview;
private System.Windows.Forms.ComboBox cbxSeparator;
private System.Windows.Forms.CheckBox cbxRemoveQuotes;
private System.Windows.Forms.CheckBox cbxFieldNames;
private System.Windows.Forms.CheckBox cbxTryConvertTypes;
private System.Windows.Forms.ComboBox cbxDateTimeFormat;
private System.Windows.Forms.ComboBox cbxCurrencyFormat;
private System.Windows.Forms.ComboBox cbxNumberFormat;
private System.Windows.Forms.Label lblDateTimeFormat;
private System.Windows.Forms.Label lblCurrencyFormat;
private System.Windows.Forms.Label lblNumberFormat;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabFilePreview;
private System.Windows.Forms.TabPage tabDataPreview;
}
}