CsvExportForm.Designer.cs 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. using FastReport.Controls;
  2. namespace FastReport.Forms
  3. {
  4. partial class CsvExportForm
  5. {
  6. /// <summary>
  7. /// Required designer variable.
  8. /// </summary>
  9. private System.ComponentModel.IContainer components = null;
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22. #region Windows Form Designer generated code
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. this.gbOptions = new System.Windows.Forms.GroupBox();
  30. this.cbEscapeQuotes = new System.Windows.Forms.CheckBox();
  31. this.cbNoQuotes = new System.Windows.Forms.CheckBox();
  32. this.cbDataOnly = new System.Windows.Forms.CheckBox();
  33. this.cbbCodepage = new System.Windows.Forms.ComboBox();
  34. this.lblCodepage = new System.Windows.Forms.Label();
  35. this.tbSeparator = new System.Windows.Forms.TextBox();
  36. this.lblSeparator = new System.Windows.Forms.Label();
  37. this.gbPageRange.SuspendLayout();
  38. this.pcPages.SuspendLayout();
  39. this.panPages.SuspendLayout();
  40. this.gbOptions.SuspendLayout();
  41. this.SuspendLayout();
  42. //
  43. // gbPageRange
  44. //
  45. this.gbPageRange.Location = new System.Drawing.Point(8, 4);
  46. //
  47. // pcPages
  48. //
  49. this.pcPages.Location = new System.Drawing.Point(0, 0);
  50. this.pcPages.Size = new System.Drawing.Size(276, 294);
  51. //
  52. // panPages
  53. //
  54. this.panPages.Controls.Add(this.gbOptions);
  55. this.panPages.Size = new System.Drawing.Size(276, 294);
  56. this.panPages.Controls.SetChildIndex(this.gbPageRange, 0);
  57. this.panPages.Controls.SetChildIndex(this.gbOptions, 0);
  58. //
  59. // cbOpenAfter
  60. //
  61. this.cbOpenAfter.Location = new System.Drawing.Point(9, 313);
  62. //
  63. // cbExportAllTabs
  64. //
  65. this.cbExportAllTabs.Location = new System.Drawing.Point(9, 293);
  66. //
  67. // btnOk
  68. //
  69. this.btnOk.Location = new System.Drawing.Point(113, 336);
  70. //
  71. // btnCancel
  72. //
  73. this.btnCancel.Location = new System.Drawing.Point(194, 336);
  74. this.btnCancel.TabIndex = 1;
  75. //
  76. // gbOptions
  77. //
  78. this.gbOptions.Controls.Add(this.cbEscapeQuotes);
  79. this.gbOptions.Controls.Add(this.cbNoQuotes);
  80. this.gbOptions.Controls.Add(this.cbDataOnly);
  81. this.gbOptions.Controls.Add(this.cbbCodepage);
  82. this.gbOptions.Controls.Add(this.lblCodepage);
  83. this.gbOptions.Controls.Add(this.tbSeparator);
  84. this.gbOptions.Controls.Add(this.lblSeparator);
  85. this.gbOptions.Location = new System.Drawing.Point(9, 138);
  86. this.gbOptions.Name = "gbOptions";
  87. this.gbOptions.Size = new System.Drawing.Size(259, 149);
  88. this.gbOptions.TabIndex = 4;
  89. this.gbOptions.TabStop = false;
  90. this.gbOptions.Text = "Options";
  91. //
  92. // cbEscapeQuotes
  93. //
  94. this.cbEscapeQuotes.AutoSize = true;
  95. this.cbEscapeQuotes.Location = new System.Drawing.Point(12, 122);
  96. this.cbEscapeQuotes.Name = "cbEscapeQuotes";
  97. this.cbEscapeQuotes.Size = new System.Drawing.Size(139, 17);
  98. this.cbEscapeQuotes.TabIndex = 6;
  99. this.cbEscapeQuotes.Text = "Screen quotation marks";
  100. this.cbEscapeQuotes.UseVisualStyleBackColor = true;
  101. //
  102. // cbNoQuotes
  103. //
  104. this.cbNoQuotes.AutoSize = true;
  105. this.cbNoQuotes.Location = new System.Drawing.Point(12, 99);
  106. this.cbNoQuotes.Name = "cbNoQuotes";
  107. this.cbNoQuotes.Size = new System.Drawing.Size(140, 17);
  108. this.cbNoQuotes.TabIndex = 5;
  109. this.cbNoQuotes.Text = "Disable quotation marks";
  110. this.cbNoQuotes.UseVisualStyleBackColor = true;
  111. this.cbNoQuotes.CheckedChanged += new System.EventHandler(this.cbNoQuotes_CheckedChanged);
  112. //
  113. // cbDataOnly
  114. //
  115. this.cbDataOnly.AutoSize = true;
  116. this.cbDataOnly.Location = new System.Drawing.Point(12, 76);
  117. this.cbDataOnly.Name = "cbDataOnly";
  118. this.cbDataOnly.Size = new System.Drawing.Size(72, 17);
  119. this.cbDataOnly.TabIndex = 4;
  120. this.cbDataOnly.Text = "Data only";
  121. this.cbDataOnly.UseVisualStyleBackColor = true;
  122. //
  123. // cbbCodepage
  124. //
  125. this.cbbCodepage.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  126. this.cbbCodepage.FormattingEnabled = true;
  127. this.cbbCodepage.Items.AddRange(new object[] {
  128. "Default",
  129. "Unicode",
  130. "OEM"});
  131. this.cbbCodepage.Location = new System.Drawing.Point(103, 45);
  132. this.cbbCodepage.Name = "cbbCodepage";
  133. this.cbbCodepage.Size = new System.Drawing.Size(144, 21);
  134. this.cbbCodepage.TabIndex = 3;
  135. //
  136. // lblCodepage
  137. //
  138. this.lblCodepage.AutoSize = true;
  139. this.lblCodepage.Location = new System.Drawing.Point(12, 48);
  140. this.lblCodepage.Name = "lblCodepage";
  141. this.lblCodepage.Size = new System.Drawing.Size(56, 13);
  142. this.lblCodepage.TabIndex = 2;
  143. this.lblCodepage.Text = "Codepage";
  144. //
  145. // tbSeparator
  146. //
  147. this.tbSeparator.Location = new System.Drawing.Point(103, 17);
  148. this.tbSeparator.Name = "tbSeparator";
  149. this.tbSeparator.Size = new System.Drawing.Size(24, 20);
  150. this.tbSeparator.TabIndex = 1;
  151. this.tbSeparator.Text = ";";
  152. this.tbSeparator.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  153. //
  154. // lblSeparator
  155. //
  156. this.lblSeparator.AutoSize = true;
  157. this.lblSeparator.Location = new System.Drawing.Point(12, 20);
  158. this.lblSeparator.Name = "lblSeparator";
  159. this.lblSeparator.Size = new System.Drawing.Size(55, 13);
  160. this.lblSeparator.TabIndex = 0;
  161. this.lblSeparator.Text = "Separator";
  162. //
  163. // CsvExportForm
  164. //
  165. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  166. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  167. this.ClientSize = new System.Drawing.Size(277, 367);
  168. this.Name = "CsvExportForm";
  169. this.OpenAfterVisible = true;
  170. this.Text = "Export to CSV";
  171. this.gbPageRange.ResumeLayout(false);
  172. this.gbPageRange.PerformLayout();
  173. this.pcPages.ResumeLayout(false);
  174. this.panPages.ResumeLayout(false);
  175. this.gbOptions.ResumeLayout(false);
  176. this.gbOptions.PerformLayout();
  177. this.ResumeLayout(false);
  178. this.PerformLayout();
  179. }
  180. #endregion
  181. private System.Windows.Forms.GroupBox gbOptions;
  182. private System.Windows.Forms.CheckBox cbEscapeQuotes;
  183. private System.Windows.Forms.CheckBox cbNoQuotes;
  184. private System.Windows.Forms.CheckBox cbDataOnly;
  185. private System.Windows.Forms.ComboBox cbbCodepage;
  186. private System.Windows.Forms.Label lblCodepage;
  187. private System.Windows.Forms.TextBox tbSeparator;
  188. private System.Windows.Forms.Label lblSeparator;
  189. }
  190. }