MsSqlConnectionEditor.Designer.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. using FastReport.Controls;
  2. namespace FastReport.Data.ConnectionEditors
  3. {
  4. partial class MsSqlConnectionEditor
  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.gbDatabase = new System.Windows.Forms.GroupBox();
  30. this.tbDatabaseFile = new FastReport.Controls.TextBoxButton();
  31. this.rbDatabaseFile = new System.Windows.Forms.RadioButton();
  32. this.cbxDatabaseName = new System.Windows.Forms.ComboBox();
  33. this.rbDatabaseName = new System.Windows.Forms.RadioButton();
  34. this.cbxServer = new System.Windows.Forms.ComboBox();
  35. this.lblServer = new System.Windows.Forms.Label();
  36. this.gbServerLogon = new System.Windows.Forms.GroupBox();
  37. this.cbSavePassword = new System.Windows.Forms.CheckBox();
  38. this.tbPassword = new System.Windows.Forms.TextBox();
  39. this.tbUserName = new System.Windows.Forms.TextBox();
  40. this.lblPassword = new System.Windows.Forms.Label();
  41. this.lblUserName = new System.Windows.Forms.Label();
  42. this.rbUseSql = new System.Windows.Forms.RadioButton();
  43. this.rbUseWindows = new System.Windows.Forms.RadioButton();
  44. this.btnAdvanced = new System.Windows.Forms.Button();
  45. this.gbDatabase.SuspendLayout();
  46. this.gbServerLogon.SuspendLayout();
  47. this.SuspendLayout();
  48. //
  49. // gbDatabase
  50. //
  51. this.gbDatabase.Controls.Add(this.tbDatabaseFile);
  52. this.gbDatabase.Controls.Add(this.rbDatabaseFile);
  53. this.gbDatabase.Controls.Add(this.cbxDatabaseName);
  54. this.gbDatabase.Controls.Add(this.rbDatabaseName);
  55. this.gbDatabase.Controls.Add(this.btnAdvanced);
  56. this.gbDatabase.Location = new System.Drawing.Point(8, 200);
  57. this.gbDatabase.Name = "gbDatabase";
  58. this.gbDatabase.Size = new System.Drawing.Size(320, 148);
  59. this.gbDatabase.TabIndex = 3;
  60. this.gbDatabase.TabStop = false;
  61. this.gbDatabase.Text = "Connect to a database";
  62. //
  63. // tbDatabaseFile
  64. //
  65. this.tbDatabaseFile.ButtonText = "";
  66. this.tbDatabaseFile.Image = null;
  67. this.tbDatabaseFile.Location = new System.Drawing.Point(32, 92);
  68. this.tbDatabaseFile.Name = "tbDatabaseFile";
  69. this.tbDatabaseFile.Size = new System.Drawing.Size(276, 21);
  70. this.tbDatabaseFile.TabIndex = 3;
  71. this.tbDatabaseFile.ButtonClick += new System.EventHandler(this.tbDatabaseFile_ButtonClick);
  72. //
  73. // rbDatabaseFile
  74. //
  75. this.rbDatabaseFile.AutoSize = true;
  76. this.rbDatabaseFile.Location = new System.Drawing.Point(12, 72);
  77. this.rbDatabaseFile.Name = "rbDatabaseFile";
  78. this.rbDatabaseFile.Size = new System.Drawing.Size(131, 17);
  79. this.rbDatabaseFile.TabIndex = 2;
  80. this.rbDatabaseFile.TabStop = true;
  81. this.rbDatabaseFile.Text = "Attach a database file:";
  82. this.rbDatabaseFile.UseVisualStyleBackColor = true;
  83. this.rbDatabaseFile.CheckedChanged += new System.EventHandler(this.UpdateControls);
  84. //
  85. // cbxDatabaseName
  86. //
  87. this.cbxDatabaseName.FormattingEnabled = true;
  88. this.cbxDatabaseName.Location = new System.Drawing.Point(32, 40);
  89. this.cbxDatabaseName.Name = "cbxDatabaseName";
  90. this.cbxDatabaseName.Size = new System.Drawing.Size(276, 21);
  91. this.cbxDatabaseName.TabIndex = 1;
  92. this.cbxDatabaseName.DropDown += new System.EventHandler(this.cbxDatabaseName_DropDown);
  93. //
  94. // rbDatabaseName
  95. //
  96. this.rbDatabaseName.AutoSize = true;
  97. this.rbDatabaseName.Location = new System.Drawing.Point(12, 20);
  98. this.rbDatabaseName.Name = "rbDatabaseName";
  99. this.rbDatabaseName.Size = new System.Drawing.Size(182, 17);
  100. this.rbDatabaseName.TabIndex = 0;
  101. this.rbDatabaseName.TabStop = true;
  102. this.rbDatabaseName.Text = "Select or enter a database name:";
  103. this.rbDatabaseName.UseVisualStyleBackColor = true;
  104. this.rbDatabaseName.CheckedChanged += new System.EventHandler(this.UpdateControls);
  105. //
  106. // cbxServer
  107. //
  108. this.cbxServer.FormattingEnabled = true;
  109. this.cbxServer.Location = new System.Drawing.Point(8, 24);
  110. this.cbxServer.Name = "cbxServer";
  111. this.cbxServer.Size = new System.Drawing.Size(320, 21);
  112. this.cbxServer.TabIndex = 1;
  113. this.cbxServer.DropDown += new System.EventHandler(this.cbxServer_DropDown);
  114. this.cbxServer.TextChanged += new System.EventHandler(this.ServerOrLoginChanged);
  115. //
  116. // lblServer
  117. //
  118. this.lblServer.AutoSize = true;
  119. this.lblServer.Location = new System.Drawing.Point(8, 8);
  120. this.lblServer.Name = "lblServer";
  121. this.lblServer.Size = new System.Drawing.Size(70, 13);
  122. this.lblServer.TabIndex = 5;
  123. this.lblServer.Text = "Server name:";
  124. //
  125. // gbServerLogon
  126. //
  127. this.gbServerLogon.Controls.Add(this.cbSavePassword);
  128. this.gbServerLogon.Controls.Add(this.tbPassword);
  129. this.gbServerLogon.Controls.Add(this.tbUserName);
  130. this.gbServerLogon.Controls.Add(this.lblPassword);
  131. this.gbServerLogon.Controls.Add(this.lblUserName);
  132. this.gbServerLogon.Controls.Add(this.rbUseSql);
  133. this.gbServerLogon.Controls.Add(this.rbUseWindows);
  134. this.gbServerLogon.Location = new System.Drawing.Point(8, 52);
  135. this.gbServerLogon.Name = "gbServerLogon";
  136. this.gbServerLogon.Size = new System.Drawing.Size(320, 144);
  137. this.gbServerLogon.TabIndex = 2;
  138. this.gbServerLogon.TabStop = false;
  139. this.gbServerLogon.Text = "Log on to the server";
  140. //
  141. // cbSavePassword
  142. //
  143. this.cbSavePassword.AutoSize = true;
  144. this.cbSavePassword.Location = new System.Drawing.Point(120, 116);
  145. this.cbSavePassword.Name = "cbSavePassword";
  146. this.cbSavePassword.Size = new System.Drawing.Size(115, 17);
  147. this.cbSavePassword.TabIndex = 4;
  148. this.cbSavePassword.Text = "Save my password";
  149. this.cbSavePassword.UseVisualStyleBackColor = true;
  150. //
  151. // tbPassword
  152. //
  153. this.tbPassword.Location = new System.Drawing.Point(120, 92);
  154. this.tbPassword.Name = "tbPassword";
  155. this.tbPassword.Size = new System.Drawing.Size(188, 20);
  156. this.tbPassword.TabIndex = 3;
  157. this.tbPassword.UseSystemPasswordChar = true;
  158. this.tbPassword.TextChanged += new System.EventHandler(this.ServerOrLoginChanged);
  159. //
  160. // tbUserName
  161. //
  162. this.tbUserName.Location = new System.Drawing.Point(120, 68);
  163. this.tbUserName.Name = "tbUserName";
  164. this.tbUserName.Size = new System.Drawing.Size(188, 20);
  165. this.tbUserName.TabIndex = 2;
  166. this.tbUserName.TextChanged += new System.EventHandler(this.ServerOrLoginChanged);
  167. //
  168. // lblPassword
  169. //
  170. this.lblPassword.AutoSize = true;
  171. this.lblPassword.Location = new System.Drawing.Point(28, 96);
  172. this.lblPassword.Name = "lblPassword";
  173. this.lblPassword.Size = new System.Drawing.Size(56, 13);
  174. this.lblPassword.TabIndex = 2;
  175. this.lblPassword.Text = "Password:";
  176. //
  177. // lblUserName
  178. //
  179. this.lblUserName.AutoSize = true;
  180. this.lblUserName.Location = new System.Drawing.Point(28, 72);
  181. this.lblUserName.Name = "lblUserName";
  182. this.lblUserName.Size = new System.Drawing.Size(61, 13);
  183. this.lblUserName.TabIndex = 1;
  184. this.lblUserName.Text = "User name:";
  185. //
  186. // rbUseSql
  187. //
  188. this.rbUseSql.AutoSize = true;
  189. this.rbUseSql.Location = new System.Drawing.Point(12, 44);
  190. this.rbUseSql.Name = "rbUseSql";
  191. this.rbUseSql.Size = new System.Drawing.Size(173, 17);
  192. this.rbUseSql.TabIndex = 1;
  193. this.rbUseSql.TabStop = true;
  194. this.rbUseSql.Text = "Use SQL Server Authentication";
  195. this.rbUseSql.UseVisualStyleBackColor = true;
  196. this.rbUseSql.CheckedChanged += new System.EventHandler(this.ServerOrLoginChanged);
  197. //
  198. // rbUseWindows
  199. //
  200. this.rbUseWindows.AutoSize = true;
  201. this.rbUseWindows.Location = new System.Drawing.Point(12, 20);
  202. this.rbUseWindows.Name = "rbUseWindows";
  203. this.rbUseWindows.Size = new System.Drawing.Size(162, 17);
  204. this.rbUseWindows.TabIndex = 0;
  205. this.rbUseWindows.TabStop = true;
  206. this.rbUseWindows.Text = "Use Windows Authentication";
  207. this.rbUseWindows.UseVisualStyleBackColor = true;
  208. this.rbUseWindows.CheckedChanged += new System.EventHandler(this.ServerOrLoginChanged);
  209. //
  210. // btnAdvanced
  211. //
  212. this.btnAdvanced.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  213. this.btnAdvanced.AutoSize = true;
  214. this.btnAdvanced.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  215. this.btnAdvanced.Location = new System.Drawing.Point(234, 118);
  216. this.btnAdvanced.Name = "btnAdvanced";
  217. this.btnAdvanced.Size = new System.Drawing.Size(75, 23);
  218. this.btnAdvanced.TabIndex = 4;
  219. this.btnAdvanced.Text = "Advanced...";
  220. this.btnAdvanced.UseVisualStyleBackColor = true;
  221. this.btnAdvanced.Click += new System.EventHandler(this.btnAdvanced_Click);
  222. //
  223. // MsSqlConnectionEditor
  224. //
  225. this.Controls.Add(this.gbDatabase);
  226. this.Controls.Add(this.cbxServer);
  227. this.Controls.Add(this.lblServer);
  228. this.Controls.Add(this.gbServerLogon);
  229. this.Name = "MsSqlConnectionEditor";
  230. this.Size = new System.Drawing.Size(336, 360);
  231. this.gbDatabase.ResumeLayout(false);
  232. this.gbDatabase.PerformLayout();
  233. this.gbServerLogon.ResumeLayout(false);
  234. this.gbServerLogon.PerformLayout();
  235. this.ResumeLayout(false);
  236. this.PerformLayout();
  237. }
  238. #endregion
  239. private System.Windows.Forms.GroupBox gbDatabase;
  240. private FastReport.Controls.TextBoxButton tbDatabaseFile;
  241. private System.Windows.Forms.ComboBox cbxDatabaseName;
  242. private System.Windows.Forms.ComboBox cbxServer;
  243. private System.Windows.Forms.Label lblServer;
  244. private System.Windows.Forms.GroupBox gbServerLogon;
  245. private System.Windows.Forms.CheckBox cbSavePassword;
  246. private System.Windows.Forms.TextBox tbPassword;
  247. private System.Windows.Forms.TextBox tbUserName;
  248. private System.Windows.Forms.Label lblPassword;
  249. private System.Windows.Forms.Label lblUserName;
  250. private FastReport.Controls.LabelLine labelLine1;
  251. private System.Windows.Forms.Button btnAdvanced;
  252. private System.Windows.Forms.RadioButton rbDatabaseFile;
  253. private System.Windows.Forms.RadioButton rbDatabaseName;
  254. private System.Windows.Forms.RadioButton rbUseSql;
  255. private System.Windows.Forms.RadioButton rbUseWindows;
  256. }
  257. }