QueryWizardForm.Designer.cs 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. namespace FastReport.Forms
  2. {
  3. partial class QueryWizardForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.tbName = new System.Windows.Forms.TextBox();
  29. this.lblSetName = new System.Windows.Forms.Label();
  30. this.lblTypeSql = new System.Windows.Forms.Label();
  31. this.tbSql = new System.Windows.Forms.TextBox();
  32. this.btnQueryBuilder = new System.Windows.Forms.Button();
  33. this.lblWhatData = new System.Windows.Forms.Label();
  34. this.splitContainer1 = new FastReport.Controls.FRSplitContainer();
  35. this.tvColumns = new System.Windows.Forms.TreeView();
  36. this.tsColumns = new System.Windows.Forms.ToolStrip();
  37. this.btnRefreshColumns = new System.Windows.Forms.ToolStripButton();
  38. this.btnAddColumn = new System.Windows.Forms.ToolStripButton();
  39. this.btnDeleteColumn = new System.Windows.Forms.ToolStripButton();
  40. this.pgColumnProperties = new System.Windows.Forms.PropertyGrid();
  41. this.pnName = new System.Windows.Forms.Panel();
  42. this.lblNameHint = new System.Windows.Forms.Label();
  43. this.pnSql = new System.Windows.Forms.Panel();
  44. this.pnColumns = new System.Windows.Forms.Panel();
  45. this.pnParameters = new System.Windows.Forms.Panel();
  46. this.splitContainer2 = new FastReport.Controls.FRSplitContainer();
  47. this.tvParameters = new System.Windows.Forms.TreeView();
  48. this.tsParameters = new System.Windows.Forms.ToolStrip();
  49. this.btnAddParameter = new System.Windows.Forms.ToolStripButton();
  50. this.btnDeleteParameter = new System.Windows.Forms.ToolStripButton();
  51. this.btnParameterUp = new System.Windows.Forms.ToolStripButton();
  52. this.btnParameterDown = new System.Windows.Forms.ToolStripButton();
  53. this.pgParamProperties = new System.Windows.Forms.PropertyGrid();
  54. this.pnTop.SuspendLayout();
  55. ((System.ComponentModel.ISupportInitialize)(this.picIcon)).BeginInit();
  56. this.pnBottom.SuspendLayout();
  57. this.pcPages.SuspendLayout();
  58. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
  59. this.splitContainer1.Panel1.SuspendLayout();
  60. this.splitContainer1.Panel2.SuspendLayout();
  61. this.splitContainer1.SuspendLayout();
  62. this.tsColumns.SuspendLayout();
  63. this.pnName.SuspendLayout();
  64. this.pnSql.SuspendLayout();
  65. this.pnColumns.SuspendLayout();
  66. this.pnParameters.SuspendLayout();
  67. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
  68. this.splitContainer2.Panel1.SuspendLayout();
  69. this.splitContainer2.Panel2.SuspendLayout();
  70. this.splitContainer2.SuspendLayout();
  71. this.tsParameters.SuspendLayout();
  72. this.SuspendLayout();
  73. //
  74. // picIcon
  75. //
  76. this.picIcon.Location = new System.Drawing.Point(405, 8);
  77. //
  78. // pnBottom
  79. //
  80. this.pnBottom.Location = new System.Drawing.Point(0, 370);
  81. //
  82. // btnCancel1
  83. //
  84. this.btnCancel1.Location = new System.Drawing.Point(293, 12);
  85. //
  86. // btnFinish
  87. //
  88. this.btnFinish.Location = new System.Drawing.Point(209, 12);
  89. //
  90. // btnNext
  91. //
  92. this.btnNext.Location = new System.Drawing.Point(125, 12);
  93. //
  94. // btnPrevious
  95. //
  96. this.btnPrevious.Location = new System.Drawing.Point(41, 12);
  97. //
  98. // pcPages
  99. //
  100. this.pcPages.Controls.Add(this.pnName);
  101. this.pcPages.Controls.Add(this.pnSql);
  102. this.pcPages.Controls.Add(this.pnParameters);
  103. this.pcPages.Controls.Add(this.pnColumns);
  104. this.pcPages.Size = new System.Drawing.Size(465, 302);
  105. //
  106. // tbName
  107. //
  108. this.tbName.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  109. | System.Windows.Forms.AnchorStyles.Right)));
  110. this.tbName.Location = new System.Drawing.Point(12, 62);
  111. this.tbName.Name = "tbName";
  112. this.tbName.Size = new System.Drawing.Size(441, 20);
  113. this.tbName.TabIndex = 2;
  114. //
  115. // lblSetName
  116. //
  117. this.lblSetName.AutoSize = true;
  118. this.lblSetName.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  119. this.lblSetName.Location = new System.Drawing.Point(12, 14);
  120. this.lblSetName.Name = "lblSetName";
  121. this.lblSetName.Size = new System.Drawing.Size(193, 13);
  122. this.lblSetName.TabIndex = 4;
  123. this.lblSetName.Text = "Set the name of the table object.";
  124. //
  125. // lblTypeSql
  126. //
  127. this.lblTypeSql.AutoSize = true;
  128. this.lblTypeSql.Location = new System.Drawing.Point(12, 38);
  129. this.lblTypeSql.Name = "lblTypeSql";
  130. this.lblTypeSql.Size = new System.Drawing.Size(324, 13);
  131. this.lblTypeSql.TabIndex = 3;
  132. this.lblTypeSql.Text = "Type your SQL statement or use the Query Builder to construct it.";
  133. //
  134. // tbSql
  135. //
  136. this.tbSql.AcceptsReturn = true;
  137. this.tbSql.AcceptsTab = true;
  138. this.tbSql.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  139. | System.Windows.Forms.AnchorStyles.Left)
  140. | System.Windows.Forms.AnchorStyles.Right)));
  141. this.tbSql.Location = new System.Drawing.Point(12, 62);
  142. this.tbSql.MaxLength = 1000000;
  143. this.tbSql.Multiline = true;
  144. this.tbSql.Name = "tbSql";
  145. this.tbSql.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  146. this.tbSql.Size = new System.Drawing.Size(441, 193);
  147. this.tbSql.TabIndex = 2;
  148. this.tbSql.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbSql_KeyDown);
  149. //
  150. // btnQueryBuilder
  151. //
  152. this.btnQueryBuilder.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  153. this.btnQueryBuilder.AutoSize = true;
  154. this.btnQueryBuilder.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  155. this.btnQueryBuilder.Location = new System.Drawing.Point(361, 267);
  156. this.btnQueryBuilder.Name = "btnQueryBuilder";
  157. this.btnQueryBuilder.Size = new System.Drawing.Size(94, 23);
  158. this.btnQueryBuilder.TabIndex = 1;
  159. this.btnQueryBuilder.Text = "Query builder...";
  160. this.btnQueryBuilder.UseVisualStyleBackColor = true;
  161. this.btnQueryBuilder.Click += new System.EventHandler(this.btnQueryBuilder_Click);
  162. //
  163. // lblWhatData
  164. //
  165. this.lblWhatData.AutoSize = true;
  166. this.lblWhatData.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  167. this.lblWhatData.Location = new System.Drawing.Point(12, 14);
  168. this.lblWhatData.Name = "lblWhatData";
  169. this.lblWhatData.Size = new System.Drawing.Size(249, 13);
  170. this.lblWhatData.TabIndex = 0;
  171. this.lblWhatData.Text = "What data should be loaded into the table?";
  172. //
  173. // splitContainer1
  174. //
  175. this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
  176. this.splitContainer1.Location = new System.Drawing.Point(0, 0);
  177. this.splitContainer1.Name = "splitContainer1";
  178. //
  179. // splitContainer1.Panel1
  180. //
  181. this.splitContainer1.Panel1.Controls.Add(this.tvColumns);
  182. this.splitContainer1.Panel1.Controls.Add(this.tsColumns);
  183. this.splitContainer1.Panel1.Padding = new System.Windows.Forms.Padding(12, 13, 0, 12);
  184. //
  185. // splitContainer1.Panel2
  186. //
  187. this.splitContainer1.Panel2.Controls.Add(this.pgColumnProperties);
  188. this.splitContainer1.Panel2.Padding = new System.Windows.Forms.Padding(0, 12, 12, 12);
  189. this.splitContainer1.Size = new System.Drawing.Size(465, 302);
  190. this.splitContainer1.SplitterDistance = 234;
  191. this.splitContainer1.TabIndex = 0;
  192. //
  193. // tvColumns
  194. //
  195. this.tvColumns.Dock = System.Windows.Forms.DockStyle.Fill;
  196. this.tvColumns.HideSelection = false;
  197. this.tvColumns.Location = new System.Drawing.Point(12, 38);
  198. this.tvColumns.Name = "tvColumns";
  199. this.tvColumns.ShowLines = false;
  200. this.tvColumns.ShowRootLines = false;
  201. this.tvColumns.Size = new System.Drawing.Size(222, 252);
  202. this.tvColumns.TabIndex = 1;
  203. this.tvColumns.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvColumns_AfterSelect);
  204. this.tvColumns.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tvColumns_KeyDown);
  205. //
  206. // tsColumns
  207. //
  208. this.tsColumns.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  209. this.btnRefreshColumns,
  210. this.btnAddColumn,
  211. this.btnDeleteColumn});
  212. this.tsColumns.Location = new System.Drawing.Point(12, 13);
  213. this.tsColumns.Name = "tsColumns";
  214. this.tsColumns.Size = new System.Drawing.Size(222, 25);
  215. this.tsColumns.TabIndex = 0;
  216. this.tsColumns.Text = "toolStrip1";
  217. //
  218. // btnRefreshColumns
  219. //
  220. this.btnRefreshColumns.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  221. this.btnRefreshColumns.ImageTransparentColor = System.Drawing.Color.Magenta;
  222. this.btnRefreshColumns.Name = "btnRefreshColumns";
  223. this.btnRefreshColumns.Size = new System.Drawing.Size(23, 22);
  224. this.btnRefreshColumns.Click += new System.EventHandler(this.btnRefreshColumns_Click);
  225. //
  226. // btnAddColumn
  227. //
  228. this.btnAddColumn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  229. this.btnAddColumn.ImageTransparentColor = System.Drawing.Color.Magenta;
  230. this.btnAddColumn.Name = "btnAddColumn";
  231. this.btnAddColumn.Size = new System.Drawing.Size(23, 22);
  232. this.btnAddColumn.Click += new System.EventHandler(this.btnAddColumn_Click);
  233. //
  234. // btnDeleteColumn
  235. //
  236. this.btnDeleteColumn.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  237. this.btnDeleteColumn.ImageTransparentColor = System.Drawing.Color.Magenta;
  238. this.btnDeleteColumn.Name = "btnDeleteColumn";
  239. this.btnDeleteColumn.Size = new System.Drawing.Size(23, 22);
  240. this.btnDeleteColumn.Click += new System.EventHandler(this.btnDeleteColumn_Click);
  241. //
  242. // pgColumnProperties
  243. //
  244. this.pgColumnProperties.CommandsActiveLinkColor = System.Drawing.SystemColors.ActiveCaption;
  245. this.pgColumnProperties.CommandsDisabledLinkColor = System.Drawing.SystemColors.ControlDark;
  246. this.pgColumnProperties.CommandsLinkColor = System.Drawing.SystemColors.ActiveCaption;
  247. this.pgColumnProperties.Dock = System.Windows.Forms.DockStyle.Fill;
  248. this.pgColumnProperties.LineColor = System.Drawing.SystemColors.Control;
  249. this.pgColumnProperties.Location = new System.Drawing.Point(0, 12);
  250. this.pgColumnProperties.Name = "pgColumnProperties";
  251. this.pgColumnProperties.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
  252. this.pgColumnProperties.Size = new System.Drawing.Size(215, 278);
  253. this.pgColumnProperties.TabIndex = 0;
  254. this.pgColumnProperties.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.pgColumnProperties_PropertyValueChanged);
  255. //
  256. // pnName
  257. //
  258. this.pnName.Controls.Add(this.lblNameHint);
  259. this.pnName.Controls.Add(this.lblSetName);
  260. this.pnName.Controls.Add(this.tbName);
  261. this.pnName.Dock = System.Windows.Forms.DockStyle.Fill;
  262. this.pnName.Location = new System.Drawing.Point(0, 0);
  263. this.pnName.Name = "pnName";
  264. this.pnName.Size = new System.Drawing.Size(465, 302);
  265. this.pnName.TabIndex = 0;
  266. //
  267. // lblNameHint
  268. //
  269. this.lblNameHint.AutoSize = true;
  270. this.lblNameHint.Location = new System.Drawing.Point(12, 38);
  271. this.lblNameHint.Name = "lblNameHint";
  272. this.lblNameHint.Size = new System.Drawing.Size(242, 13);
  273. this.lblNameHint.TabIndex = 5;
  274. this.lblNameHint.Text = "This name will be displayed in the \"Data\" window.";
  275. //
  276. // pnSql
  277. //
  278. this.pnSql.Controls.Add(this.lblTypeSql);
  279. this.pnSql.Controls.Add(this.lblWhatData);
  280. this.pnSql.Controls.Add(this.tbSql);
  281. this.pnSql.Controls.Add(this.btnQueryBuilder);
  282. this.pnSql.Dock = System.Windows.Forms.DockStyle.Fill;
  283. this.pnSql.Location = new System.Drawing.Point(0, 0);
  284. this.pnSql.Name = "pnSql";
  285. this.pnSql.Size = new System.Drawing.Size(465, 302);
  286. this.pnSql.TabIndex = 1;
  287. //
  288. // pnColumns
  289. //
  290. this.pnColumns.Controls.Add(this.splitContainer1);
  291. this.pnColumns.Dock = System.Windows.Forms.DockStyle.Fill;
  292. this.pnColumns.Location = new System.Drawing.Point(0, 0);
  293. this.pnColumns.Name = "pnColumns";
  294. this.pnColumns.Size = new System.Drawing.Size(465, 302);
  295. this.pnColumns.TabIndex = 2;
  296. //
  297. // pnParameters
  298. //
  299. this.pnParameters.Controls.Add(this.splitContainer2);
  300. this.pnParameters.Dock = System.Windows.Forms.DockStyle.Fill;
  301. this.pnParameters.Location = new System.Drawing.Point(0, 0);
  302. this.pnParameters.Name = "pnParameters";
  303. this.pnParameters.Size = new System.Drawing.Size(465, 302);
  304. this.pnParameters.TabIndex = 3;
  305. //
  306. // splitContainer2
  307. //
  308. this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
  309. this.splitContainer2.Location = new System.Drawing.Point(0, 0);
  310. this.splitContainer2.Name = "splitContainer2";
  311. //
  312. // splitContainer2.Panel1
  313. //
  314. this.splitContainer2.Panel1.Controls.Add(this.tvParameters);
  315. this.splitContainer2.Panel1.Controls.Add(this.tsParameters);
  316. this.splitContainer2.Panel1.Padding = new System.Windows.Forms.Padding(12, 13, 0, 12);
  317. //
  318. // splitContainer2.Panel2
  319. //
  320. this.splitContainer2.Panel2.Controls.Add(this.pgParamProperties);
  321. this.splitContainer2.Panel2.Padding = new System.Windows.Forms.Padding(0, 12, 12, 12);
  322. this.splitContainer2.Size = new System.Drawing.Size(465, 302);
  323. this.splitContainer2.SplitterDistance = 234;
  324. this.splitContainer2.TabIndex = 1;
  325. //
  326. // tvParameters
  327. //
  328. this.tvParameters.Dock = System.Windows.Forms.DockStyle.Fill;
  329. this.tvParameters.HideSelection = false;
  330. this.tvParameters.Location = new System.Drawing.Point(12, 38);
  331. this.tvParameters.Name = "tvParameters";
  332. this.tvParameters.ShowLines = false;
  333. this.tvParameters.ShowRootLines = false;
  334. this.tvParameters.Size = new System.Drawing.Size(222, 252);
  335. this.tvParameters.TabIndex = 1;
  336. this.tvParameters.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvParameters_AfterSelect);
  337. this.tvParameters.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tvParameters_KeyDown);
  338. //
  339. // tsParameters
  340. //
  341. this.tsParameters.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  342. this.btnAddParameter,
  343. this.btnDeleteParameter,
  344. this.btnParameterUp,
  345. this.btnParameterDown});
  346. this.tsParameters.Location = new System.Drawing.Point(12, 13);
  347. this.tsParameters.Name = "tsParameters";
  348. this.tsParameters.Size = new System.Drawing.Size(222, 25);
  349. this.tsParameters.TabIndex = 0;
  350. this.tsParameters.Text = "toolStrip1";
  351. //
  352. // btnAddParameter
  353. //
  354. this.btnAddParameter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  355. this.btnAddParameter.ImageTransparentColor = System.Drawing.Color.Magenta;
  356. this.btnAddParameter.Name = "btnAddParameter";
  357. this.btnAddParameter.Size = new System.Drawing.Size(23, 22);
  358. this.btnAddParameter.Click += new System.EventHandler(this.btnAddParameter_Click);
  359. //
  360. // btnDeleteParameter
  361. //
  362. this.btnDeleteParameter.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  363. this.btnDeleteParameter.ImageTransparentColor = System.Drawing.Color.Magenta;
  364. this.btnDeleteParameter.Name = "btnDeleteParameter";
  365. this.btnDeleteParameter.Size = new System.Drawing.Size(23, 22);
  366. this.btnDeleteParameter.Click += new System.EventHandler(this.btnDeleteParameter_Click);
  367. //
  368. // btnParameterUp
  369. //
  370. this.btnParameterUp.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  371. this.btnParameterUp.ImageTransparentColor = System.Drawing.Color.Magenta;
  372. this.btnParameterUp.Name = "btnParameterUp";
  373. this.btnParameterUp.Size = new System.Drawing.Size(23, 22);
  374. this.btnParameterUp.Click += new System.EventHandler(this.btnParameterUp_Click);
  375. //
  376. // btnParameterDown
  377. //
  378. this.btnParameterDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  379. this.btnParameterDown.ImageTransparentColor = System.Drawing.Color.Magenta;
  380. this.btnParameterDown.Name = "btnParameterDown";
  381. this.btnParameterDown.Size = new System.Drawing.Size(23, 22);
  382. this.btnParameterDown.Click += new System.EventHandler(this.btnParameterDown_Click);
  383. //
  384. // pgParamProperties
  385. //
  386. this.pgParamProperties.CommandsActiveLinkColor = System.Drawing.SystemColors.ActiveCaption;
  387. this.pgParamProperties.CommandsDisabledLinkColor = System.Drawing.SystemColors.ControlDark;
  388. this.pgParamProperties.CommandsLinkColor = System.Drawing.SystemColors.ActiveCaption;
  389. this.pgParamProperties.Dock = System.Windows.Forms.DockStyle.Fill;
  390. this.pgParamProperties.LineColor = System.Drawing.SystemColors.Control;
  391. this.pgParamProperties.Location = new System.Drawing.Point(0, 12);
  392. this.pgParamProperties.Name = "pgParamProperties";
  393. this.pgParamProperties.PropertySort = System.Windows.Forms.PropertySort.Alphabetical;
  394. this.pgParamProperties.Size = new System.Drawing.Size(215, 278);
  395. this.pgParamProperties.TabIndex = 0;
  396. this.pgParamProperties.PropertyValueChanged += new System.Windows.Forms.PropertyValueChangedEventHandler(this.pgParamProperties_PropertyValueChanged);
  397. //
  398. // QueryWizardForm
  399. //
  400. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  401. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  402. this.ClientSize = new System.Drawing.Size(465, 415);
  403. this.Name = "QueryWizardForm";
  404. this.Text = "Table";
  405. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.TableWizardForm_FormClosed);
  406. this.pnTop.ResumeLayout(false);
  407. this.pnTop.PerformLayout();
  408. ((System.ComponentModel.ISupportInitialize)(this.picIcon)).EndInit();
  409. this.pnBottom.ResumeLayout(false);
  410. this.pcPages.ResumeLayout(false);
  411. this.splitContainer1.Panel1.ResumeLayout(false);
  412. this.splitContainer1.Panel1.PerformLayout();
  413. this.splitContainer1.Panel2.ResumeLayout(false);
  414. ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
  415. this.splitContainer1.ResumeLayout(false);
  416. this.tsColumns.ResumeLayout(false);
  417. this.tsColumns.PerformLayout();
  418. this.pnName.ResumeLayout(false);
  419. this.pnName.PerformLayout();
  420. this.pnSql.ResumeLayout(false);
  421. this.pnSql.PerformLayout();
  422. this.pnColumns.ResumeLayout(false);
  423. this.pnParameters.ResumeLayout(false);
  424. this.splitContainer2.Panel1.ResumeLayout(false);
  425. this.splitContainer2.Panel1.PerformLayout();
  426. this.splitContainer2.Panel2.ResumeLayout(false);
  427. ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
  428. this.splitContainer2.ResumeLayout(false);
  429. this.tsParameters.ResumeLayout(false);
  430. this.tsParameters.PerformLayout();
  431. this.ResumeLayout(false);
  432. }
  433. #endregion
  434. private System.Windows.Forms.TextBox tbName;
  435. private System.Windows.Forms.Label lblSetName;
  436. private System.Windows.Forms.TextBox tbSql;
  437. private System.Windows.Forms.Button btnQueryBuilder;
  438. private System.Windows.Forms.Label lblWhatData;
  439. private FastReport.Controls.FRSplitContainer splitContainer1;
  440. private System.Windows.Forms.ToolStrip tsColumns;
  441. private System.Windows.Forms.ToolStripButton btnRefreshColumns;
  442. private System.Windows.Forms.PropertyGrid pgColumnProperties;
  443. private System.Windows.Forms.TreeView tvColumns;
  444. private System.Windows.Forms.ToolStripButton btnAddColumn;
  445. private System.Windows.Forms.Label lblTypeSql;
  446. private System.Windows.Forms.ToolStripButton btnDeleteColumn;
  447. private System.Windows.Forms.Panel pnName;
  448. private System.Windows.Forms.Panel pnSql;
  449. private System.Windows.Forms.Panel pnColumns;
  450. private System.Windows.Forms.Label lblNameHint;
  451. private System.Windows.Forms.Panel pnParameters;
  452. private FastReport.Controls.FRSplitContainer splitContainer2;
  453. private System.Windows.Forms.TreeView tvParameters;
  454. private System.Windows.Forms.ToolStrip tsParameters;
  455. private System.Windows.Forms.ToolStripButton btnDeleteParameter;
  456. private System.Windows.Forms.ToolStripButton btnParameterUp;
  457. private System.Windows.Forms.ToolStripButton btnParameterDown;
  458. private System.Windows.Forms.PropertyGrid pgParamProperties;
  459. private System.Windows.Forms.ToolStripButton btnAddParameter;
  460. }
  461. }