MessengerForm.Designer.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. namespace FastReport.Messaging
  2. {
  3. partial class MessengerForm
  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.pageControl1 = new FastReport.Controls.PageControl();
  29. this.pgFile = new FastReport.Controls.PageControlPage();
  30. this.buttonSettings = new System.Windows.Forms.Button();
  31. this.cbFileType = new System.Windows.Forms.ComboBox();
  32. this.labelFileType = new System.Windows.Forms.Label();
  33. this.pgProxy = new FastReport.Controls.PageControlPage();
  34. this.tbProxyPassword = new System.Windows.Forms.TextBox();
  35. this.tbProxyUsername = new System.Windows.Forms.TextBox();
  36. this.tbProxyPort = new System.Windows.Forms.TextBox();
  37. this.tbProxyServer = new System.Windows.Forms.TextBox();
  38. this.labelProxyColon = new System.Windows.Forms.Label();
  39. this.labelProxyPassword = new System.Windows.Forms.Label();
  40. this.labelProxyUsername = new System.Windows.Forms.Label();
  41. this.labelProxyServer = new System.Windows.Forms.Label();
  42. this.pageControl1.SuspendLayout();
  43. this.pgFile.SuspendLayout();
  44. this.pgProxy.SuspendLayout();
  45. this.SuspendLayout();
  46. //
  47. // btnOk
  48. //
  49. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  50. this.btnOk.Location = new System.Drawing.Point(368, 138);
  51. this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
  52. //
  53. // btnCancel
  54. //
  55. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  56. this.btnCancel.Location = new System.Drawing.Point(449, 138);
  57. //
  58. // pageControl1
  59. //
  60. this.pageControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  61. | System.Windows.Forms.AnchorStyles.Left)
  62. | System.Windows.Forms.AnchorStyles.Right)));
  63. this.pageControl1.Controls.Add(this.pgFile);
  64. this.pageControl1.Controls.Add(this.pgProxy);
  65. this.pageControl1.HighlightPageIndex = -1;
  66. this.pageControl1.Location = new System.Drawing.Point(12, 12);
  67. this.pageControl1.Name = "pageControl1";
  68. this.pageControl1.SelectorWidth = 100;
  69. this.pageControl1.Size = new System.Drawing.Size(512, 120);
  70. this.pageControl1.TabIndex = 1;
  71. this.pageControl1.Text = "pageControl1";
  72. //
  73. // pgFile
  74. //
  75. this.pgFile.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  76. | System.Windows.Forms.AnchorStyles.Left)
  77. | System.Windows.Forms.AnchorStyles.Right)));
  78. this.pgFile.BackColor = System.Drawing.SystemColors.Window;
  79. this.pgFile.Controls.Add(this.buttonSettings);
  80. this.pgFile.Controls.Add(this.cbFileType);
  81. this.pgFile.Controls.Add(this.labelFileType);
  82. this.pgFile.Location = new System.Drawing.Point(100, 1);
  83. this.pgFile.Name = "pgFile";
  84. this.pgFile.Size = new System.Drawing.Size(411, 118);
  85. this.pgFile.TabIndex = 0;
  86. this.pgFile.Text = "File";
  87. //
  88. // buttonSettings
  89. //
  90. this.buttonSettings.Anchor = System.Windows.Forms.AnchorStyles.Right;
  91. this.buttonSettings.Enabled = false;
  92. this.buttonSettings.Location = new System.Drawing.Point(313, 40);
  93. this.buttonSettings.Name = "buttonSettings";
  94. this.buttonSettings.Size = new System.Drawing.Size(85, 23);
  95. this.buttonSettings.TabIndex = 0;
  96. this.buttonSettings.Text = "Settings...";
  97. this.buttonSettings.UseVisualStyleBackColor = true;
  98. this.buttonSettings.Click += new System.EventHandler(this.buttonSettings_Click);
  99. //
  100. // cbFileType
  101. //
  102. this.cbFileType.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
  103. this.cbFileType.FormattingEnabled = true;
  104. this.cbFileType.Location = new System.Drawing.Point(178, 13);
  105. this.cbFileType.Name = "cbFileType";
  106. this.cbFileType.Size = new System.Drawing.Size(220, 21);
  107. this.cbFileType.TabIndex = 1;
  108. this.cbFileType.SelectedIndexChanged += new System.EventHandler(this.cbFileType_SelectedIndexChanged);
  109. //
  110. // labelFileType
  111. //
  112. this.labelFileType.AutoSize = true;
  113. this.labelFileType.Location = new System.Drawing.Point(22, 16);
  114. this.labelFileType.Name = "labelFileType";
  115. this.labelFileType.Size = new System.Drawing.Size(54, 13);
  116. this.labelFileType.TabIndex = 2;
  117. this.labelFileType.Text = "File Type:";
  118. //
  119. // pgProxy
  120. //
  121. this.pgProxy.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  122. | System.Windows.Forms.AnchorStyles.Left)
  123. | System.Windows.Forms.AnchorStyles.Right)));
  124. this.pgProxy.BackColor = System.Drawing.SystemColors.Window;
  125. this.pgProxy.Controls.Add(this.tbProxyPassword);
  126. this.pgProxy.Controls.Add(this.tbProxyUsername);
  127. this.pgProxy.Controls.Add(this.tbProxyPort);
  128. this.pgProxy.Controls.Add(this.tbProxyServer);
  129. this.pgProxy.Controls.Add(this.labelProxyColon);
  130. this.pgProxy.Controls.Add(this.labelProxyPassword);
  131. this.pgProxy.Controls.Add(this.labelProxyUsername);
  132. this.pgProxy.Controls.Add(this.labelProxyServer);
  133. this.pgProxy.Dock = System.Windows.Forms.DockStyle.Fill;
  134. this.pgProxy.Location = new System.Drawing.Point(100, 1);
  135. this.pgProxy.Name = "pgProxy";
  136. this.pgProxy.Size = new System.Drawing.Size(411, 118);
  137. this.pgProxy.TabIndex = 1;
  138. this.pgProxy.Text = "Proxy";
  139. //
  140. // tbProxyPassword
  141. //
  142. this.tbProxyPassword.Location = new System.Drawing.Point(126, 83);
  143. this.tbProxyPassword.Name = "tbProxyPassword";
  144. this.tbProxyPassword.Size = new System.Drawing.Size(200, 20);
  145. this.tbProxyPassword.TabIndex = 0;
  146. this.tbProxyPassword.UseSystemPasswordChar = true;
  147. //
  148. // tbProxyUsername
  149. //
  150. this.tbProxyUsername.Location = new System.Drawing.Point(126, 57);
  151. this.tbProxyUsername.Name = "tbProxyUsername";
  152. this.tbProxyUsername.Size = new System.Drawing.Size(200, 20);
  153. this.tbProxyUsername.TabIndex = 1;
  154. //
  155. // tbProxyPort
  156. //
  157. this.tbProxyPort.Location = new System.Drawing.Point(349, 13);
  158. this.tbProxyPort.Name = "tbProxyPort";
  159. this.tbProxyPort.Size = new System.Drawing.Size(50, 20);
  160. this.tbProxyPort.TabIndex = 2;
  161. //
  162. // tbProxyServer
  163. //
  164. this.tbProxyServer.Location = new System.Drawing.Point(126, 13);
  165. this.tbProxyServer.Name = "tbProxyServer";
  166. this.tbProxyServer.Size = new System.Drawing.Size(200, 20);
  167. this.tbProxyServer.TabIndex = 3;
  168. //
  169. // labelProxyColon
  170. //
  171. this.labelProxyColon.AutoSize = true;
  172. this.labelProxyColon.Location = new System.Drawing.Point(332, 16);
  173. this.labelProxyColon.Name = "labelProxyColon";
  174. this.labelProxyColon.Size = new System.Drawing.Size(11, 13);
  175. this.labelProxyColon.TabIndex = 4;
  176. this.labelProxyColon.Text = ":";
  177. //
  178. // labelProxyPassword
  179. //
  180. this.labelProxyPassword.AutoSize = true;
  181. this.labelProxyPassword.Location = new System.Drawing.Point(22, 86);
  182. this.labelProxyPassword.Name = "labelProxyPassword";
  183. this.labelProxyPassword.Size = new System.Drawing.Size(57, 13);
  184. this.labelProxyPassword.TabIndex = 5;
  185. this.labelProxyPassword.Text = "Password:";
  186. //
  187. // labelProxyUsername
  188. //
  189. this.labelProxyUsername.AutoSize = true;
  190. this.labelProxyUsername.Location = new System.Drawing.Point(22, 60);
  191. this.labelProxyUsername.Name = "labelProxyUsername";
  192. this.labelProxyUsername.Size = new System.Drawing.Size(59, 13);
  193. this.labelProxyUsername.TabIndex = 6;
  194. this.labelProxyUsername.Text = "Username:";
  195. //
  196. // labelProxyServer
  197. //
  198. this.labelProxyServer.AutoSize = true;
  199. this.labelProxyServer.Location = new System.Drawing.Point(22, 16);
  200. this.labelProxyServer.Name = "labelProxyServer";
  201. this.labelProxyServer.Size = new System.Drawing.Size(43, 13);
  202. this.labelProxyServer.TabIndex = 7;
  203. this.labelProxyServer.Text = "Server:";
  204. //
  205. // MessengerForm
  206. //
  207. this.ClientSize = new System.Drawing.Size(536, 173);
  208. this.Controls.Add(this.pageControl1);
  209. this.Name = "MessengerForm";
  210. this.Text = "Send Report";
  211. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MessengerForm_FormClosing);
  212. this.Controls.SetChildIndex(this.btnCancel, 0);
  213. this.Controls.SetChildIndex(this.btnOk, 0);
  214. this.Controls.SetChildIndex(this.pageControl1, 0);
  215. this.pageControl1.ResumeLayout(false);
  216. this.pgFile.ResumeLayout(false);
  217. this.pgFile.PerformLayout();
  218. this.pgProxy.ResumeLayout(false);
  219. this.pgProxy.PerformLayout();
  220. this.ResumeLayout(false);
  221. }
  222. #endregion
  223. /// <summary>
  224. /// Page File.
  225. /// </summary>
  226. protected FastReport.Controls.PageControlPage pgFile;
  227. /// <summary>
  228. /// Page Proxy.
  229. /// </summary>
  230. protected FastReport.Controls.PageControlPage pgProxy;
  231. /// <summary>
  232. /// ComboBox File Type.
  233. /// </summary>
  234. protected System.Windows.Forms.ComboBox cbFileType;
  235. /// <summary>
  236. /// Label File Type.
  237. /// </summary>
  238. protected System.Windows.Forms.Label labelFileType;
  239. /// <summary>
  240. /// Buttons Settings.
  241. /// </summary>
  242. protected System.Windows.Forms.Button buttonSettings;
  243. /// <summary>
  244. /// Label Colon.
  245. /// </summary>
  246. protected System.Windows.Forms.Label labelProxyColon;
  247. /// <summary>
  248. /// Label Password.
  249. /// </summary>
  250. protected System.Windows.Forms.Label labelProxyPassword;
  251. /// <summary>
  252. /// Label Username.
  253. /// </summary>
  254. protected System.Windows.Forms.Label labelProxyUsername;
  255. /// <summary>
  256. /// Label Server.
  257. /// </summary>
  258. protected System.Windows.Forms.Label labelProxyServer;
  259. /// <summary>
  260. /// TextBox Username.
  261. /// </summary>
  262. protected System.Windows.Forms.TextBox tbProxyUsername;
  263. /// <summary>
  264. /// TextBox Port.
  265. /// </summary>
  266. protected System.Windows.Forms.TextBox tbProxyPort;
  267. /// <summary>
  268. /// TextBox Server.
  269. /// </summary>
  270. protected System.Windows.Forms.TextBox tbProxyServer;
  271. /// <summary>
  272. /// TextBox Password.
  273. /// </summary>
  274. protected System.Windows.Forms.TextBox tbProxyPassword;
  275. /// <summary>
  276. /// PageControl pageControl1.
  277. /// </summary>
  278. protected FastReport.Controls.PageControl pageControl1;
  279. }
  280. }