F_Main.Designer.cs 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936
  1. namespace PLC_WF
  2. {
  3. partial class F_Main
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(F_Main));
  30. this.grbSetting = new System.Windows.Forms.GroupBox();
  31. this.btnRefreshForm = new System.Windows.Forms.Button();
  32. this.cboPLCST = new System.Windows.Forms.ComboBox();
  33. this.btnGetSetting = new System.Windows.Forms.Button();
  34. this.btnSetSetting = new System.Windows.Forms.Button();
  35. this.chkAutoStart = new System.Windows.Forms.CheckBox();
  36. this.label5 = new System.Windows.Forms.Label();
  37. this.label4 = new System.Windows.Forms.Label();
  38. this.label2 = new System.Windows.Forms.Label();
  39. this.txtEPTS = new System.Windows.Forms.TextBox();
  40. this.label16 = new System.Windows.Forms.Label();
  41. this.label3 = new System.Windows.Forms.Label();
  42. this.label1 = new System.Windows.Forms.Label();
  43. this.lblPort = new System.Windows.Forms.Label();
  44. this.txtDescription = new System.Windows.Forms.TextBox();
  45. this.txtDisplayName = new System.Windows.Forms.TextBox();
  46. this.txtServiceName = new System.Windows.Forms.TextBox();
  47. this.txtInterval = new System.Windows.Forms.TextBox();
  48. this.txtPort = new System.Windows.Forms.TextBox();
  49. this.btnExePath = new System.Windows.Forms.Button();
  50. this.txtStatus = new System.Windows.Forms.TextBox();
  51. this.btnLog = new System.Windows.Forms.Button();
  52. this.btnStop = new System.Windows.Forms.Button();
  53. this.btnStart = new System.Windows.Forms.Button();
  54. this.grbWS = new System.Windows.Forms.GroupBox();
  55. this.btnWS_Delete = new System.Windows.Forms.Button();
  56. this.btnWS_Refresh = new System.Windows.Forms.Button();
  57. this.btnWS_ReStart = new System.Windows.Forms.Button();
  58. this.btnWS_Stop = new System.Windows.Forms.Button();
  59. this.btnWS_Start = new System.Windows.Forms.Button();
  60. this.btnWS_Insert = new System.Windows.Forms.Button();
  61. this.serviceController1 = new System.ServiceProcess.ServiceController();
  62. this.grbES = new System.Windows.Forms.GroupBox();
  63. this.btnLogLenW = new System.Windows.Forms.Button();
  64. this.btnLogLenR = new System.Windows.Forms.Button();
  65. this.txtLogLen = new System.Windows.Forms.TextBox();
  66. this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  67. this.grbDB = new System.Windows.Forms.GroupBox();
  68. this.btnGetDB = new System.Windows.Forms.Button();
  69. this.btnSetDB = new System.Windows.Forms.Button();
  70. this.btnOracleTest = new System.Windows.Forms.Button();
  71. this.label6 = new System.Windows.Forms.Label();
  72. this.txtOraclePassword = new System.Windows.Forms.TextBox();
  73. this.label7 = new System.Windows.Forms.Label();
  74. this.txtOracleUserName = new System.Windows.Forms.TextBox();
  75. this.label9 = new System.Windows.Forms.Label();
  76. this.txtOracleDatabaseName = new System.Windows.Forms.TextBox();
  77. this.label11 = new System.Windows.Forms.Label();
  78. this.txtOraclePort = new System.Windows.Forms.TextBox();
  79. this.label10 = new System.Windows.Forms.Label();
  80. this.txtOracleName = new System.Windows.Forms.TextBox();
  81. this.grbMES = new System.Windows.Forms.GroupBox();
  82. this.btnGetMES = new System.Windows.Forms.Button();
  83. this.btnSetMES = new System.Windows.Forms.Button();
  84. this.btnMESTest = new System.Windows.Forms.Button();
  85. this.label8 = new System.Windows.Forms.Label();
  86. this.txtMES_Password = new System.Windows.Forms.TextBox();
  87. this.label12 = new System.Windows.Forms.Label();
  88. this.txtMES_User = new System.Windows.Forms.TextBox();
  89. this.label13 = new System.Windows.Forms.Label();
  90. this.txtMES_Account = new System.Windows.Forms.TextBox();
  91. this.label14 = new System.Windows.Forms.Label();
  92. this.txtMES_Port = new System.Windows.Forms.TextBox();
  93. this.label15 = new System.Windows.Forms.Label();
  94. this.txtMES_IP = new System.Windows.Forms.TextBox();
  95. this.panel1 = new System.Windows.Forms.Panel();
  96. this.cboPLCType = new System.Windows.Forms.ComboBox();
  97. this.btnPLC_CRW = new System.Windows.Forms.Button();
  98. this.textBox1 = new System.Windows.Forms.TextBox();
  99. this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
  100. this.btnStopAll = new System.Windows.Forms.Button();
  101. this.btnStartAll = new System.Windows.Forms.Button();
  102. this.grbSetting.SuspendLayout();
  103. this.grbWS.SuspendLayout();
  104. this.grbES.SuspendLayout();
  105. this.grbDB.SuspendLayout();
  106. this.grbMES.SuspendLayout();
  107. this.panel1.SuspendLayout();
  108. this.SuspendLayout();
  109. //
  110. // grbSetting
  111. //
  112. this.grbSetting.Controls.Add(this.btnRefreshForm);
  113. this.grbSetting.Controls.Add(this.cboPLCST);
  114. this.grbSetting.Controls.Add(this.btnGetSetting);
  115. this.grbSetting.Controls.Add(this.btnSetSetting);
  116. this.grbSetting.Controls.Add(this.chkAutoStart);
  117. this.grbSetting.Controls.Add(this.label5);
  118. this.grbSetting.Controls.Add(this.label4);
  119. this.grbSetting.Controls.Add(this.label2);
  120. this.grbSetting.Controls.Add(this.txtEPTS);
  121. this.grbSetting.Controls.Add(this.label16);
  122. this.grbSetting.Controls.Add(this.label3);
  123. this.grbSetting.Controls.Add(this.label1);
  124. this.grbSetting.Controls.Add(this.lblPort);
  125. this.grbSetting.Controls.Add(this.txtDescription);
  126. this.grbSetting.Controls.Add(this.txtDisplayName);
  127. this.grbSetting.Controls.Add(this.txtServiceName);
  128. this.grbSetting.Controls.Add(this.txtInterval);
  129. this.grbSetting.Controls.Add(this.txtPort);
  130. this.grbSetting.Location = new System.Drawing.Point(0, 0);
  131. this.grbSetting.Name = "grbSetting";
  132. this.grbSetting.Size = new System.Drawing.Size(350, 162);
  133. this.grbSetting.TabIndex = 1;
  134. this.grbSetting.TabStop = false;
  135. this.grbSetting.Text = "PLC服务";
  136. //
  137. // btnRefreshForm
  138. //
  139. this.btnRefreshForm.Location = new System.Drawing.Point(269, 136);
  140. this.btnRefreshForm.Name = "btnRefreshForm";
  141. this.btnRefreshForm.Size = new System.Drawing.Size(75, 23);
  142. this.btnRefreshForm.TabIndex = 13;
  143. this.btnRefreshForm.Text = "刷新设置";
  144. this.btnRefreshForm.UseVisualStyleBackColor = true;
  145. this.btnRefreshForm.Click += new System.EventHandler(this.btnRefreshForm_Click);
  146. //
  147. // cboPLCST
  148. //
  149. this.cboPLCST.FormattingEnabled = true;
  150. this.cboPLCST.Location = new System.Drawing.Point(41, 20);
  151. this.cboPLCST.Name = "cboPLCST";
  152. this.cboPLCST.Size = new System.Drawing.Size(303, 20);
  153. this.cboPLCST.TabIndex = 1;
  154. this.cboPLCST.SelectedIndexChanged += new System.EventHandler(this.cboPLCST_SelectedIndexChanged);
  155. //
  156. // btnGetSetting
  157. //
  158. this.btnGetSetting.Location = new System.Drawing.Point(107, 136);
  159. this.btnGetSetting.Name = "btnGetSetting";
  160. this.btnGetSetting.Size = new System.Drawing.Size(75, 23);
  161. this.btnGetSetting.TabIndex = 11;
  162. this.btnGetSetting.Text = "读取设置";
  163. this.btnGetSetting.UseVisualStyleBackColor = true;
  164. this.btnGetSetting.Click += new System.EventHandler(this.btnGetSetting_Click);
  165. //
  166. // btnSetSetting
  167. //
  168. this.btnSetSetting.Location = new System.Drawing.Point(188, 136);
  169. this.btnSetSetting.Name = "btnSetSetting";
  170. this.btnSetSetting.Size = new System.Drawing.Size(75, 23);
  171. this.btnSetSetting.TabIndex = 12;
  172. this.btnSetSetting.Text = "保存设置";
  173. this.btnSetSetting.UseVisualStyleBackColor = true;
  174. this.btnSetSetting.Click += new System.EventHandler(this.btnSetSetting_Click);
  175. //
  176. // chkAutoStart
  177. //
  178. this.chkAutoStart.AutoSize = true;
  179. this.chkAutoStart.Location = new System.Drawing.Point(93, 53);
  180. this.chkAutoStart.Name = "chkAutoStart";
  181. this.chkAutoStart.Size = new System.Drawing.Size(48, 16);
  182. this.chkAutoStart.TabIndex = 6;
  183. this.chkAutoStart.Text = "自启";
  184. this.chkAutoStart.UseVisualStyleBackColor = true;
  185. //
  186. // label5
  187. //
  188. this.label5.AutoSize = true;
  189. this.label5.Location = new System.Drawing.Point(6, 113);
  190. this.label5.Name = "label5";
  191. this.label5.Size = new System.Drawing.Size(29, 12);
  192. this.label5.TabIndex = 9;
  193. this.label5.Text = "描述";
  194. //
  195. // label4
  196. //
  197. this.label4.AutoSize = true;
  198. this.label4.Location = new System.Drawing.Point(147, 84);
  199. this.label4.Name = "label4";
  200. this.label4.Size = new System.Drawing.Size(41, 12);
  201. this.label4.TabIndex = 7;
  202. this.label4.Text = "显示名";
  203. //
  204. // label2
  205. //
  206. this.label2.AutoSize = true;
  207. this.label2.Location = new System.Drawing.Point(147, 55);
  208. this.label2.Name = "label2";
  209. this.label2.Size = new System.Drawing.Size(41, 12);
  210. this.label2.TabIndex = 2;
  211. this.label2.Text = "服务名";
  212. //
  213. // txtEPTS
  214. //
  215. this.txtEPTS.Location = new System.Drawing.Point(66, 81);
  216. this.txtEPTS.Name = "txtEPTS";
  217. this.txtEPTS.Size = new System.Drawing.Size(75, 21);
  218. this.txtEPTS.TabIndex = 5;
  219. //
  220. // label16
  221. //
  222. this.label16.AutoSize = true;
  223. this.label16.Location = new System.Drawing.Point(7, 85);
  224. this.label16.Name = "label16";
  225. this.label16.Size = new System.Drawing.Size(53, 12);
  226. this.label16.TabIndex = 4;
  227. this.label16.Text = "轮巡代码";
  228. //
  229. // label3
  230. //
  231. this.label3.AutoSize = true;
  232. this.label3.Location = new System.Drawing.Point(6, 24);
  233. this.label3.Name = "label3";
  234. this.label3.Size = new System.Drawing.Size(29, 12);
  235. this.label3.TabIndex = 0;
  236. this.label3.Text = "类型";
  237. //
  238. // label1
  239. //
  240. this.label1.AutoSize = true;
  241. this.label1.Location = new System.Drawing.Point(6, 141);
  242. this.label1.Name = "label1";
  243. this.label1.Size = new System.Drawing.Size(29, 12);
  244. this.label1.TabIndex = 4;
  245. this.label1.Text = "间隔";
  246. //
  247. // lblPort
  248. //
  249. this.lblPort.AutoSize = true;
  250. this.lblPort.Location = new System.Drawing.Point(6, 55);
  251. this.lblPort.Name = "lblPort";
  252. this.lblPort.Size = new System.Drawing.Size(29, 12);
  253. this.lblPort.TabIndex = 4;
  254. this.lblPort.Text = "端口";
  255. //
  256. // txtDescription
  257. //
  258. this.txtDescription.Location = new System.Drawing.Point(41, 109);
  259. this.txtDescription.Name = "txtDescription";
  260. this.txtDescription.Size = new System.Drawing.Size(303, 21);
  261. this.txtDescription.TabIndex = 10;
  262. //
  263. // txtDisplayName
  264. //
  265. this.txtDisplayName.Location = new System.Drawing.Point(194, 80);
  266. this.txtDisplayName.Name = "txtDisplayName";
  267. this.txtDisplayName.Size = new System.Drawing.Size(150, 21);
  268. this.txtDisplayName.TabIndex = 8;
  269. this.txtDisplayName.TextChanged += new System.EventHandler(this.txtDisplayName_TextChanged);
  270. //
  271. // txtServiceName
  272. //
  273. this.txtServiceName.Location = new System.Drawing.Point(194, 51);
  274. this.txtServiceName.Name = "txtServiceName";
  275. this.txtServiceName.Size = new System.Drawing.Size(150, 21);
  276. this.txtServiceName.TabIndex = 3;
  277. //
  278. // txtInterval
  279. //
  280. this.txtInterval.Location = new System.Drawing.Point(41, 136);
  281. this.txtInterval.Name = "txtInterval";
  282. this.txtInterval.Size = new System.Drawing.Size(60, 21);
  283. this.txtInterval.TabIndex = 5;
  284. this.txtInterval.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPort_KeyDown);
  285. this.txtInterval.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPort_KeyPress);
  286. //
  287. // txtPort
  288. //
  289. this.txtPort.Location = new System.Drawing.Point(41, 51);
  290. this.txtPort.MaxLength = 6;
  291. this.txtPort.Name = "txtPort";
  292. this.txtPort.Size = new System.Drawing.Size(46, 21);
  293. this.txtPort.TabIndex = 5;
  294. this.txtPort.TextChanged += new System.EventHandler(this.txtPort_TextChanged);
  295. this.txtPort.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPort_KeyDown);
  296. this.txtPort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPort_KeyPress);
  297. //
  298. // btnExePath
  299. //
  300. this.btnExePath.Location = new System.Drawing.Point(87, 49);
  301. this.btnExePath.Name = "btnExePath";
  302. this.btnExePath.Size = new System.Drawing.Size(75, 23);
  303. this.btnExePath.TabIndex = 3;
  304. this.btnExePath.Text = "exe path";
  305. this.btnExePath.UseVisualStyleBackColor = true;
  306. this.btnExePath.Click += new System.EventHandler(this.btnExePath_Click);
  307. //
  308. // txtStatus
  309. //
  310. this.txtStatus.Dock = System.Windows.Forms.DockStyle.Top;
  311. this.txtStatus.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  312. this.txtStatus.Location = new System.Drawing.Point(3, 3);
  313. this.txtStatus.Name = "txtStatus";
  314. this.txtStatus.Size = new System.Drawing.Size(707, 29);
  315. this.txtStatus.TabIndex = 0;
  316. this.txtStatus.TabStop = false;
  317. this.txtStatus.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  318. this.txtStatus.TextChanged += new System.EventHandler(this.txtStatus_TextChanged);
  319. this.txtStatus.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtStatus_KeyPress);
  320. //
  321. // btnLog
  322. //
  323. this.btnLog.Location = new System.Drawing.Point(6, 49);
  324. this.btnLog.Name = "btnLog";
  325. this.btnLog.Size = new System.Drawing.Size(75, 23);
  326. this.btnLog.TabIndex = 2;
  327. this.btnLog.Text = "日志";
  328. this.btnLog.UseVisualStyleBackColor = true;
  329. this.btnLog.Click += new System.EventHandler(this.btnLog_Click);
  330. //
  331. // btnStop
  332. //
  333. this.btnStop.Location = new System.Drawing.Point(87, 20);
  334. this.btnStop.Name = "btnStop";
  335. this.btnStop.Size = new System.Drawing.Size(75, 23);
  336. this.btnStop.TabIndex = 1;
  337. this.btnStop.Text = "停止服务";
  338. this.btnStop.UseVisualStyleBackColor = true;
  339. this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
  340. //
  341. // btnStart
  342. //
  343. this.btnStart.Location = new System.Drawing.Point(6, 20);
  344. this.btnStart.Name = "btnStart";
  345. this.btnStart.Size = new System.Drawing.Size(75, 23);
  346. this.btnStart.TabIndex = 0;
  347. this.btnStart.Text = "启动服务";
  348. this.btnStart.UseVisualStyleBackColor = true;
  349. this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
  350. //
  351. // grbWS
  352. //
  353. this.grbWS.Controls.Add(this.btnWS_Delete);
  354. this.grbWS.Controls.Add(this.btnWS_Refresh);
  355. this.grbWS.Controls.Add(this.btnWS_ReStart);
  356. this.grbWS.Controls.Add(this.btnWS_Stop);
  357. this.grbWS.Controls.Add(this.btnWS_Start);
  358. this.grbWS.Controls.Add(this.btnWS_Insert);
  359. this.grbWS.Location = new System.Drawing.Point(356, 0);
  360. this.grbWS.Name = "grbWS";
  361. this.grbWS.Size = new System.Drawing.Size(168, 107);
  362. this.grbWS.TabIndex = 5;
  363. this.grbWS.TabStop = false;
  364. this.grbWS.Text = "Windows Service";
  365. //
  366. // btnWS_Delete
  367. //
  368. this.btnWS_Delete.Location = new System.Drawing.Point(87, 20);
  369. this.btnWS_Delete.Name = "btnWS_Delete";
  370. this.btnWS_Delete.Size = new System.Drawing.Size(75, 23);
  371. this.btnWS_Delete.TabIndex = 1;
  372. this.btnWS_Delete.Text = "卸载服务";
  373. this.btnWS_Delete.UseVisualStyleBackColor = true;
  374. this.btnWS_Delete.Click += new System.EventHandler(this.btnWS_Delete_Click);
  375. //
  376. // btnWS_Refresh
  377. //
  378. this.btnWS_Refresh.Location = new System.Drawing.Point(87, 78);
  379. this.btnWS_Refresh.Name = "btnWS_Refresh";
  380. this.btnWS_Refresh.Size = new System.Drawing.Size(75, 23);
  381. this.btnWS_Refresh.TabIndex = 5;
  382. this.btnWS_Refresh.Text = "刷新状态";
  383. this.btnWS_Refresh.UseVisualStyleBackColor = true;
  384. this.btnWS_Refresh.Click += new System.EventHandler(this.btnWS_Refresh_Click);
  385. //
  386. // btnWS_ReStart
  387. //
  388. this.btnWS_ReStart.Location = new System.Drawing.Point(6, 78);
  389. this.btnWS_ReStart.Name = "btnWS_ReStart";
  390. this.btnWS_ReStart.Size = new System.Drawing.Size(75, 23);
  391. this.btnWS_ReStart.TabIndex = 4;
  392. this.btnWS_ReStart.Text = "重启服务";
  393. this.btnWS_ReStart.UseVisualStyleBackColor = true;
  394. this.btnWS_ReStart.Click += new System.EventHandler(this.btnWS_ReStart_Click);
  395. //
  396. // btnWS_Stop
  397. //
  398. this.btnWS_Stop.Location = new System.Drawing.Point(87, 49);
  399. this.btnWS_Stop.Name = "btnWS_Stop";
  400. this.btnWS_Stop.Size = new System.Drawing.Size(75, 23);
  401. this.btnWS_Stop.TabIndex = 3;
  402. this.btnWS_Stop.Text = "停止服务";
  403. this.btnWS_Stop.UseVisualStyleBackColor = true;
  404. this.btnWS_Stop.Click += new System.EventHandler(this.btnWS_Stop_Click);
  405. //
  406. // btnWS_Start
  407. //
  408. this.btnWS_Start.Location = new System.Drawing.Point(6, 49);
  409. this.btnWS_Start.Name = "btnWS_Start";
  410. this.btnWS_Start.Size = new System.Drawing.Size(75, 23);
  411. this.btnWS_Start.TabIndex = 2;
  412. this.btnWS_Start.Text = "启动服务";
  413. this.btnWS_Start.UseVisualStyleBackColor = true;
  414. this.btnWS_Start.Click += new System.EventHandler(this.btnWS_Start_Click);
  415. //
  416. // btnWS_Insert
  417. //
  418. this.btnWS_Insert.Location = new System.Drawing.Point(6, 20);
  419. this.btnWS_Insert.Name = "btnWS_Insert";
  420. this.btnWS_Insert.Size = new System.Drawing.Size(75, 23);
  421. this.btnWS_Insert.TabIndex = 0;
  422. this.btnWS_Insert.Text = "注册服务";
  423. this.btnWS_Insert.UseVisualStyleBackColor = true;
  424. this.btnWS_Insert.Click += new System.EventHandler(this.btnWS_Insert_Click);
  425. //
  426. // grbES
  427. //
  428. this.grbES.Controls.Add(this.btnLogLenW);
  429. this.grbES.Controls.Add(this.btnLogLenR);
  430. this.grbES.Controls.Add(this.btnLog);
  431. this.grbES.Controls.Add(this.btnExePath);
  432. this.grbES.Controls.Add(this.btnStart);
  433. this.grbES.Controls.Add(this.btnStop);
  434. this.grbES.Controls.Add(this.txtLogLen);
  435. this.grbES.Location = new System.Drawing.Point(530, 0);
  436. this.grbES.Name = "grbES";
  437. this.grbES.Size = new System.Drawing.Size(168, 136);
  438. this.grbES.TabIndex = 4;
  439. this.grbES.TabStop = false;
  440. this.grbES.Text = "exe Service";
  441. //
  442. // btnLogLenW
  443. //
  444. this.btnLogLenW.Location = new System.Drawing.Point(87, 77);
  445. this.btnLogLenW.Name = "btnLogLenW";
  446. this.btnLogLenW.Size = new System.Drawing.Size(75, 23);
  447. this.btnLogLenW.TabIndex = 2;
  448. this.btnLogLenW.Text = "设日志长度";
  449. this.btnLogLenW.UseVisualStyleBackColor = true;
  450. this.btnLogLenW.Click += new System.EventHandler(this.btnLogLenW_Click);
  451. //
  452. // btnLogLenR
  453. //
  454. this.btnLogLenR.Location = new System.Drawing.Point(6, 77);
  455. this.btnLogLenR.Name = "btnLogLenR";
  456. this.btnLogLenR.Size = new System.Drawing.Size(75, 23);
  457. this.btnLogLenR.TabIndex = 2;
  458. this.btnLogLenR.Text = "读日志长度";
  459. this.btnLogLenR.UseVisualStyleBackColor = true;
  460. this.btnLogLenR.Click += new System.EventHandler(this.btnLogLenR_Click);
  461. //
  462. // txtLogLen
  463. //
  464. this.txtLogLen.Location = new System.Drawing.Point(6, 106);
  465. this.txtLogLen.Name = "txtLogLen";
  466. this.txtLogLen.Size = new System.Drawing.Size(75, 21);
  467. this.txtLogLen.TabIndex = 5;
  468. this.txtLogLen.TextChanged += new System.EventHandler(this.txtPort_TextChanged);
  469. this.txtLogLen.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPort_KeyDown);
  470. this.txtLogLen.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPort_KeyPress);
  471. //
  472. // notifyIcon1
  473. //
  474. this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  475. this.notifyIcon1.Text = "notifyIcon1";
  476. this.notifyIcon1.Visible = true;
  477. this.notifyIcon1.Click += new System.EventHandler(this.notifyIcon1_Click);
  478. this.notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
  479. //
  480. // grbDB
  481. //
  482. this.grbDB.Controls.Add(this.btnGetDB);
  483. this.grbDB.Controls.Add(this.btnSetDB);
  484. this.grbDB.Controls.Add(this.btnOracleTest);
  485. this.grbDB.Controls.Add(this.label6);
  486. this.grbDB.Controls.Add(this.txtOraclePassword);
  487. this.grbDB.Controls.Add(this.label7);
  488. this.grbDB.Controls.Add(this.txtOracleUserName);
  489. this.grbDB.Controls.Add(this.label9);
  490. this.grbDB.Controls.Add(this.txtOracleDatabaseName);
  491. this.grbDB.Controls.Add(this.label11);
  492. this.grbDB.Controls.Add(this.txtOraclePort);
  493. this.grbDB.Controls.Add(this.label10);
  494. this.grbDB.Controls.Add(this.txtOracleName);
  495. this.grbDB.Location = new System.Drawing.Point(0, 171);
  496. this.grbDB.Name = "grbDB";
  497. this.grbDB.Size = new System.Drawing.Size(230, 136);
  498. this.grbDB.TabIndex = 2;
  499. this.grbDB.TabStop = false;
  500. this.grbDB.Text = "数据库设置";
  501. //
  502. // btnGetDB
  503. //
  504. this.btnGetDB.Location = new System.Drawing.Point(149, 49);
  505. this.btnGetDB.Name = "btnGetDB";
  506. this.btnGetDB.Size = new System.Drawing.Size(75, 23);
  507. this.btnGetDB.TabIndex = 10;
  508. this.btnGetDB.Text = "读取设置";
  509. this.btnGetDB.UseVisualStyleBackColor = true;
  510. this.btnGetDB.Click += new System.EventHandler(this.btnGetDB_Click);
  511. //
  512. // btnSetDB
  513. //
  514. this.btnSetDB.Location = new System.Drawing.Point(149, 78);
  515. this.btnSetDB.Name = "btnSetDB";
  516. this.btnSetDB.Size = new System.Drawing.Size(75, 23);
  517. this.btnSetDB.TabIndex = 11;
  518. this.btnSetDB.Text = "保存设置";
  519. this.btnSetDB.UseVisualStyleBackColor = true;
  520. this.btnSetDB.Click += new System.EventHandler(this.btnSetDB_Click);
  521. //
  522. // btnOracleTest
  523. //
  524. this.btnOracleTest.Location = new System.Drawing.Point(149, 107);
  525. this.btnOracleTest.Name = "btnOracleTest";
  526. this.btnOracleTest.Size = new System.Drawing.Size(75, 23);
  527. this.btnOracleTest.TabIndex = 12;
  528. this.btnOracleTest.Text = "连接测试";
  529. this.btnOracleTest.UseVisualStyleBackColor = true;
  530. this.btnOracleTest.Click += new System.EventHandler(this.btnOracleTest_Click);
  531. //
  532. // label6
  533. //
  534. this.label6.AutoSize = true;
  535. this.label6.Location = new System.Drawing.Point(6, 112);
  536. this.label6.Name = "label6";
  537. this.label6.Size = new System.Drawing.Size(29, 12);
  538. this.label6.TabIndex = 8;
  539. this.label6.Text = "密码";
  540. //
  541. // txtOraclePassword
  542. //
  543. this.txtOraclePassword.Location = new System.Drawing.Point(41, 108);
  544. this.txtOraclePassword.Name = "txtOraclePassword";
  545. this.txtOraclePassword.Size = new System.Drawing.Size(100, 21);
  546. this.txtOraclePassword.TabIndex = 9;
  547. this.txtOraclePassword.UseSystemPasswordChar = true;
  548. //
  549. // label7
  550. //
  551. this.label7.AutoSize = true;
  552. this.label7.Location = new System.Drawing.Point(6, 83);
  553. this.label7.Name = "label7";
  554. this.label7.Size = new System.Drawing.Size(29, 12);
  555. this.label7.TabIndex = 6;
  556. this.label7.Text = "用户";
  557. //
  558. // txtOracleUserName
  559. //
  560. this.txtOracleUserName.Location = new System.Drawing.Point(41, 79);
  561. this.txtOracleUserName.Name = "txtOracleUserName";
  562. this.txtOracleUserName.Size = new System.Drawing.Size(100, 21);
  563. this.txtOracleUserName.TabIndex = 7;
  564. //
  565. // label9
  566. //
  567. this.label9.AutoSize = true;
  568. this.label9.Location = new System.Drawing.Point(6, 54);
  569. this.label9.Name = "label9";
  570. this.label9.Size = new System.Drawing.Size(29, 12);
  571. this.label9.TabIndex = 4;
  572. this.label9.Text = "实例";
  573. //
  574. // txtOracleDatabaseName
  575. //
  576. this.txtOracleDatabaseName.Location = new System.Drawing.Point(41, 50);
  577. this.txtOracleDatabaseName.Name = "txtOracleDatabaseName";
  578. this.txtOracleDatabaseName.Size = new System.Drawing.Size(100, 21);
  579. this.txtOracleDatabaseName.TabIndex = 5;
  580. //
  581. // label11
  582. //
  583. this.label11.AutoSize = true;
  584. this.label11.Location = new System.Drawing.Point(147, 24);
  585. this.label11.Name = "label11";
  586. this.label11.Size = new System.Drawing.Size(29, 12);
  587. this.label11.TabIndex = 2;
  588. this.label11.Text = "端口";
  589. //
  590. // txtOraclePort
  591. //
  592. this.txtOraclePort.Location = new System.Drawing.Point(182, 20);
  593. this.txtOraclePort.MaxLength = 6;
  594. this.txtOraclePort.Name = "txtOraclePort";
  595. this.txtOraclePort.Size = new System.Drawing.Size(42, 21);
  596. this.txtOraclePort.TabIndex = 3;
  597. this.txtOraclePort.Text = "1521";
  598. this.txtOraclePort.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPort_KeyPress);
  599. //
  600. // label10
  601. //
  602. this.label10.AutoSize = true;
  603. this.label10.Location = new System.Drawing.Point(6, 24);
  604. this.label10.Name = "label10";
  605. this.label10.Size = new System.Drawing.Size(29, 12);
  606. this.label10.TabIndex = 0;
  607. this.label10.Text = "地址";
  608. //
  609. // txtOracleName
  610. //
  611. this.txtOracleName.Location = new System.Drawing.Point(41, 20);
  612. this.txtOracleName.Name = "txtOracleName";
  613. this.txtOracleName.Size = new System.Drawing.Size(100, 21);
  614. this.txtOracleName.TabIndex = 1;
  615. this.txtOracleName.Text = "127.0.0.1";
  616. //
  617. // grbMES
  618. //
  619. this.grbMES.Controls.Add(this.btnGetMES);
  620. this.grbMES.Controls.Add(this.btnSetMES);
  621. this.grbMES.Controls.Add(this.btnMESTest);
  622. this.grbMES.Controls.Add(this.label8);
  623. this.grbMES.Controls.Add(this.txtMES_Password);
  624. this.grbMES.Controls.Add(this.label12);
  625. this.grbMES.Controls.Add(this.txtMES_User);
  626. this.grbMES.Controls.Add(this.label13);
  627. this.grbMES.Controls.Add(this.txtMES_Account);
  628. this.grbMES.Controls.Add(this.label14);
  629. this.grbMES.Controls.Add(this.txtMES_Port);
  630. this.grbMES.Controls.Add(this.label15);
  631. this.grbMES.Controls.Add(this.txtMES_IP);
  632. this.grbMES.Location = new System.Drawing.Point(236, 171);
  633. this.grbMES.Name = "grbMES";
  634. this.grbMES.Size = new System.Drawing.Size(230, 136);
  635. this.grbMES.TabIndex = 3;
  636. this.grbMES.TabStop = false;
  637. this.grbMES.Text = "MES设置";
  638. //
  639. // btnGetMES
  640. //
  641. this.btnGetMES.Location = new System.Drawing.Point(149, 49);
  642. this.btnGetMES.Name = "btnGetMES";
  643. this.btnGetMES.Size = new System.Drawing.Size(75, 23);
  644. this.btnGetMES.TabIndex = 10;
  645. this.btnGetMES.Text = "读取设置";
  646. this.btnGetMES.UseVisualStyleBackColor = true;
  647. this.btnGetMES.Click += new System.EventHandler(this.btnGetMES_Click);
  648. //
  649. // btnSetMES
  650. //
  651. this.btnSetMES.Location = new System.Drawing.Point(149, 78);
  652. this.btnSetMES.Name = "btnSetMES";
  653. this.btnSetMES.Size = new System.Drawing.Size(75, 23);
  654. this.btnSetMES.TabIndex = 11;
  655. this.btnSetMES.Text = "保存设置";
  656. this.btnSetMES.UseVisualStyleBackColor = true;
  657. this.btnSetMES.Click += new System.EventHandler(this.btnSetMES_Click);
  658. //
  659. // btnMESTest
  660. //
  661. this.btnMESTest.Location = new System.Drawing.Point(149, 107);
  662. this.btnMESTest.Name = "btnMESTest";
  663. this.btnMESTest.Size = new System.Drawing.Size(75, 23);
  664. this.btnMESTest.TabIndex = 12;
  665. this.btnMESTest.Text = "连接测试";
  666. this.btnMESTest.UseVisualStyleBackColor = true;
  667. this.btnMESTest.Click += new System.EventHandler(this.btnMESTest_Click);
  668. //
  669. // label8
  670. //
  671. this.label8.AutoSize = true;
  672. this.label8.Location = new System.Drawing.Point(6, 112);
  673. this.label8.Name = "label8";
  674. this.label8.Size = new System.Drawing.Size(29, 12);
  675. this.label8.TabIndex = 8;
  676. this.label8.Text = "密码";
  677. //
  678. // txtMES_Password
  679. //
  680. this.txtMES_Password.Location = new System.Drawing.Point(41, 108);
  681. this.txtMES_Password.Name = "txtMES_Password";
  682. this.txtMES_Password.Size = new System.Drawing.Size(100, 21);
  683. this.txtMES_Password.TabIndex = 9;
  684. this.txtMES_Password.UseSystemPasswordChar = true;
  685. //
  686. // label12
  687. //
  688. this.label12.AutoSize = true;
  689. this.label12.Location = new System.Drawing.Point(6, 83);
  690. this.label12.Name = "label12";
  691. this.label12.Size = new System.Drawing.Size(29, 12);
  692. this.label12.TabIndex = 6;
  693. this.label12.Text = "用户";
  694. //
  695. // txtMES_User
  696. //
  697. this.txtMES_User.Location = new System.Drawing.Point(41, 79);
  698. this.txtMES_User.Name = "txtMES_User";
  699. this.txtMES_User.Size = new System.Drawing.Size(100, 21);
  700. this.txtMES_User.TabIndex = 7;
  701. //
  702. // label13
  703. //
  704. this.label13.AutoSize = true;
  705. this.label13.Location = new System.Drawing.Point(6, 54);
  706. this.label13.Name = "label13";
  707. this.label13.Size = new System.Drawing.Size(29, 12);
  708. this.label13.TabIndex = 4;
  709. this.label13.Text = "帐套";
  710. //
  711. // txtMES_Account
  712. //
  713. this.txtMES_Account.Location = new System.Drawing.Point(41, 50);
  714. this.txtMES_Account.Name = "txtMES_Account";
  715. this.txtMES_Account.Size = new System.Drawing.Size(100, 21);
  716. this.txtMES_Account.TabIndex = 5;
  717. //
  718. // label14
  719. //
  720. this.label14.AutoSize = true;
  721. this.label14.Location = new System.Drawing.Point(147, 24);
  722. this.label14.Name = "label14";
  723. this.label14.Size = new System.Drawing.Size(29, 12);
  724. this.label14.TabIndex = 2;
  725. this.label14.Text = "端口";
  726. //
  727. // txtMES_Port
  728. //
  729. this.txtMES_Port.Location = new System.Drawing.Point(182, 20);
  730. this.txtMES_Port.MaxLength = 6;
  731. this.txtMES_Port.Name = "txtMES_Port";
  732. this.txtMES_Port.Size = new System.Drawing.Size(42, 21);
  733. this.txtMES_Port.TabIndex = 3;
  734. this.txtMES_Port.Text = "1234";
  735. this.txtMES_Port.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtPort_KeyPress);
  736. //
  737. // label15
  738. //
  739. this.label15.AutoSize = true;
  740. this.label15.Location = new System.Drawing.Point(6, 24);
  741. this.label15.Name = "label15";
  742. this.label15.Size = new System.Drawing.Size(29, 12);
  743. this.label15.TabIndex = 0;
  744. this.label15.Text = "地址";
  745. //
  746. // txtMES_IP
  747. //
  748. this.txtMES_IP.Location = new System.Drawing.Point(41, 20);
  749. this.txtMES_IP.Name = "txtMES_IP";
  750. this.txtMES_IP.Size = new System.Drawing.Size(100, 21);
  751. this.txtMES_IP.TabIndex = 1;
  752. this.txtMES_IP.Text = "127.0.0.1";
  753. //
  754. // panel1
  755. //
  756. this.panel1.Controls.Add(this.btnStartAll);
  757. this.panel1.Controls.Add(this.btnStopAll);
  758. this.panel1.Controls.Add(this.cboPLCType);
  759. this.panel1.Controls.Add(this.btnPLC_CRW);
  760. this.panel1.Controls.Add(this.textBox1);
  761. this.panel1.Controls.Add(this.grbSetting);
  762. this.panel1.Controls.Add(this.grbMES);
  763. this.panel1.Controls.Add(this.grbWS);
  764. this.panel1.Controls.Add(this.grbDB);
  765. this.panel1.Controls.Add(this.grbES);
  766. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  767. this.panel1.Location = new System.Drawing.Point(3, 32);
  768. this.panel1.Name = "panel1";
  769. this.panel1.Size = new System.Drawing.Size(707, 307);
  770. this.panel1.TabIndex = 6;
  771. //
  772. // cboPLCType
  773. //
  774. this.cboPLCType.FormattingEnabled = true;
  775. this.cboPLCType.Items.AddRange(new object[] {
  776. "MelsecA1EAscii",
  777. "SiemensS7_1200",
  778. "SiemensS7_200Smart",
  779. "SimpleSocketClientModel"});
  780. this.cboPLCType.Location = new System.Drawing.Point(530, 142);
  781. this.cboPLCType.Name = "cboPLCType";
  782. this.cboPLCType.Size = new System.Drawing.Size(168, 20);
  783. this.cboPLCType.TabIndex = 7;
  784. //
  785. // btnPLC_CRW
  786. //
  787. this.btnPLC_CRW.Location = new System.Drawing.Point(611, 167);
  788. this.btnPLC_CRW.Name = "btnPLC_CRW";
  789. this.btnPLC_CRW.Size = new System.Drawing.Size(75, 23);
  790. this.btnPLC_CRW.TabIndex = 2;
  791. this.btnPLC_CRW.Text = "PLC测试";
  792. this.btnPLC_CRW.UseVisualStyleBackColor = true;
  793. this.btnPLC_CRW.Click += new System.EventHandler(this.btnPLC_CRW_Click);
  794. //
  795. // textBox1
  796. //
  797. this.textBox1.Location = new System.Drawing.Point(565, 196);
  798. this.textBox1.Multiline = true;
  799. this.textBox1.Name = "textBox1";
  800. this.textBox1.Size = new System.Drawing.Size(121, 69);
  801. this.textBox1.TabIndex = 6;
  802. //
  803. // btnStopAll
  804. //
  805. this.btnStopAll.Location = new System.Drawing.Point(565, 279);
  806. this.btnStopAll.Name = "btnStopAll";
  807. this.btnStopAll.Size = new System.Drawing.Size(58, 23);
  808. this.btnStopAll.TabIndex = 8;
  809. this.btnStopAll.Text = "停所有";
  810. this.btnStopAll.UseVisualStyleBackColor = true;
  811. this.btnStopAll.Click += new System.EventHandler(this.btnStopAll_Click);
  812. //
  813. // btnStartAll
  814. //
  815. this.btnStartAll.Location = new System.Drawing.Point(629, 279);
  816. this.btnStartAll.Name = "btnStartAll";
  817. this.btnStartAll.Size = new System.Drawing.Size(58, 23);
  818. this.btnStartAll.TabIndex = 8;
  819. this.btnStartAll.Text = "启所有";
  820. this.btnStartAll.UseVisualStyleBackColor = true;
  821. this.btnStartAll.Click += new System.EventHandler(this.btnStartAll_Click);
  822. //
  823. // F_Main
  824. //
  825. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  826. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  827. this.ClientSize = new System.Drawing.Size(713, 342);
  828. this.Controls.Add(this.panel1);
  829. this.Controls.Add(this.txtStatus);
  830. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  831. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  832. this.MaximizeBox = false;
  833. this.Name = "F_Main";
  834. this.Padding = new System.Windows.Forms.Padding(3);
  835. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  836. this.Text = "PLC服务管理";
  837. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.F_Main_FormClosing);
  838. this.Shown += new System.EventHandler(this.F_Main_Shown);
  839. this.SizeChanged += new System.EventHandler(this.F_Main_SizeChanged);
  840. this.TextChanged += new System.EventHandler(this.F_Main_TextChanged);
  841. this.grbSetting.ResumeLayout(false);
  842. this.grbSetting.PerformLayout();
  843. this.grbWS.ResumeLayout(false);
  844. this.grbES.ResumeLayout(false);
  845. this.grbES.PerformLayout();
  846. this.grbDB.ResumeLayout(false);
  847. this.grbDB.PerformLayout();
  848. this.grbMES.ResumeLayout(false);
  849. this.grbMES.PerformLayout();
  850. this.panel1.ResumeLayout(false);
  851. this.panel1.PerformLayout();
  852. this.ResumeLayout(false);
  853. this.PerformLayout();
  854. }
  855. #endregion
  856. private System.Windows.Forms.GroupBox grbSetting;
  857. private System.Windows.Forms.GroupBox grbWS;
  858. private System.ServiceProcess.ServiceController serviceController1;
  859. private System.Windows.Forms.Button btnStart;
  860. private System.Windows.Forms.Button btnStop;
  861. private System.Windows.Forms.TextBox txtPort;
  862. private System.Windows.Forms.Button btnLog;
  863. private System.Windows.Forms.TextBox txtStatus;
  864. private System.Windows.Forms.Button btnExePath;
  865. private System.Windows.Forms.Button btnWS_Delete;
  866. private System.Windows.Forms.Button btnWS_ReStart;
  867. private System.Windows.Forms.Button btnWS_Stop;
  868. private System.Windows.Forms.Button btnWS_Start;
  869. private System.Windows.Forms.Button btnWS_Insert;
  870. private System.Windows.Forms.GroupBox grbES;
  871. private System.Windows.Forms.TextBox txtServiceName;
  872. private System.Windows.Forms.Label label2;
  873. private System.Windows.Forms.Label lblPort;
  874. private System.Windows.Forms.CheckBox chkAutoStart;
  875. private System.Windows.Forms.ComboBox cboPLCST;
  876. private System.Windows.Forms.Label label3;
  877. private System.Windows.Forms.Label label5;
  878. private System.Windows.Forms.Label label4;
  879. private System.Windows.Forms.TextBox txtDescription;
  880. private System.Windows.Forms.TextBox txtDisplayName;
  881. private System.Windows.Forms.Button btnGetSetting;
  882. private System.Windows.Forms.Button btnSetSetting;
  883. private System.Windows.Forms.NotifyIcon notifyIcon1;
  884. private System.Windows.Forms.Button btnWS_Refresh;
  885. private System.Windows.Forms.Button btnRefreshForm;
  886. private System.Windows.Forms.GroupBox grbDB;
  887. private System.Windows.Forms.Button btnOracleTest;
  888. private System.Windows.Forms.Label label6;
  889. private System.Windows.Forms.TextBox txtOraclePassword;
  890. private System.Windows.Forms.Label label7;
  891. private System.Windows.Forms.TextBox txtOracleUserName;
  892. private System.Windows.Forms.Label label9;
  893. private System.Windows.Forms.TextBox txtOracleDatabaseName;
  894. private System.Windows.Forms.Label label11;
  895. private System.Windows.Forms.TextBox txtOraclePort;
  896. private System.Windows.Forms.Label label10;
  897. private System.Windows.Forms.TextBox txtOracleName;
  898. private System.Windows.Forms.Button btnGetDB;
  899. private System.Windows.Forms.Button btnSetDB;
  900. private System.Windows.Forms.GroupBox grbMES;
  901. private System.Windows.Forms.Button btnGetMES;
  902. private System.Windows.Forms.Button btnSetMES;
  903. private System.Windows.Forms.Button btnMESTest;
  904. private System.Windows.Forms.Label label14;
  905. private System.Windows.Forms.TextBox txtMES_Port;
  906. private System.Windows.Forms.Label label15;
  907. private System.Windows.Forms.TextBox txtMES_IP;
  908. private System.Windows.Forms.Label label8;
  909. private System.Windows.Forms.TextBox txtMES_Password;
  910. private System.Windows.Forms.Label label12;
  911. private System.Windows.Forms.TextBox txtMES_User;
  912. private System.Windows.Forms.Label label13;
  913. private System.Windows.Forms.TextBox txtMES_Account;
  914. private System.Windows.Forms.Panel panel1;
  915. private System.Windows.Forms.TextBox textBox1;
  916. private System.Windows.Forms.Button btnLogLenR;
  917. private System.Windows.Forms.Button btnLogLenW;
  918. private System.Windows.Forms.ComboBox cboPLCType;
  919. private System.Windows.Forms.Button btnPLC_CRW;
  920. private System.Windows.Forms.TextBox txtLogLen;
  921. private System.Windows.Forms.TextBox txtInterval;
  922. private System.Windows.Forms.Label label1;
  923. private System.Windows.Forms.TextBox txtEPTS;
  924. private System.Windows.Forms.Label label16;
  925. private System.ComponentModel.BackgroundWorker backgroundWorker1;
  926. private System.Windows.Forms.Button btnStartAll;
  927. private System.Windows.Forms.Button btnStopAll;
  928. }
  929. }