OleDbConnectionEditor.Designer.cs 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. namespace FastReport.Data.ConnectionEditors
  2. {
  3. partial class OleDbConnectionEditor
  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.gbConnection = new System.Windows.Forms.GroupBox();
  29. this.tbConnection = new System.Windows.Forms.TextBox();
  30. this.btnBuild = new System.Windows.Forms.Button();
  31. this.gbConnection.SuspendLayout();
  32. this.SuspendLayout();
  33. //
  34. // gbConnection
  35. //
  36. this.gbConnection.Controls.Add(this.tbConnection);
  37. this.gbConnection.Controls.Add(this.btnBuild);
  38. this.gbConnection.Location = new System.Drawing.Point(8, 4);
  39. this.gbConnection.Name = "gbConnection";
  40. this.gbConnection.Size = new System.Drawing.Size(320, 136);
  41. this.gbConnection.TabIndex = 1;
  42. this.gbConnection.TabStop = false;
  43. this.gbConnection.Text = "Connection string:";
  44. //
  45. // tbConnection
  46. //
  47. this.tbConnection.AcceptsReturn = true;
  48. this.tbConnection.Location = new System.Drawing.Point(12, 52);
  49. this.tbConnection.Multiline = true;
  50. this.tbConnection.Name = "tbConnection";
  51. this.tbConnection.Size = new System.Drawing.Size(296, 72);
  52. this.tbConnection.TabIndex = 2;
  53. //
  54. // btnBuild
  55. //
  56. this.btnBuild.Location = new System.Drawing.Point(232, 20);
  57. this.btnBuild.Name = "btnBuild";
  58. this.btnBuild.Size = new System.Drawing.Size(75, 23);
  59. this.btnBuild.TabIndex = 1;
  60. this.btnBuild.Text = "Build...";
  61. this.btnBuild.UseVisualStyleBackColor = true;
  62. this.btnBuild.Click += new System.EventHandler(this.btnBuild_Click);
  63. //
  64. // OleDbConnectionEditor
  65. //
  66. this.Controls.Add(this.gbConnection);
  67. this.Name = "OleDbConnectionEditor";
  68. this.Size = new System.Drawing.Size(336, 148);
  69. this.gbConnection.ResumeLayout(false);
  70. this.gbConnection.PerformLayout();
  71. this.ResumeLayout(false);
  72. }
  73. #endregion
  74. private System.Windows.Forms.GroupBox gbConnection;
  75. private System.Windows.Forms.TextBox tbConnection;
  76. private System.Windows.Forms.Button btnBuild;
  77. }
  78. }