Advertisement
Guest User

design

a guest
Feb 1st, 2018
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.42 KB | None | 0 0
  1. namespace SMTP_Testing
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  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.  
  23. #region Windows Form Designer generated code
  24.  
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.lb_host = new System.Windows.Forms.Label();
  32. this.tb_host = new System.Windows.Forms.TextBox();
  33. this.tb_from = new System.Windows.Forms.TextBox();
  34. this.tb_subject = new System.Windows.Forms.TextBox();
  35. this.tb_port = new System.Windows.Forms.TextBox();
  36. this.tb_to = new System.Windows.Forms.TextBox();
  37. this.tb_sign = new System.Windows.Forms.TextBox();
  38. this.lb_from = new System.Windows.Forms.Label();
  39. this.lb_subject = new System.Windows.Forms.Label();
  40. this.lb_port = new System.Windows.Forms.Label();
  41. this.lb_to = new System.Windows.Forms.Label();
  42. this.lb_sign = new System.Windows.Forms.Label();
  43. this.tb_user = new System.Windows.Forms.TextBox();
  44. this.tb_pw = new System.Windows.Forms.TextBox();
  45. this.lb_user = new System.Windows.Forms.Label();
  46. this.lb_pw = new System.Windows.Forms.Label();
  47. this.but_open = new System.Windows.Forms.Button();
  48. this.but_connect = new System.Windows.Forms.Button();
  49. this.but_helo = new System.Windows.Forms.Button();
  50. this.but_mail = new System.Windows.Forms.Button();
  51. this.but_mailfrom = new System.Windows.Forms.Button();
  52. this.but_rcptto = new System.Windows.Forms.Button();
  53. this.but_data = new System.Windows.Forms.Button();
  54. this.but_quit = new System.Windows.Forms.Button();
  55. this.but_abort = new System.Windows.Forms.Button();
  56. this.but_clearinfo = new System.Windows.Forms.Button();
  57. this.cb_ssl = new System.Windows.Forms.CheckBox();
  58. this.mtb_body = new System.Windows.Forms.TextBox();
  59. this.lb_body = new System.Windows.Forms.Label();
  60. this.mbt_infomsg = new System.Windows.Forms.TextBox();
  61. this.lb_infobox = new System.Windows.Forms.Label();
  62. this.SuspendLayout();
  63. //
  64. // lb_host
  65. //
  66. this.lb_host.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  67. this.lb_host.Location = new System.Drawing.Point(12, 12);
  68. this.lb_host.Name = "lb_host";
  69. this.lb_host.Size = new System.Drawing.Size(54, 23);
  70. this.lb_host.TabIndex = 0;
  71. this.lb_host.Text = "Host:";
  72. this.lb_host.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  73. //
  74. // tb_host
  75. //
  76. this.tb_host.Location = new System.Drawing.Point(72, 12);
  77. this.tb_host.Name = "tb_host";
  78. this.tb_host.Size = new System.Drawing.Size(216, 20);
  79. this.tb_host.TabIndex = 1;
  80. this.tb_host.Text = "uit.telenet.be";
  81. //
  82. // tb_from
  83. //
  84. this.tb_from.Location = new System.Drawing.Point(72, 38);
  85. this.tb_from.Name = "tb_from";
  86. this.tb_from.Size = new System.Drawing.Size(216, 20);
  87. this.tb_from.TabIndex = 2;
  88. this.tb_from.Text = "dvbeeck@jomasecundair.be";
  89. //
  90. // tb_subject
  91. //
  92. this.tb_subject.Location = new System.Drawing.Point(72, 66);
  93. this.tb_subject.Name = "tb_subject";
  94. this.tb_subject.Size = new System.Drawing.Size(216, 20);
  95. this.tb_subject.TabIndex = 3;
  96. this.tb_subject.Text = "Subject";
  97. //
  98. // tb_port
  99. //
  100. this.tb_port.Location = new System.Drawing.Point(72, 93);
  101. this.tb_port.Name = "tb_port";
  102. this.tb_port.Size = new System.Drawing.Size(216, 20);
  103. this.tb_port.TabIndex = 4;
  104. this.tb_port.Text = "25";
  105. //
  106. // tb_to
  107. //
  108. this.tb_to.Location = new System.Drawing.Point(72, 120);
  109. this.tb_to.Name = "tb_to";
  110. this.tb_to.Size = new System.Drawing.Size(216, 20);
  111. this.tb_to.TabIndex = 5;
  112. this.tb_to.Text = "verbeeck.diego@gmail.com";
  113. //
  114. // tb_sign
  115. //
  116. this.tb_sign.Location = new System.Drawing.Point(72, 147);
  117. this.tb_sign.Name = "tb_sign";
  118. this.tb_sign.Size = new System.Drawing.Size(216, 20);
  119. this.tb_sign.TabIndex = 6;
  120. this.tb_sign.Text = "exatis.be";
  121. //
  122. // lb_from
  123. //
  124. this.lb_from.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  125. this.lb_from.Location = new System.Drawing.Point(12, 38);
  126. this.lb_from.Name = "lb_from";
  127. this.lb_from.Size = new System.Drawing.Size(54, 23);
  128. this.lb_from.TabIndex = 7;
  129. this.lb_from.Text = "From:";
  130. this.lb_from.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  131. //
  132. // lb_subject
  133. //
  134. this.lb_subject.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  135. this.lb_subject.Location = new System.Drawing.Point(12, 66);
  136. this.lb_subject.Name = "lb_subject";
  137. this.lb_subject.Size = new System.Drawing.Size(54, 23);
  138. this.lb_subject.TabIndex = 8;
  139. this.lb_subject.Text = "Subject:";
  140. this.lb_subject.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  141. //
  142. // lb_port
  143. //
  144. this.lb_port.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  145. this.lb_port.Location = new System.Drawing.Point(12, 93);
  146. this.lb_port.Name = "lb_port";
  147. this.lb_port.Size = new System.Drawing.Size(54, 23);
  148. this.lb_port.TabIndex = 9;
  149. this.lb_port.Text = "Port:";
  150. this.lb_port.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  151. //
  152. // lb_to
  153. //
  154. this.lb_to.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  155. this.lb_to.Location = new System.Drawing.Point(12, 120);
  156. this.lb_to.Name = "lb_to";
  157. this.lb_to.Size = new System.Drawing.Size(54, 23);
  158. this.lb_to.TabIndex = 10;
  159. this.lb_to.Text = "To:";
  160. this.lb_to.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  161. //
  162. // lb_sign
  163. //
  164. this.lb_sign.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  165. this.lb_sign.Location = new System.Drawing.Point(12, 147);
  166. this.lb_sign.Name = "lb_sign";
  167. this.lb_sign.Size = new System.Drawing.Size(54, 23);
  168. this.lb_sign.TabIndex = 11;
  169. this.lb_sign.Text = "Sign:";
  170. this.lb_sign.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  171. //
  172. // tb_user
  173. //
  174. this.tb_user.Location = new System.Drawing.Point(72, 188);
  175. this.tb_user.Name = "tb_user";
  176. this.tb_user.Size = new System.Drawing.Size(216, 20);
  177. this.tb_user.TabIndex = 12;
  178. //
  179. // tb_pw
  180. //
  181. this.tb_pw.Location = new System.Drawing.Point(72, 215);
  182. this.tb_pw.Name = "tb_pw";
  183. this.tb_pw.PasswordChar = '●';
  184. this.tb_pw.Size = new System.Drawing.Size(216, 20);
  185. this.tb_pw.TabIndex = 13;
  186. //
  187. // lb_user
  188. //
  189. this.lb_user.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  190. this.lb_user.Location = new System.Drawing.Point(12, 188);
  191. this.lb_user.Name = "lb_user";
  192. this.lb_user.Size = new System.Drawing.Size(57, 23);
  193. this.lb_user.TabIndex = 14;
  194. this.lb_user.Text = "Username:";
  195. this.lb_user.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  196. //
  197. // lb_pw
  198. //
  199. this.lb_pw.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
  200. this.lb_pw.Location = new System.Drawing.Point(9, 217);
  201. this.lb_pw.Name = "lb_pw";
  202. this.lb_pw.Size = new System.Drawing.Size(57, 23);
  203. this.lb_pw.TabIndex = 15;
  204. this.lb_pw.Text = "Password:";
  205. this.lb_pw.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  206. //
  207. // but_open
  208. //
  209. this.but_open.Location = new System.Drawing.Point(351, 12);
  210. this.but_open.Name = "but_open";
  211. this.but_open.Size = new System.Drawing.Size(75, 23);
  212. this.but_open.TabIndex = 16;
  213. this.but_open.Text = "Open";
  214. this.but_open.UseVisualStyleBackColor = true;
  215. //
  216. // but_connect
  217. //
  218. this.but_connect.Location = new System.Drawing.Point(351, 41);
  219. this.but_connect.Name = "but_connect";
  220. this.but_connect.Size = new System.Drawing.Size(75, 23);
  221. this.but_connect.TabIndex = 17;
  222. this.but_connect.Text = "/ Connect";
  223. this.but_connect.UseVisualStyleBackColor = true;
  224. this.but_connect.Click += new System.EventHandler(this.but_connect_Click);
  225. //
  226. // but_helo
  227. //
  228. this.but_helo.Location = new System.Drawing.Point(351, 70);
  229. this.but_helo.Name = "but_helo";
  230. this.but_helo.Size = new System.Drawing.Size(75, 23);
  231. this.but_helo.TabIndex = 18;
  232. this.but_helo.Text = "Helo";
  233. this.but_helo.UseVisualStyleBackColor = true;
  234. //
  235. // but_mail
  236. //
  237. this.but_mail.Location = new System.Drawing.Point(432, 12);
  238. this.but_mail.Name = "but_mail";
  239. this.but_mail.Size = new System.Drawing.Size(75, 23);
  240. this.but_mail.TabIndex = 19;
  241. this.but_mail.Text = "Mail";
  242. this.but_mail.UseVisualStyleBackColor = true;
  243. //
  244. // but_mailfrom
  245. //
  246. this.but_mailfrom.Location = new System.Drawing.Point(432, 41);
  247. this.but_mailfrom.Name = "but_mailfrom";
  248. this.but_mailfrom.Size = new System.Drawing.Size(75, 23);
  249. this.but_mailfrom.TabIndex = 20;
  250. this.but_mailfrom.Text = "/ Mail From";
  251. this.but_mailfrom.UseVisualStyleBackColor = true;
  252. this.but_mailfrom.Click += new System.EventHandler(this.but_mailfrom_Click);
  253. //
  254. // but_rcptto
  255. //
  256. this.but_rcptto.Location = new System.Drawing.Point(432, 70);
  257. this.but_rcptto.Name = "but_rcptto";
  258. this.but_rcptto.Size = new System.Drawing.Size(75, 23);
  259. this.but_rcptto.TabIndex = 21;
  260. this.but_rcptto.Text = "/ RCPT TO";
  261. this.but_rcptto.UseVisualStyleBackColor = true;
  262. this.but_rcptto.Click += new System.EventHandler(this.but_rcptto_Click);
  263. //
  264. // but_data
  265. //
  266. this.but_data.Location = new System.Drawing.Point(432, 99);
  267. this.but_data.Name = "but_data";
  268. this.but_data.Size = new System.Drawing.Size(75, 23);
  269. this.but_data.TabIndex = 22;
  270. this.but_data.Text = "Data";
  271. this.but_data.UseVisualStyleBackColor = true;
  272. this.but_data.Click += new System.EventHandler(this.but_data_Click);
  273. //
  274. // but_quit
  275. //
  276. this.but_quit.Location = new System.Drawing.Point(512, 12);
  277. this.but_quit.Name = "but_quit";
  278. this.but_quit.Size = new System.Drawing.Size(75, 23);
  279. this.but_quit.TabIndex = 23;
  280. this.but_quit.Text = "/ Quit";
  281. this.but_quit.UseVisualStyleBackColor = true;
  282. this.but_quit.Click += new System.EventHandler(this.but_quit_Click);
  283. //
  284. // but_abort
  285. //
  286. this.but_abort.Location = new System.Drawing.Point(512, 70);
  287. this.but_abort.Name = "but_abort";
  288. this.but_abort.Size = new System.Drawing.Size(75, 23);
  289. this.but_abort.TabIndex = 24;
  290. this.but_abort.Text = "/ Abort";
  291. this.but_abort.UseVisualStyleBackColor = true;
  292. this.but_abort.Click += new System.EventHandler(this.but_abort_Click);
  293. //
  294. // but_clearinfo
  295. //
  296. this.but_clearinfo.Location = new System.Drawing.Point(512, 41);
  297. this.but_clearinfo.Name = "but_clearinfo";
  298. this.but_clearinfo.Size = new System.Drawing.Size(75, 23);
  299. this.but_clearinfo.TabIndex = 25;
  300. this.but_clearinfo.Text = "/ Clear info";
  301. this.but_clearinfo.UseVisualStyleBackColor = true;
  302. this.but_clearinfo.Click += new System.EventHandler(this.but_clearinfo_Click);
  303. //
  304. // cb_ssl
  305. //
  306. this.cb_ssl.Location = new System.Drawing.Point(442, 128);
  307. this.cb_ssl.Name = "cb_ssl";
  308. this.cb_ssl.Size = new System.Drawing.Size(55, 17);
  309. this.cb_ssl.TabIndex = 26;
  310. this.cb_ssl.Text = "SSL";
  311. this.cb_ssl.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  312. this.cb_ssl.UseVisualStyleBackColor = true;
  313. //
  314. // mtb_body
  315. //
  316. this.mtb_body.Location = new System.Drawing.Point(12, 261);
  317. this.mtb_body.Multiline = true;
  318. this.mtb_body.Name = "mtb_body";
  319. this.mtb_body.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  320. this.mtb_body.Size = new System.Drawing.Size(276, 78);
  321. this.mtb_body.TabIndex = 27;
  322. //
  323. // lb_body
  324. //
  325. this.lb_body.AutoSize = true;
  326. this.lb_body.Location = new System.Drawing.Point(12, 245);
  327. this.lb_body.Name = "lb_body";
  328. this.lb_body.Size = new System.Drawing.Size(34, 13);
  329. this.lb_body.TabIndex = 28;
  330. this.lb_body.Text = "Body:";
  331. //
  332. // mbt_infomsg
  333. //
  334. this.mbt_infomsg.Location = new System.Drawing.Point(306, 147);
  335. this.mbt_infomsg.Multiline = true;
  336. this.mbt_infomsg.Name = "mbt_infomsg";
  337. this.mbt_infomsg.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
  338. this.mbt_infomsg.Size = new System.Drawing.Size(321, 192);
  339. this.mbt_infomsg.TabIndex = 29;
  340. //
  341. // lb_infobox
  342. //
  343. this.lb_infobox.AutoSize = true;
  344. this.lb_infobox.Location = new System.Drawing.Point(303, 130);
  345. this.lb_infobox.Name = "lb_infobox";
  346. this.lb_infobox.Size = new System.Drawing.Size(78, 13);
  347. this.lb_infobox.TabIndex = 30;
  348. this.lb_infobox.Text = "Info messages:";
  349. //
  350. // Form1
  351. //
  352. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  353. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  354. this.ClientSize = new System.Drawing.Size(640, 351);
  355. this.Controls.Add(this.lb_infobox);
  356. this.Controls.Add(this.mbt_infomsg);
  357. this.Controls.Add(this.lb_body);
  358. this.Controls.Add(this.mtb_body);
  359. this.Controls.Add(this.cb_ssl);
  360. this.Controls.Add(this.but_clearinfo);
  361. this.Controls.Add(this.but_abort);
  362. this.Controls.Add(this.but_quit);
  363. this.Controls.Add(this.but_data);
  364. this.Controls.Add(this.but_rcptto);
  365. this.Controls.Add(this.but_mailfrom);
  366. this.Controls.Add(this.but_mail);
  367. this.Controls.Add(this.but_helo);
  368. this.Controls.Add(this.but_connect);
  369. this.Controls.Add(this.but_open);
  370. this.Controls.Add(this.lb_pw);
  371. this.Controls.Add(this.lb_user);
  372. this.Controls.Add(this.tb_pw);
  373. this.Controls.Add(this.tb_user);
  374. this.Controls.Add(this.lb_sign);
  375. this.Controls.Add(this.lb_to);
  376. this.Controls.Add(this.lb_port);
  377. this.Controls.Add(this.lb_subject);
  378. this.Controls.Add(this.lb_from);
  379. this.Controls.Add(this.tb_sign);
  380. this.Controls.Add(this.tb_to);
  381. this.Controls.Add(this.tb_port);
  382. this.Controls.Add(this.tb_subject);
  383. this.Controls.Add(this.tb_from);
  384. this.Controls.Add(this.tb_host);
  385. this.Controls.Add(this.lb_host);
  386. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  387. this.Name = "Form1";
  388. this.Text = "SMTP-testing";
  389. this.ResumeLayout(false);
  390. this.PerformLayout();
  391.  
  392. }
  393.  
  394. #endregion
  395.  
  396. private System.Windows.Forms.Label lb_host;
  397. private System.Windows.Forms.TextBox tb_host;
  398. private System.Windows.Forms.TextBox tb_from;
  399. private System.Windows.Forms.TextBox tb_subject;
  400. private System.Windows.Forms.TextBox tb_port;
  401. private System.Windows.Forms.TextBox tb_to;
  402. private System.Windows.Forms.TextBox tb_sign;
  403. private System.Windows.Forms.Label lb_from;
  404. private System.Windows.Forms.Label lb_subject;
  405. private System.Windows.Forms.Label lb_port;
  406. private System.Windows.Forms.Label lb_to;
  407. private System.Windows.Forms.Label lb_sign;
  408. private System.Windows.Forms.TextBox tb_user;
  409. private System.Windows.Forms.TextBox tb_pw;
  410. private System.Windows.Forms.Label lb_user;
  411. private System.Windows.Forms.Label lb_pw;
  412. private System.Windows.Forms.Button but_open;
  413. private System.Windows.Forms.Button but_connect;
  414. private System.Windows.Forms.Button but_helo;
  415. private System.Windows.Forms.Button but_mail;
  416. private System.Windows.Forms.Button but_mailfrom;
  417. private System.Windows.Forms.Button but_rcptto;
  418. private System.Windows.Forms.Button but_data;
  419. private System.Windows.Forms.Button but_quit;
  420. private System.Windows.Forms.Button but_abort;
  421. private System.Windows.Forms.Button but_clearinfo;
  422. private System.Windows.Forms.CheckBox cb_ssl;
  423. private System.Windows.Forms.TextBox mtb_body;
  424. private System.Windows.Forms.Label lb_body;
  425. private System.Windows.Forms.TextBox mbt_infomsg;
  426. private System.Windows.Forms.Label lb_infobox;
  427. }
  428. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement