You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

MainForm.Designer.cs 24 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  1. namespace ClickForensics.Quartz.Manager
  2. {
  3. partial class MainForm
  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.components = new System.ComponentModel.Container();
  29. this.mainMenuStrip = new System.Windows.Forms.MenuStrip();
  30. this.schedulerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  31. this.connectToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  32. this.jobsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  33. this.addJobToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  34. this.listenersStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  35. this.globalListenersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  36. this.addGlobalJobListenerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  37. this.addTriggerListenerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  38. this.addJobListenerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  39. this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  40. this.serverConnectStatusLabel = new System.Windows.Forms.ToolStripStatusLabel();
  41. this.StripStatusLabel_Job_Groups = new System.Windows.Forms.ToolStripStatusLabel();
  42. this.StripStatusLabel_Jobs_Refresh_date = new System.Windows.Forms.ToolStripStatusLabel();
  43. this.jobGroupsTreeView = new System.Windows.Forms.TreeView();
  44. this.label1 = new System.Windows.Forms.Label();
  45. this.label2 = new System.Windows.Forms.Label();
  46. this.btnRefreshRunningJobs = new System.Windows.Forms.Button();
  47. this.btnRefreshJobGroups = new System.Windows.Forms.Button();
  48. this.btnDeleteJob = new System.Windows.Forms.Button();
  49. this.btnRunJobNow = new System.Windows.Forms.Button();
  50. this.btnPause = new System.Windows.Forms.Button();
  51. this.pnlDetails = new System.Windows.Forms.Panel();
  52. this.label3 = new System.Windows.Forms.Label();
  53. this.btnEdit = new System.Windows.Forms.Button();
  54. this.ctxScheduler = new System.Windows.Forms.ContextMenuStrip(this.components);
  55. this.backupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  56. this.timer_Refresh_Running_Jobs = new System.Windows.Forms.Timer(this.components);
  57. this.listView_RunningJobs = new System.Windows.Forms.ListView();
  58. this.JobName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  59. this.JobDuration = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
  60. this.jobAssembliesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  61. this.addAssemblyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  62. this.deleteAssemblyMenuItem = new System.Windows.Forms.ToolStripMenuItem();
  63. this.mainMenuStrip.SuspendLayout();
  64. this.statusStrip1.SuspendLayout();
  65. this.ctxScheduler.SuspendLayout();
  66. this.SuspendLayout();
  67. //
  68. // mainMenuStrip
  69. //
  70. this.mainMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  71. this.schedulerToolStripMenuItem,
  72. this.jobsToolStripMenuItem,
  73. this.listenersStripMenuItem,
  74. this.jobAssembliesToolStripMenuItem});
  75. this.mainMenuStrip.Location = new System.Drawing.Point(0, 0);
  76. this.mainMenuStrip.Name = "mainMenuStrip";
  77. this.mainMenuStrip.Size = new System.Drawing.Size(913, 24);
  78. this.mainMenuStrip.TabIndex = 0;
  79. this.mainMenuStrip.Text = "menuStrip1";
  80. //
  81. // schedulerToolStripMenuItem
  82. //
  83. this.schedulerToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  84. this.connectToolStripMenuItem});
  85. this.schedulerToolStripMenuItem.Name = "schedulerToolStripMenuItem";
  86. this.schedulerToolStripMenuItem.Size = new System.Drawing.Size(71, 20);
  87. this.schedulerToolStripMenuItem.Text = "Scheduler";
  88. //
  89. // connectToolStripMenuItem
  90. //
  91. this.connectToolStripMenuItem.Name = "connectToolStripMenuItem";
  92. this.connectToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
  93. this.connectToolStripMenuItem.Text = "Connect";
  94. this.connectToolStripMenuItem.Click += new System.EventHandler(this.connectToolStripMenuItem_Click);
  95. //
  96. // jobsToolStripMenuItem
  97. //
  98. this.jobsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  99. this.addJobToolStripMenuItem});
  100. this.jobsToolStripMenuItem.Enabled = false;
  101. this.jobsToolStripMenuItem.Name = "jobsToolStripMenuItem";
  102. this.jobsToolStripMenuItem.Size = new System.Drawing.Size(42, 20);
  103. this.jobsToolStripMenuItem.Text = "Jobs";
  104. //
  105. // addJobToolStripMenuItem
  106. //
  107. this.addJobToolStripMenuItem.Name = "addJobToolStripMenuItem";
  108. this.addJobToolStripMenuItem.Size = new System.Drawing.Size(96, 22);
  109. this.addJobToolStripMenuItem.Text = "Add";
  110. this.addJobToolStripMenuItem.Click += new System.EventHandler(this.addJobToolStripMenuItem_Click);
  111. //
  112. // listenersStripMenuItem
  113. //
  114. this.listenersStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  115. this.globalListenersToolStripMenuItem,
  116. this.addJobListenerToolStripMenuItem});
  117. this.listenersStripMenuItem.Enabled = false;
  118. this.listenersStripMenuItem.Name = "listenersStripMenuItem";
  119. this.listenersStripMenuItem.Size = new System.Drawing.Size(65, 20);
  120. this.listenersStripMenuItem.Text = "Listeners";
  121. //
  122. // globalListenersToolStripMenuItem
  123. //
  124. this.globalListenersToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  125. this.addGlobalJobListenerToolStripMenuItem,
  126. this.addTriggerListenerToolStripMenuItem});
  127. this.globalListenersToolStripMenuItem.Name = "globalListenersToolStripMenuItem";
  128. this.globalListenersToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
  129. this.globalListenersToolStripMenuItem.Text = "Global";
  130. //
  131. // addGlobalJobListenerToolStripMenuItem
  132. //
  133. this.addGlobalJobListenerToolStripMenuItem.Name = "addGlobalJobListenerToolStripMenuItem";
  134. this.addGlobalJobListenerToolStripMenuItem.Size = new System.Drawing.Size(181, 22);
  135. this.addGlobalJobListenerToolStripMenuItem.Text = "Add Job Listener";
  136. this.addGlobalJobListenerToolStripMenuItem.Click += new System.EventHandler(this.addGlobalListenerToolStripMenuItem_Click);
  137. //
  138. // addTriggerListenerToolStripMenuItem
  139. //
  140. this.addTriggerListenerToolStripMenuItem.Name = "addTriggerListenerToolStripMenuItem";
  141. this.addTriggerListenerToolStripMenuItem.Size = new System.Drawing.Size(181, 22);
  142. this.addTriggerListenerToolStripMenuItem.Text = "Add Trigger Listener";
  143. //
  144. // addJobListenerToolStripMenuItem
  145. //
  146. this.addJobListenerToolStripMenuItem.Name = "addJobListenerToolStripMenuItem";
  147. this.addJobListenerToolStripMenuItem.Size = new System.Drawing.Size(161, 22);
  148. this.addJobListenerToolStripMenuItem.Text = "Add Job Listener";
  149. this.addJobListenerToolStripMenuItem.Click += new System.EventHandler(this.addJobListenerToolStripMenuItem_Click);
  150. //
  151. // statusStrip1
  152. //
  153. this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  154. this.serverConnectStatusLabel,
  155. this.StripStatusLabel_Job_Groups,
  156. this.StripStatusLabel_Jobs_Refresh_date});
  157. this.statusStrip1.Location = new System.Drawing.Point(0, 639);
  158. this.statusStrip1.Name = "statusStrip1";
  159. this.statusStrip1.Size = new System.Drawing.Size(913, 22);
  160. this.statusStrip1.TabIndex = 1;
  161. this.statusStrip1.Text = "statusStrip1";
  162. //
  163. // serverConnectStatusLabel
  164. //
  165. this.serverConnectStatusLabel.Name = "serverConnectStatusLabel";
  166. this.serverConnectStatusLabel.Size = new System.Drawing.Size(86, 17);
  167. this.serverConnectStatusLabel.Text = "Not connected";
  168. //
  169. // StripStatusLabel_Job_Groups
  170. //
  171. this.StripStatusLabel_Job_Groups.BackColor = System.Drawing.Color.LightCyan;
  172. this.StripStatusLabel_Job_Groups.Name = "StripStatusLabel_Job_Groups";
  173. this.StripStatusLabel_Job_Groups.Size = new System.Drawing.Size(157, 17);
  174. this.StripStatusLabel_Job_Groups.Text = "StripStatusLabel_Job_Groups";
  175. this.StripStatusLabel_Job_Groups.ToolTipText = "Last Refresh of Job Groups";
  176. //
  177. // StripStatusLabel_Jobs_Refresh_date
  178. //
  179. this.StripStatusLabel_Jobs_Refresh_date.BackColor = System.Drawing.SystemColors.ActiveCaptionText;
  180. this.StripStatusLabel_Jobs_Refresh_date.Name = "StripStatusLabel_Jobs_Refresh_date";
  181. this.StripStatusLabel_Jobs_Refresh_date.Size = new System.Drawing.Size(191, 17);
  182. this.StripStatusLabel_Jobs_Refresh_date.Text = "StripStatusLabel_Jobs_Refresh_date";
  183. this.StripStatusLabel_Jobs_Refresh_date.ToolTipText = "Last Refresh Date of Running Jobs";
  184. //
  185. // jobGroupsTreeView
  186. //
  187. this.jobGroupsTreeView.HideSelection = false;
  188. this.jobGroupsTreeView.Location = new System.Drawing.Point(8, 48);
  189. this.jobGroupsTreeView.Name = "jobGroupsTreeView";
  190. this.jobGroupsTreeView.Size = new System.Drawing.Size(351, 252);
  191. this.jobGroupsTreeView.TabIndex = 2;
  192. //
  193. // label1
  194. //
  195. this.label1.AutoSize = true;
  196. this.label1.Location = new System.Drawing.Point(8, 32);
  197. this.label1.Name = "label1";
  198. this.label1.Size = new System.Drawing.Size(94, 13);
  199. this.label1.TabIndex = 4;
  200. this.label1.Text = "Scheduler Objects";
  201. //
  202. // label2
  203. //
  204. this.label2.AutoSize = true;
  205. this.label2.Location = new System.Drawing.Point(9, 319);
  206. this.label2.Name = "label2";
  207. this.label2.Size = new System.Drawing.Size(72, 13);
  208. this.label2.TabIndex = 5;
  209. this.label2.Text = "Running Jobs";
  210. //
  211. // btnRefreshRunningJobs
  212. //
  213. this.btnRefreshRunningJobs.Location = new System.Drawing.Point(371, 609);
  214. this.btnRefreshRunningJobs.Name = "btnRefreshRunningJobs";
  215. this.btnRefreshRunningJobs.Size = new System.Drawing.Size(75, 23);
  216. this.btnRefreshRunningJobs.TabIndex = 6;
  217. this.btnRefreshRunningJobs.Text = "Refresh";
  218. this.btnRefreshRunningJobs.UseVisualStyleBackColor = true;
  219. this.btnRefreshRunningJobs.Click += new System.EventHandler(this.btnRefreshRunningJobs_Click);
  220. //
  221. // btnRefreshJobGroups
  222. //
  223. this.btnRefreshJobGroups.Location = new System.Drawing.Point(284, 306);
  224. this.btnRefreshJobGroups.Name = "btnRefreshJobGroups";
  225. this.btnRefreshJobGroups.Size = new System.Drawing.Size(75, 23);
  226. this.btnRefreshJobGroups.TabIndex = 7;
  227. this.btnRefreshJobGroups.Text = "Refresh";
  228. this.btnRefreshJobGroups.UseVisualStyleBackColor = true;
  229. this.btnRefreshJobGroups.Click += new System.EventHandler(this.btnRefreshJobGroups_Click);
  230. //
  231. // btnDeleteJob
  232. //
  233. this.btnDeleteJob.Enabled = false;
  234. this.btnDeleteJob.Location = new System.Drawing.Point(533, 306);
  235. this.btnDeleteJob.Name = "btnDeleteJob";
  236. this.btnDeleteJob.Size = new System.Drawing.Size(65, 23);
  237. this.btnDeleteJob.TabIndex = 8;
  238. this.btnDeleteJob.Text = "Delete";
  239. this.btnDeleteJob.UseVisualStyleBackColor = true;
  240. this.btnDeleteJob.Click += new System.EventHandler(this.btnDeleteJob_Click);
  241. //
  242. // btnRunJobNow
  243. //
  244. this.btnRunJobNow.Enabled = false;
  245. this.btnRunJobNow.Location = new System.Drawing.Point(391, 306);
  246. this.btnRunJobNow.Name = "btnRunJobNow";
  247. this.btnRunJobNow.Size = new System.Drawing.Size(65, 23);
  248. this.btnRunJobNow.TabIndex = 9;
  249. this.btnRunJobNow.Text = "Run";
  250. this.btnRunJobNow.UseVisualStyleBackColor = true;
  251. this.btnRunJobNow.Click += new System.EventHandler(this.btnRunJobNow_Click);
  252. //
  253. // btnPause
  254. //
  255. this.btnPause.Enabled = false;
  256. this.btnPause.Location = new System.Drawing.Point(462, 306);
  257. this.btnPause.Name = "btnPause";
  258. this.btnPause.Size = new System.Drawing.Size(65, 23);
  259. this.btnPause.TabIndex = 10;
  260. this.btnPause.Text = "Pause";
  261. this.btnPause.UseVisualStyleBackColor = true;
  262. this.btnPause.Click += new System.EventHandler(this.btnPause_Click);
  263. //
  264. // pnlDetails
  265. //
  266. this.pnlDetails.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  267. this.pnlDetails.Location = new System.Drawing.Point(391, 45);
  268. this.pnlDetails.Name = "pnlDetails";
  269. this.pnlDetails.Size = new System.Drawing.Size(342, 252);
  270. this.pnlDetails.TabIndex = 11;
  271. //
  272. // label3
  273. //
  274. this.label3.AutoSize = true;
  275. this.label3.Location = new System.Drawing.Point(388, 29);
  276. this.label3.Name = "label3";
  277. this.label3.Size = new System.Drawing.Size(39, 13);
  278. this.label3.TabIndex = 12;
  279. this.label3.Text = "Details";
  280. //
  281. // btnEdit
  282. //
  283. this.btnEdit.Enabled = false;
  284. this.btnEdit.Location = new System.Drawing.Point(604, 306);
  285. this.btnEdit.Name = "btnEdit";
  286. this.btnEdit.Size = new System.Drawing.Size(65, 23);
  287. this.btnEdit.TabIndex = 13;
  288. this.btnEdit.Text = "Edit";
  289. this.btnEdit.UseVisualStyleBackColor = true;
  290. this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
  291. //
  292. // ctxScheduler
  293. //
  294. this.ctxScheduler.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  295. this.backupToolStripMenuItem});
  296. this.ctxScheduler.Name = "ctxScheduler";
  297. this.ctxScheduler.Size = new System.Drawing.Size(109, 26);
  298. //
  299. // backupToolStripMenuItem
  300. //
  301. this.backupToolStripMenuItem.Name = "backupToolStripMenuItem";
  302. this.backupToolStripMenuItem.Size = new System.Drawing.Size(108, 22);
  303. this.backupToolStripMenuItem.Text = "Backup";
  304. this.backupToolStripMenuItem.Click += new System.EventHandler(this.backupToolStripMenuItem_Click);
  305. //
  306. // timer_Refresh_Running_Jobs
  307. //
  308. this.timer_Refresh_Running_Jobs.Interval = 30000;
  309. this.timer_Refresh_Running_Jobs.Tick += new System.EventHandler(this.timer_Refresh_Running_Jobs_Tick);
  310. //
  311. // listView_RunningJobs
  312. //
  313. this.listView_RunningJobs.AllowColumnReorder = true;
  314. this.listView_RunningJobs.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
  315. this.JobName,
  316. this.JobDuration});
  317. this.listView_RunningJobs.Location = new System.Drawing.Point(8, 335);
  318. this.listView_RunningJobs.Name = "listView_RunningJobs";
  319. this.listView_RunningJobs.Size = new System.Drawing.Size(725, 268);
  320. this.listView_RunningJobs.Sorting = System.Windows.Forms.SortOrder.Ascending;
  321. this.listView_RunningJobs.TabIndex = 14;
  322. this.listView_RunningJobs.UseCompatibleStateImageBehavior = false;
  323. this.listView_RunningJobs.View = System.Windows.Forms.View.Details;
  324. //
  325. // JobName
  326. //
  327. this.JobName.Text = "Job Name";
  328. //
  329. // JobDuration
  330. //
  331. this.JobDuration.Text = "Duration";
  332. //
  333. // jobAssembliesToolStripMenuItem
  334. //
  335. this.jobAssembliesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
  336. this.addAssemblyMenuItem,
  337. this.deleteAssemblyMenuItem});
  338. this.jobAssembliesToolStripMenuItem.Name = "jobAssembliesToolStripMenuItem";
  339. this.jobAssembliesToolStripMenuItem.Size = new System.Drawing.Size(99, 20);
  340. this.jobAssembliesToolStripMenuItem.Text = "Job Assemblies";
  341. //
  342. // addAssemblyMenuItem
  343. //
  344. this.addAssemblyMenuItem.Name = "addAssemblyMenuItem";
  345. this.addAssemblyMenuItem.Size = new System.Drawing.Size(152, 22);
  346. this.addAssemblyMenuItem.Text = "Add";
  347. this.addAssemblyMenuItem.Click += new System.EventHandler(this.addAssemblyMenuItem_Click);
  348. //
  349. // deleteAssemblyMenuItem
  350. //
  351. this.deleteAssemblyMenuItem.Name = "deleteAssemblyMenuItem";
  352. this.deleteAssemblyMenuItem.Size = new System.Drawing.Size(152, 22);
  353. this.deleteAssemblyMenuItem.Text = "Delete";
  354. this.deleteAssemblyMenuItem.Click += new System.EventHandler(this.deleteAssemblyMenuItem_Click);
  355. //
  356. // MainForm
  357. //
  358. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  359. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  360. this.ClientSize = new System.Drawing.Size(913, 661);
  361. this.Controls.Add(this.btnRefreshJobGroups);
  362. this.Controls.Add(this.listView_RunningJobs);
  363. this.Controls.Add(this.pnlDetails);
  364. this.Controls.Add(this.label3);
  365. this.Controls.Add(this.label1);
  366. this.Controls.Add(this.btnEdit);
  367. this.Controls.Add(this.btnRefreshRunningJobs);
  368. this.Controls.Add(this.btnPause);
  369. this.Controls.Add(this.label2);
  370. this.Controls.Add(this.statusStrip1);
  371. this.Controls.Add(this.mainMenuStrip);
  372. this.Controls.Add(this.btnRunJobNow);
  373. this.Controls.Add(this.jobGroupsTreeView);
  374. this.Controls.Add(this.btnDeleteJob);
  375. this.MainMenuStrip = this.mainMenuStrip;
  376. this.Name = "MainForm";
  377. this.Text = "Quartz Manager";
  378. this.mainMenuStrip.ResumeLayout(false);
  379. this.mainMenuStrip.PerformLayout();
  380. this.statusStrip1.ResumeLayout(false);
  381. this.statusStrip1.PerformLayout();
  382. this.ctxScheduler.ResumeLayout(false);
  383. this.ResumeLayout(false);
  384. this.PerformLayout();
  385. }
  386. #endregion
  387. private System.Windows.Forms.MenuStrip mainMenuStrip;
  388. private System.Windows.Forms.ToolStripMenuItem schedulerToolStripMenuItem;
  389. private System.Windows.Forms.ToolStripMenuItem connectToolStripMenuItem;
  390. private System.Windows.Forms.StatusStrip statusStrip1;
  391. private System.Windows.Forms.ToolStripStatusLabel serverConnectStatusLabel;
  392. private System.Windows.Forms.TreeView jobGroupsTreeView;
  393. private System.Windows.Forms.ToolStripMenuItem listenersStripMenuItem;
  394. private System.Windows.Forms.ToolStripMenuItem globalListenersToolStripMenuItem;
  395. private System.Windows.Forms.ToolStripMenuItem addGlobalJobListenerToolStripMenuItem;
  396. private System.Windows.Forms.ToolStripMenuItem addTriggerListenerToolStripMenuItem;
  397. private System.Windows.Forms.ToolStripMenuItem addJobListenerToolStripMenuItem;
  398. private System.Windows.Forms.Label label1;
  399. private System.Windows.Forms.Label label2;
  400. private System.Windows.Forms.ToolStripMenuItem jobsToolStripMenuItem;
  401. private System.Windows.Forms.ToolStripMenuItem addJobToolStripMenuItem;
  402. private System.Windows.Forms.Button btnRefreshRunningJobs;
  403. private System.Windows.Forms.Button btnRefreshJobGroups;
  404. private System.Windows.Forms.Button btnDeleteJob;
  405. private System.Windows.Forms.Button btnRunJobNow;
  406. private System.Windows.Forms.Button btnPause;
  407. private System.Windows.Forms.Panel pnlDetails;
  408. private System.Windows.Forms.Label label3;
  409. private System.Windows.Forms.Button btnEdit;
  410. private System.Windows.Forms.ContextMenuStrip ctxScheduler;
  411. private System.Windows.Forms.ToolStripMenuItem backupToolStripMenuItem;
  412. private System.Windows.Forms.Timer timer_Refresh_Running_Jobs;
  413. private System.Windows.Forms.ToolStripStatusLabel StripStatusLabel_Jobs_Refresh_date;
  414. private System.Windows.Forms.ToolStripStatusLabel StripStatusLabel_Job_Groups;
  415. private System.Windows.Forms.ListView listView_RunningJobs;
  416. private System.Windows.Forms.ColumnHeader JobName;
  417. private System.Windows.Forms.ColumnHeader JobDuration;
  418. private System.Windows.Forms.ToolStripMenuItem jobAssembliesToolStripMenuItem;
  419. private System.Windows.Forms.ToolStripMenuItem addAssemblyMenuItem;
  420. private System.Windows.Forms.ToolStripMenuItem deleteAssemblyMenuItem;
  421. }
  422. }