MsAccessConnectionEditor.Designer.cs 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. namespace FastReport.Data.ConnectionEditors
  2. {
  3. partial class MsAccessConnectionEditor
  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.gbDatabase = new System.Windows.Forms.GroupBox();
  29. this.tbPassword = new System.Windows.Forms.TextBox();
  30. this.tbUserName = new System.Windows.Forms.TextBox();
  31. this.lblPassword = new System.Windows.Forms.Label();
  32. this.lblUserName = new System.Windows.Forms.Label();
  33. this.tbDatabase = new FastReport.Controls.TextBoxButton();
  34. this.lblDatabase = new System.Windows.Forms.Label();
  35. this.btnAdvanced = new System.Windows.Forms.Button();
  36. this.cbxProvider = new System.Windows.Forms.ComboBox();
  37. this.lbProvider = new System.Windows.Forms.Label();
  38. this.gbDatabase.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // gbDatabase
  42. //
  43. this.gbDatabase.Controls.Add(this.tbPassword);
  44. this.gbDatabase.Controls.Add(this.tbUserName);
  45. this.gbDatabase.Controls.Add(this.lblPassword);
  46. this.gbDatabase.Controls.Add(this.lblUserName);
  47. this.gbDatabase.Controls.Add(this.tbDatabase);
  48. this.gbDatabase.Controls.Add(this.lblDatabase);
  49. this.gbDatabase.Controls.Add(this.cbxProvider);
  50. this.gbDatabase.Controls.Add(this.lbProvider);
  51. this.gbDatabase.Controls.Add(this.btnAdvanced);
  52. this.gbDatabase.Location = new System.Drawing.Point(8, 4);
  53. this.gbDatabase.Name = "gbDatabase";
  54. this.gbDatabase.Size = new System.Drawing.Size(320, 190);
  55. this.gbDatabase.TabIndex = 0;
  56. this.gbDatabase.TabStop = false;
  57. this.gbDatabase.Text = "Database";
  58. //
  59. // tbPassword
  60. //
  61. this.tbPassword.Location = new System.Drawing.Point(120, 126);
  62. this.tbPassword.Name = "tbPassword";
  63. this.tbPassword.Size = new System.Drawing.Size(188, 20);
  64. this.tbPassword.TabIndex = 4;
  65. this.tbPassword.UseSystemPasswordChar = true;
  66. //
  67. // tbUserName
  68. //
  69. this.tbUserName.Location = new System.Drawing.Point(120, 102);
  70. this.tbUserName.Name = "tbUserName";
  71. this.tbUserName.Size = new System.Drawing.Size(188, 20);
  72. this.tbUserName.TabIndex = 3;
  73. //
  74. // lblPassword
  75. //
  76. this.lblPassword.AutoSize = true;
  77. this.lblPassword.Location = new System.Drawing.Point(12, 130);
  78. this.lblPassword.Name = "lblPassword";
  79. this.lblPassword.Size = new System.Drawing.Size(56, 13);
  80. this.lblPassword.TabIndex = 3;
  81. this.lblPassword.Text = "Password:";
  82. //
  83. // lblUserName
  84. //
  85. this.lblUserName.AutoSize = true;
  86. this.lblUserName.Location = new System.Drawing.Point(12, 106);
  87. this.lblUserName.Name = "lblUserName";
  88. this.lblUserName.Size = new System.Drawing.Size(61, 13);
  89. this.lblUserName.TabIndex = 2;
  90. this.lblUserName.Text = "User name:";
  91. //
  92. // tbDatabase
  93. //
  94. this.tbDatabase.ButtonText = "";
  95. this.tbDatabase.Image = null;
  96. this.tbDatabase.Location = new System.Drawing.Point(12, 40);
  97. this.tbDatabase.Name = "tbDatabase";
  98. this.tbDatabase.Size = new System.Drawing.Size(296, 21);
  99. this.tbDatabase.TabIndex = 1;
  100. this.tbDatabase.ButtonClick += new System.EventHandler(this.tbDatabase_ButtonClick);
  101. //
  102. // lblDatabase
  103. //
  104. this.lblDatabase.AutoSize = true;
  105. this.lblDatabase.Location = new System.Drawing.Point(12, 20);
  106. this.lblDatabase.Name = "lblDatabase";
  107. this.lblDatabase.Size = new System.Drawing.Size(101, 13);
  108. this.lblDatabase.TabIndex = 0;
  109. this.lblDatabase.Text = "Database file name:";
  110. //
  111. // btnAdvanced
  112. //
  113. this.btnAdvanced.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  114. this.btnAdvanced.AutoSize = true;
  115. this.btnAdvanced.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  116. this.btnAdvanced.Location = new System.Drawing.Point(234, 156);
  117. this.btnAdvanced.Name = "btnAdvanced";
  118. this.btnAdvanced.Size = new System.Drawing.Size(75, 23);
  119. this.btnAdvanced.TabIndex = 5;
  120. this.btnAdvanced.Text = "Advanced...";
  121. this.btnAdvanced.UseVisualStyleBackColor = true;
  122. this.btnAdvanced.Click += new System.EventHandler(this.btnAdvanced_Click);
  123. //
  124. // lbProvider
  125. //
  126. this.lbProvider.Location = new System.Drawing.Point(12, 80);
  127. this.lbProvider.Name = "lbProvider";
  128. this.lbProvider.Size = new System.Drawing.Size(100, 16);
  129. this.lbProvider.Text = "Provider:";
  130. this.lbProvider.TabIndex = 6;
  131. //
  132. // cbxProvider
  133. //
  134. this.cbxProvider.Location = new System.Drawing.Point(120, 76);
  135. this.cbxProvider.Name = "cbxProvider";
  136. this.cbxProvider.Size = new System.Drawing.Size(188, 16);
  137. this.cbxProvider.TabIndex = 2;
  138. this.cbxProvider.Items.AddRange(MsAccessDataConnection.ProviderList);
  139. this.cbxProvider.SelectedIndex = 0;
  140. this.cbxProvider.SelectedIndexChanged += CbxProvider_SelectedIndexChanged;
  141. //
  142. // MsAccessConnectionEditor
  143. //
  144. this.Controls.Add(this.gbDatabase);
  145. this.Name = "MsAccessConnectionEditor";
  146. this.Size = new System.Drawing.Size(336, 200);
  147. this.gbDatabase.ResumeLayout(false);
  148. this.gbDatabase.PerformLayout();
  149. this.ResumeLayout(false);
  150. this.PerformLayout();
  151. }
  152. #endregion
  153. private System.Windows.Forms.GroupBox gbDatabase;
  154. private System.Windows.Forms.TextBox tbPassword;
  155. private System.Windows.Forms.TextBox tbUserName;
  156. private System.Windows.Forms.Label lblPassword;
  157. private System.Windows.Forms.Label lblUserName;
  158. private FastReport.Controls.TextBoxButton tbDatabase;
  159. private System.Windows.Forms.Label lblDatabase;
  160. private System.Windows.Forms.Button btnAdvanced;
  161. private FastReport.Controls.LabelLine labelLine1;
  162. private System.Windows.Forms.ComboBox cbxProvider;
  163. private System.Windows.Forms.Label lbProvider;
  164. }
  165. }