OdbcConnectionEditor.Designer.cs 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. using FastReport.Controls;
  2. namespace FastReport.Data.ConnectionEditors
  3. {
  4. partial class OdbcConnectionEditor
  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.btnAdvanced = new System.Windows.Forms.Button();
  30. this.gbDatasource = new System.Windows.Forms.GroupBox();
  31. this.tbConnectionString = new FastReport.Controls.TextBoxButton();
  32. this.rbConnectionString = new System.Windows.Forms.RadioButton();
  33. this.cbxDsName = new System.Windows.Forms.ComboBox();
  34. this.rbDsName = new System.Windows.Forms.RadioButton();
  35. this.gbLogin = new System.Windows.Forms.GroupBox();
  36. this.tbPassword = new System.Windows.Forms.TextBox();
  37. this.tbUserName = new System.Windows.Forms.TextBox();
  38. this.lblPassword = new System.Windows.Forms.Label();
  39. this.lblUserName = new System.Windows.Forms.Label();
  40. this.gbDatasource.SuspendLayout();
  41. this.gbLogin.SuspendLayout();
  42. this.SuspendLayout();
  43. //
  44. // btnAdvanced
  45. //
  46. this.btnAdvanced.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  47. this.btnAdvanced.AutoSize = true;
  48. this.btnAdvanced.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  49. this.btnAdvanced.Location = new System.Drawing.Point(234, 70);
  50. this.btnAdvanced.Name = "btnAdvanced";
  51. this.btnAdvanced.Size = new System.Drawing.Size(75, 23);
  52. this.btnAdvanced.TabIndex = 6;
  53. this.btnAdvanced.Text = "Advanced...";
  54. this.btnAdvanced.UseVisualStyleBackColor = true;
  55. this.btnAdvanced.Click += new System.EventHandler(this.btnAdvanced_Click);
  56. //
  57. // gbDatasource
  58. //
  59. this.gbDatasource.Controls.Add(this.tbConnectionString);
  60. this.gbDatasource.Controls.Add(this.rbConnectionString);
  61. this.gbDatasource.Controls.Add(this.cbxDsName);
  62. this.gbDatasource.Controls.Add(this.rbDsName);
  63. this.gbDatasource.Location = new System.Drawing.Point(8, 4);
  64. this.gbDatasource.Name = "gbDatasource";
  65. this.gbDatasource.Size = new System.Drawing.Size(320, 128);
  66. this.gbDatasource.TabIndex = 0;
  67. this.gbDatasource.TabStop = false;
  68. this.gbDatasource.Text = "Data source";
  69. //
  70. // tbConnectionString
  71. //
  72. this.tbConnectionString.ButtonText = "";
  73. this.tbConnectionString.Image = null;
  74. this.tbConnectionString.Location = new System.Drawing.Point(32, 92);
  75. this.tbConnectionString.Name = "tbConnectionString";
  76. this.tbConnectionString.Size = new System.Drawing.Size(276, 21);
  77. this.tbConnectionString.TabIndex = 3;
  78. this.tbConnectionString.ButtonClick += new System.EventHandler(this.tbConnectionString_ButtonClick);
  79. //
  80. // rbConnectionString
  81. //
  82. this.rbConnectionString.AutoSize = true;
  83. this.rbConnectionString.Location = new System.Drawing.Point(12, 72);
  84. this.rbConnectionString.Name = "rbConnectionString";
  85. this.rbConnectionString.Size = new System.Drawing.Size(131, 17);
  86. this.rbConnectionString.TabIndex = 1;
  87. this.rbConnectionString.TabStop = true;
  88. this.rbConnectionString.Text = "Use connection string:";
  89. this.rbConnectionString.UseVisualStyleBackColor = true;
  90. this.rbConnectionString.CheckedChanged += new System.EventHandler(this.rbDsName_CheckedChanged);
  91. //
  92. // cbxDsName
  93. //
  94. this.cbxDsName.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  95. this.cbxDsName.FormattingEnabled = true;
  96. this.cbxDsName.Location = new System.Drawing.Point(32, 40);
  97. this.cbxDsName.Name = "cbxDsName";
  98. this.cbxDsName.Size = new System.Drawing.Size(276, 21);
  99. this.cbxDsName.TabIndex = 2;
  100. this.cbxDsName.SelectedIndexChanged += new System.EventHandler(this.cbxDsName_SelectedIndexChanged);
  101. //
  102. // rbDsName
  103. //
  104. this.rbDsName.AutoSize = true;
  105. this.rbDsName.Location = new System.Drawing.Point(12, 20);
  106. this.rbDsName.Name = "rbDsName";
  107. this.rbDsName.Size = new System.Drawing.Size(205, 17);
  108. this.rbDsName.TabIndex = 0;
  109. this.rbDsName.TabStop = true;
  110. this.rbDsName.Text = "Use user or system data source name:";
  111. this.rbDsName.UseVisualStyleBackColor = true;
  112. this.rbDsName.CheckedChanged += new System.EventHandler(this.rbDsName_CheckedChanged);
  113. //
  114. // gbLogin
  115. //
  116. this.gbLogin.Controls.Add(this.tbPassword);
  117. this.gbLogin.Controls.Add(this.tbUserName);
  118. this.gbLogin.Controls.Add(this.lblPassword);
  119. this.gbLogin.Controls.Add(this.lblUserName);
  120. this.gbLogin.Controls.Add(this.btnAdvanced);
  121. this.gbLogin.Location = new System.Drawing.Point(8, 136);
  122. this.gbLogin.Name = "gbLogin";
  123. this.gbLogin.Size = new System.Drawing.Size(320, 103);
  124. this.gbLogin.TabIndex = 1;
  125. this.gbLogin.TabStop = false;
  126. this.gbLogin.Text = "Login";
  127. //
  128. // tbPassword
  129. //
  130. this.tbPassword.Location = new System.Drawing.Point(120, 44);
  131. this.tbPassword.Name = "tbPassword";
  132. this.tbPassword.Size = new System.Drawing.Size(188, 20);
  133. this.tbPassword.TabIndex = 5;
  134. this.tbPassword.UseSystemPasswordChar = true;
  135. //
  136. // tbUserName
  137. //
  138. this.tbUserName.Location = new System.Drawing.Point(120, 20);
  139. this.tbUserName.Name = "tbUserName";
  140. this.tbUserName.Size = new System.Drawing.Size(188, 20);
  141. this.tbUserName.TabIndex = 4;
  142. //
  143. // lblPassword
  144. //
  145. this.lblPassword.AutoSize = true;
  146. this.lblPassword.Location = new System.Drawing.Point(12, 48);
  147. this.lblPassword.Name = "lblPassword";
  148. this.lblPassword.Size = new System.Drawing.Size(56, 13);
  149. this.lblPassword.TabIndex = 2;
  150. this.lblPassword.Text = "Password:";
  151. //
  152. // lblUserName
  153. //
  154. this.lblUserName.AutoSize = true;
  155. this.lblUserName.Location = new System.Drawing.Point(12, 24);
  156. this.lblUserName.Name = "lblUserName";
  157. this.lblUserName.Size = new System.Drawing.Size(61, 13);
  158. this.lblUserName.TabIndex = 1;
  159. this.lblUserName.Text = "User name:";
  160. //
  161. // OdbcConnectionEditor
  162. //
  163. //this.Controls.Add(this.btnAdvanced);
  164. this.Controls.Add(this.gbDatasource);
  165. this.Controls.Add(this.gbLogin);
  166. this.Name = "OdbcConnectionEditor";
  167. this.Size = new System.Drawing.Size(336, 250);
  168. this.gbDatasource.ResumeLayout(false);
  169. this.gbDatasource.PerformLayout();
  170. this.gbLogin.ResumeLayout(false);
  171. this.gbLogin.PerformLayout();
  172. this.ResumeLayout(false);
  173. this.PerformLayout();
  174. }
  175. #endregion
  176. private FastReport.Controls.LabelLine labelLine1;
  177. private System.Windows.Forms.Button btnAdvanced;
  178. private System.Windows.Forms.GroupBox gbDatasource;
  179. private FastReport.Controls.TextBoxButton tbConnectionString;
  180. private System.Windows.Forms.ComboBox cbxDsName;
  181. private System.Windows.Forms.GroupBox gbLogin;
  182. private System.Windows.Forms.TextBox tbPassword;
  183. private System.Windows.Forms.TextBox tbUserName;
  184. private System.Windows.Forms.Label lblPassword;
  185. private System.Windows.Forms.Label lblUserName;
  186. private System.Windows.Forms.RadioButton rbConnectionString;
  187. private System.Windows.Forms.RadioButton rbDsName;
  188. }
  189. }