using FastReport.Controls;
namespace FastReport.Forms
{
partial class CsvExportForm
{
///
/// 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.gbOptions = new System.Windows.Forms.GroupBox();
this.cbEscapeQuotes = new System.Windows.Forms.CheckBox();
this.cbNoQuotes = new System.Windows.Forms.CheckBox();
this.cbDataOnly = new System.Windows.Forms.CheckBox();
this.cbbCodepage = new System.Windows.Forms.ComboBox();
this.lblCodepage = new System.Windows.Forms.Label();
this.tbSeparator = new System.Windows.Forms.TextBox();
this.lblSeparator = new System.Windows.Forms.Label();
this.gbPageRange.SuspendLayout();
this.pcPages.SuspendLayout();
this.panPages.SuspendLayout();
this.gbOptions.SuspendLayout();
this.SuspendLayout();
//
// gbPageRange
//
this.gbPageRange.Location = new System.Drawing.Point(8, 4);
//
// pcPages
//
this.pcPages.Location = new System.Drawing.Point(0, 0);
this.pcPages.Size = new System.Drawing.Size(276, 294);
//
// panPages
//
this.panPages.Controls.Add(this.gbOptions);
this.panPages.Size = new System.Drawing.Size(276, 294);
this.panPages.Controls.SetChildIndex(this.gbPageRange, 0);
this.panPages.Controls.SetChildIndex(this.gbOptions, 0);
//
// cbOpenAfter
//
this.cbOpenAfter.Location = new System.Drawing.Point(9, 313);
//
// cbExportAllTabs
//
this.cbExportAllTabs.Location = new System.Drawing.Point(9, 293);
//
// btnOk
//
this.btnOk.Location = new System.Drawing.Point(113, 336);
//
// btnCancel
//
this.btnCancel.Location = new System.Drawing.Point(194, 336);
this.btnCancel.TabIndex = 1;
//
// gbOptions
//
this.gbOptions.Controls.Add(this.cbEscapeQuotes);
this.gbOptions.Controls.Add(this.cbNoQuotes);
this.gbOptions.Controls.Add(this.cbDataOnly);
this.gbOptions.Controls.Add(this.cbbCodepage);
this.gbOptions.Controls.Add(this.lblCodepage);
this.gbOptions.Controls.Add(this.tbSeparator);
this.gbOptions.Controls.Add(this.lblSeparator);
this.gbOptions.Location = new System.Drawing.Point(9, 138);
this.gbOptions.Name = "gbOptions";
this.gbOptions.Size = new System.Drawing.Size(259, 149);
this.gbOptions.TabIndex = 4;
this.gbOptions.TabStop = false;
this.gbOptions.Text = "Options";
//
// cbEscapeQuotes
//
this.cbEscapeQuotes.AutoSize = true;
this.cbEscapeQuotes.Location = new System.Drawing.Point(12, 122);
this.cbEscapeQuotes.Name = "cbEscapeQuotes";
this.cbEscapeQuotes.Size = new System.Drawing.Size(139, 17);
this.cbEscapeQuotes.TabIndex = 6;
this.cbEscapeQuotes.Text = "Screen quotation marks";
this.cbEscapeQuotes.UseVisualStyleBackColor = true;
//
// cbNoQuotes
//
this.cbNoQuotes.AutoSize = true;
this.cbNoQuotes.Location = new System.Drawing.Point(12, 99);
this.cbNoQuotes.Name = "cbNoQuotes";
this.cbNoQuotes.Size = new System.Drawing.Size(140, 17);
this.cbNoQuotes.TabIndex = 5;
this.cbNoQuotes.Text = "Disable quotation marks";
this.cbNoQuotes.UseVisualStyleBackColor = true;
this.cbNoQuotes.CheckedChanged += new System.EventHandler(this.cbNoQuotes_CheckedChanged);
//
// cbDataOnly
//
this.cbDataOnly.AutoSize = true;
this.cbDataOnly.Location = new System.Drawing.Point(12, 76);
this.cbDataOnly.Name = "cbDataOnly";
this.cbDataOnly.Size = new System.Drawing.Size(72, 17);
this.cbDataOnly.TabIndex = 4;
this.cbDataOnly.Text = "Data only";
this.cbDataOnly.UseVisualStyleBackColor = true;
//
// cbbCodepage
//
this.cbbCodepage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbbCodepage.FormattingEnabled = true;
this.cbbCodepage.Items.AddRange(new object[] {
"Default",
"Unicode",
"OEM"});
this.cbbCodepage.Location = new System.Drawing.Point(103, 45);
this.cbbCodepage.Name = "cbbCodepage";
this.cbbCodepage.Size = new System.Drawing.Size(144, 21);
this.cbbCodepage.TabIndex = 3;
//
// lblCodepage
//
this.lblCodepage.AutoSize = true;
this.lblCodepage.Location = new System.Drawing.Point(12, 48);
this.lblCodepage.Name = "lblCodepage";
this.lblCodepage.Size = new System.Drawing.Size(56, 13);
this.lblCodepage.TabIndex = 2;
this.lblCodepage.Text = "Codepage";
//
// tbSeparator
//
this.tbSeparator.Location = new System.Drawing.Point(103, 17);
this.tbSeparator.Name = "tbSeparator";
this.tbSeparator.Size = new System.Drawing.Size(24, 20);
this.tbSeparator.TabIndex = 1;
this.tbSeparator.Text = ";";
this.tbSeparator.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// lblSeparator
//
this.lblSeparator.AutoSize = true;
this.lblSeparator.Location = new System.Drawing.Point(12, 20);
this.lblSeparator.Name = "lblSeparator";
this.lblSeparator.Size = new System.Drawing.Size(55, 13);
this.lblSeparator.TabIndex = 0;
this.lblSeparator.Text = "Separator";
//
// CsvExportForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(277, 367);
this.Name = "CsvExportForm";
this.OpenAfterVisible = true;
this.Text = "Export to CSV";
this.gbPageRange.ResumeLayout(false);
this.gbPageRange.PerformLayout();
this.pcPages.ResumeLayout(false);
this.panPages.ResumeLayout(false);
this.gbOptions.ResumeLayout(false);
this.gbOptions.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.GroupBox gbOptions;
private System.Windows.Forms.CheckBox cbEscapeQuotes;
private System.Windows.Forms.CheckBox cbNoQuotes;
private System.Windows.Forms.CheckBox cbDataOnly;
private System.Windows.Forms.ComboBox cbbCodepage;
private System.Windows.Forms.Label lblCodepage;
private System.Windows.Forms.TextBox tbSeparator;
private System.Windows.Forms.Label lblSeparator;
}
}