- Timestamp:
- 12/18/08 17:18:26 (16 years ago)
- Location:
- trunk/sources/HeuristicLab.Hive.Server.Console
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Hive.Server.Console/AddJobForm.Designer.cs
r1030 r1037 69 69 this.cbParJob.Name = "cbParJob"; 70 70 this.cbParJob.Size = new System.Drawing.Size(212, 21); 71 this.cbParJob.TabIndex = 3;71 this.cbParJob.TabIndex = 2; 72 72 // 73 73 // btnAdd … … 76 76 this.btnAdd.Name = "btnAdd"; 77 77 this.btnAdd.Size = new System.Drawing.Size(75, 23); 78 this.btnAdd.TabIndex = 4;78 this.btnAdd.TabIndex = 3; 79 79 this.btnAdd.Text = "Add"; 80 80 this.btnAdd.UseVisualStyleBackColor = true; 81 this.btnAdd.Click += new System.EventHandler(this. btnAdd_Click);81 this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click); 82 82 // 83 83 // btnClose … … 86 86 this.btnClose.Name = "btnClose"; 87 87 this.btnClose.Size = new System.Drawing.Size(75, 23); 88 this.btnClose.TabIndex = 5;88 this.btnClose.TabIndex = 4; 89 89 this.btnClose.Text = "Close"; 90 90 this.btnClose.UseVisualStyleBackColor = true; 91 this.btnClose.Click += new System.EventHandler(this. btnClose_Click);91 this.btnClose.Click += new System.EventHandler(this.BtnClose_Click); 92 92 // 93 93 // lblNumJobs … … 105 105 this.tbNumJobs.Name = "tbNumJobs"; 106 106 this.tbNumJobs.Size = new System.Drawing.Size(212, 20); 107 this.tbNumJobs.TabIndex = 7;107 this.tbNumJobs.TabIndex = 1; 108 108 this.tbNumJobs.Text = "1"; 109 109 // -
trunk/sources/HeuristicLab.Hive.Server.Console/AddJobForm.cs
r1030 r1037 40 40 public AddJobForm() { 41 41 InitializeComponent(); 42 addJob();42 AddJob(); 43 43 } 44 44 45 private void addJob() {45 private void AddJob() { 46 46 jobManager = 47 47 ServiceLocator.GetJobManager(); … … 55 55 56 56 57 private void btnAdd_Click(object sender, EventArgs e) {57 private void BtnAdd_Click(object sender, EventArgs e) { 58 58 try { 59 59 lblError.Text = ""; … … 84 84 } 85 85 86 private void btnClose_Click(object sender, EventArgs e) {86 private void BtnClose_Click(object sender, EventArgs e) { 87 87 this.Close(); 88 88 } 89 90 89 91 } 90 92 } -
trunk/sources/HeuristicLab.Hive.Server.Console/AddUserForm.Designer.cs
r1030 r1037 78 78 this.tbOne.Name = "tbOne"; 79 79 this.tbOne.Size = new System.Drawing.Size(212, 20); 80 this.tbOne.TabIndex = 2;80 this.tbOne.TabIndex = 1; 81 81 // 82 82 // cbGroups … … 96 96 this.btnAdd.Text = "Add"; 97 97 this.btnAdd.UseVisualStyleBackColor = true; 98 this.btnAdd.Click += new System.EventHandler(this. btnAdd_Click);98 this.btnAdd.Click += new System.EventHandler(this.BtnAdd_Click); 99 99 // 100 100 // btnClose … … 106 106 this.btnClose.Text = "Close"; 107 107 this.btnClose.UseVisualStyleBackColor = true; 108 this.btnClose.Click += new System.EventHandler(this. btnClose_Click);108 this.btnClose.Click += new System.EventHandler(this.BtnClose_Click); 109 109 // 110 110 // tbPwd … … 113 113 this.tbPwd.Name = "tbPwd"; 114 114 this.tbPwd.Size = new System.Drawing.Size(212, 20); 115 this.tbPwd.TabIndex = 7; 115 this.tbPwd.TabIndex = 2; 116 this.tbPwd.UseSystemPasswordChar = true; 116 117 // 117 118 // lblPassword … … 121 122 this.lblPassword.Name = "lblPassword"; 122 123 this.lblPassword.Size = new System.Drawing.Size(53, 13); 123 this.lblPassword.TabIndex = 6;124 this.lblPassword.TabIndex = 0; 124 125 this.lblPassword.Text = "Password"; 125 126 // … … 139 140 this.Controls.Add(this.lblOne); 140 141 this.Name = "AddUserForm"; 141 this.Text = "Add NewForm";142 this.Text = "AddUserForm"; 142 143 this.ResumeLayout(false); 143 144 this.PerformLayout(); -
trunk/sources/HeuristicLab.Hive.Server.Console/AddUserForm.cs
r1030 r1037 52 52 53 53 if (addForm == "User") { 54 addUser();54 AddUser(); 55 55 } 56 56 } 57 57 58 private void addUser() {58 private void AddUser() { 59 59 userRoleManager = ServiceLocator.GetUserRoleManager(); 60 60 userGroups = userRoleManager.GetAllUserGroups(); … … 66 66 } 67 67 68 private void btnAdd_Click(object sender, EventArgs e) {68 private void BtnAdd_Click(object sender, EventArgs e) { 69 69 if (!group) { 70 70 if (tbOne.Text != "") { … … 101 101 } 102 102 103 private void btnClose_Click(object sender, EventArgs e) {103 private void BtnClose_Click(object sender, EventArgs e) { 104 104 this.Close(); 105 105 } -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsole.Designer.cs
r1018 r1037 52 52 this.lblIp = new System.Windows.Forms.Label(); 53 53 this.tbPort = new System.Windows.Forms.TextBox(); 54 this.tbIp = new System.Windows.Forms.TextBox(); 54 55 this.btnLogin = new System.Windows.Forms.Button(); 55 56 this.groupBox1 = new System.Windows.Forms.GroupBox(); … … 59 60 this.tbPwd = new System.Windows.Forms.TextBox(); 60 61 this.lblError = new System.Windows.Forms.Label(); 61 this.tbIp = new System.Windows.Forms.TextBox();62 62 this.msServerConsole.SuspendLayout(); 63 63 this.gbManager.SuspendLayout(); … … 99 99 this.gbManager.Name = "gbManager"; 100 100 this.gbManager.Size = new System.Drawing.Size(283, 82); 101 this.gbManager.TabIndex = 1;101 this.gbManager.TabIndex = 4; 102 102 this.gbManager.TabStop = false; 103 103 this.gbManager.Text = "Manager"; … … 126 126 this.tbPort.Name = "tbPort"; 127 127 this.tbPort.Size = new System.Drawing.Size(189, 20); 128 this.tbPort.TabIndex = 1; 128 this.tbPort.TabIndex = 6; 129 // 130 // tbIp 131 // 132 this.tbIp.Location = new System.Drawing.Point(77, 19); 133 this.tbIp.Name = "tbIp"; 134 this.tbIp.Size = new System.Drawing.Size(191, 20); 135 this.tbIp.TabIndex = 5; 129 136 // 130 137 // btnLogin … … 133 140 this.btnLogin.Name = "btnLogin"; 134 141 this.btnLogin.Size = new System.Drawing.Size(116, 23); 135 this.btnLogin.TabIndex = 2;142 this.btnLogin.TabIndex = 7; 136 143 this.btnLogin.Text = "Login"; 137 144 this.btnLogin.UseVisualStyleBackColor = true; 138 this.btnLogin.Click += new System.EventHandler(this. btnLogin_Click);145 this.btnLogin.Click += new System.EventHandler(this.BtnLogin_Click); 139 146 // 140 147 // groupBox1 … … 147 154 this.groupBox1.Name = "groupBox1"; 148 155 this.groupBox1.Size = new System.Drawing.Size(283, 82); 149 this.groupBox1.TabIndex = 4;156 this.groupBox1.TabIndex = 1; 150 157 this.groupBox1.TabStop = false; 151 158 this.groupBox1.Text = "Manager"; … … 156 163 this.tbUserName.Name = "tbUserName"; 157 164 this.tbUserName.Size = new System.Drawing.Size(189, 20); 158 this.tbUserName.TabIndex = 4;165 this.tbUserName.TabIndex = 2; 159 166 // 160 167 // lblPwd … … 181 188 this.tbPwd.Name = "tbPwd"; 182 189 this.tbPwd.Size = new System.Drawing.Size(189, 20); 183 this.tbPwd.TabIndex = 1;190 this.tbPwd.TabIndex = 3; 184 191 this.tbPwd.UseSystemPasswordChar = true; 185 192 // … … 192 199 this.lblError.Size = new System.Drawing.Size(0, 13); 193 200 this.lblError.TabIndex = 5; 194 //195 // tbIp196 //197 this.tbIp.Location = new System.Drawing.Point(77, 19);198 this.tbIp.Name = "tbIp";199 this.tbIp.Size = new System.Drawing.Size(191, 20);200 this.tbIp.TabIndex = 0;201 201 // 202 202 // HiveServerConsole -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerConsole.cs
r1030 r1037 42 42 public HiveServerConsole() { 43 43 InitializeComponent(); 44 tbUserName.Text = "Anita";45 tbPwd.Text = "Anita";46 tbIp.Text = "10.20.53.1";47 tbPort.Text = "9000";48 44 } 49 45 … … 58 54 /// <param name="sender"></param> 59 55 /// <param name="e"></param> 60 private void btnLogin_Click(object sender, EventArgs e) {56 private void BtnLogin_Click(object sender, EventArgs e) { 61 57 string newIp = tbIp.Text; 62 58 newIp = newIp.Replace(" ", ""); … … 65 61 ServiceLocator.Port = this.tbPort.Text; 66 62 67 if ( isValid()) {63 if (IsValid()) { 68 64 this.Visible = false; 69 65 information = new HiveServerManagementConsole(); 70 information.closeFormEvent += new closeForm( enableForm);66 information.closeFormEvent += new closeForm(EnableForm); 71 67 information.Show(); 72 68 } … … 74 70 75 71 76 private bool isValid() {72 private bool IsValid() { 77 73 if ((tbUserName.Text != "") && 78 74 (tbPwd.Text != "") && … … 111 107 } 112 108 113 private void enableForm(bool cf, bool error) {109 private void EnableForm(bool cf, bool error) { 114 110 if (cf) { 115 111 this.Visible = true; … … 119 115 } 120 116 } 121 122 string md5sum(byte[] FileOrText) { //Output: String<-> Input: Byte[]123 return BitConverter.ToString(new124 MD5CryptoServiceProvider().ComputeHash(FileOrText)).Replace("-", "").ToLower();125 }126 127 117 } 128 118 } -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerManagementConsole.Designer.cs
r1030 r1037 25 25 private void InitializeComponent() { 26 26 this.components = new System.ComponentModel.Container(); 27 System.Windows.Forms.ListViewItem listViewItem 1= new System.Windows.Forms.ListViewItem(new string[] {27 System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[] { 28 28 "", 29 29 "Test"}, -1); … … 42 42 this.tvClientControl = new System.Windows.Forms.TreeView(); 43 43 this.lvClientControl = new System.Windows.Forms.ListView(); 44 this.i mageList1= new System.Windows.Forms.ImageList(this.components);44 this.ilClientControl = new System.Windows.Forms.ImageList(this.components); 45 45 this.tpJobControl = new System.Windows.Forms.TabPage(); 46 46 this.scJobControl = new System.Windows.Forms.SplitContainer(); 47 47 this.tvJobControl = new System.Windows.Forms.TreeView(); 48 48 this.lvJobControl = new System.Windows.Forms.ListView(); 49 this.i mageList3= new System.Windows.Forms.ImageList(this.components);49 this.ilJobControl = new System.Windows.Forms.ImageList(this.components); 50 50 this.tpUserControl = new System.Windows.Forms.TabPage(); 51 51 this.scUserControl = new System.Windows.Forms.SplitContainer(); 52 52 this.tvUserControl = new System.Windows.Forms.TreeView(); 53 53 this.lvUserControl = new System.Windows.Forms.ListView(); 54 this.i mageList2= new System.Windows.Forms.ImageList(this.components);54 this.ilUserControl = new System.Windows.Forms.ImageList(this.components); 55 55 this.treeView2 = new System.Windows.Forms.TreeView(); 56 56 this.listView2 = new System.Windows.Forms.ListView(); 57 this.directorySearcher1 = new System.DirectoryServices.DirectorySearcher();58 57 this.timerSyncronize = new System.Windows.Forms.Timer(this.components); 59 58 this.menuStrip1.SuspendLayout(); … … 95 94 // 96 95 this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; 97 this.closeToolStripMenuItem.Size = new System.Drawing.Size(1 11, 22);96 this.closeToolStripMenuItem.Size = new System.Drawing.Size(152, 22); 98 97 this.closeToolStripMenuItem.Text = "Close"; 99 this.closeToolStripMenuItem.Click += new System.EventHandler(this. close_Click);98 this.closeToolStripMenuItem.Click += new System.EventHandler(this.Close_Click); 100 99 // 101 100 // addToolStripMenuItem … … 111 110 // 112 111 this.jobToolStripMenuItem.Name = "jobToolStripMenuItem"; 113 this.jobToolStripMenuItem.Size = new System.Drawing.Size(1 07, 22);112 this.jobToolStripMenuItem.Size = new System.Drawing.Size(152, 22); 114 113 this.jobToolStripMenuItem.Text = "Job"; 115 this.jobToolStripMenuItem.Click += new System.EventHandler(this. jobToolStripMenuItem1_Click);114 this.jobToolStripMenuItem.Click += new System.EventHandler(this.JobToolStripMenuItem1_Click); 116 115 // 117 116 // userToolStripMenuItem … … 121 120 this.groupToolStripMenuItem2}); 122 121 this.userToolStripMenuItem.Name = "userToolStripMenuItem"; 123 this.userToolStripMenuItem.Size = new System.Drawing.Size(1 07, 22);122 this.userToolStripMenuItem.Size = new System.Drawing.Size(152, 22); 124 123 this.userToolStripMenuItem.Text = "User"; 125 124 // … … 127 126 // 128 127 this.userToolStripMenuItem1.Name = "userToolStripMenuItem1"; 129 this.userToolStripMenuItem1.Size = new System.Drawing.Size(1 14, 22);128 this.userToolStripMenuItem1.Size = new System.Drawing.Size(152, 22); 130 129 this.userToolStripMenuItem1.Text = "User"; 131 this.userToolStripMenuItem1.Click += new System.EventHandler(this. userToolStripMenuItem1_Click);130 this.userToolStripMenuItem1.Click += new System.EventHandler(this.UserToolStripMenuItem1_Click); 132 131 // 133 132 // groupToolStripMenuItem2 134 133 // 135 134 this.groupToolStripMenuItem2.Name = "groupToolStripMenuItem2"; 136 this.groupToolStripMenuItem2.Size = new System.Drawing.Size(1 14, 22);135 this.groupToolStripMenuItem2.Size = new System.Drawing.Size(152, 22); 137 136 this.groupToolStripMenuItem2.Text = "Group"; 138 this.groupToolStripMenuItem2.Click += new System.EventHandler(this. groupToolStripMenuItem2_Click);137 this.groupToolStripMenuItem2.Click += new System.EventHandler(this.GroupToolStripMenuItem2_Click); 139 138 // 140 139 // tcManagementConsole … … 193 192 this.lvClientControl.ImeMode = System.Windows.Forms.ImeMode.Off; 194 193 this.lvClientControl.Items.AddRange(new System.Windows.Forms.ListViewItem[] { 195 listViewItem 1});196 this.lvClientControl.LargeImageList = this.i mageList1;194 listViewItem2}); 195 this.lvClientControl.LargeImageList = this.ilClientControl; 197 196 this.lvClientControl.Location = new System.Drawing.Point(0, 0); 198 197 this.lvClientControl.Name = "lvClientControl"; … … 201 200 this.lvClientControl.UseCompatibleStateImageBehavior = false; 202 201 // 203 // i mageList1204 // 205 this.i mageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));206 this.i mageList1.TransparentColor = System.Drawing.Color.Transparent;207 this.i mageList1.Images.SetKeyName(0, "monitor-green.png");208 this.i mageList1.Images.SetKeyName(1, "monitor-orange.png");209 this.i mageList1.Images.SetKeyName(2, "monitor-red.png");202 // ilClientControl 203 // 204 this.ilClientControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilClientControl.ImageStream"))); 205 this.ilClientControl.TransparentColor = System.Drawing.Color.Transparent; 206 this.ilClientControl.Images.SetKeyName(0, "monitor-green.png"); 207 this.ilClientControl.Images.SetKeyName(1, "monitor-orange.png"); 208 this.ilClientControl.Images.SetKeyName(2, "monitor-red.png"); 210 209 // 211 210 // tpJobControl … … 249 248 this.lvJobControl.AllowDrop = true; 250 249 this.lvJobControl.Dock = System.Windows.Forms.DockStyle.Fill; 251 this.lvJobControl.LargeImageList = this.i mageList3;250 this.lvJobControl.LargeImageList = this.ilJobControl; 252 251 this.lvJobControl.Location = new System.Drawing.Point(0, 0); 253 252 this.lvJobControl.Name = "lvJobControl"; … … 256 255 this.lvJobControl.UseCompatibleStateImageBehavior = false; 257 256 // 258 // i mageList3259 // 260 this.i mageList3.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList3.ImageStream")));261 this.i mageList3.TransparentColor = System.Drawing.Color.Transparent;262 this.i mageList3.Images.SetKeyName(0, "PlayHS.bmp");257 // ilJobControl 258 // 259 this.ilJobControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilJobControl.ImageStream"))); 260 this.ilJobControl.TransparentColor = System.Drawing.Color.Transparent; 261 this.ilJobControl.Images.SetKeyName(0, "PlayHS.bmp"); 263 262 // 264 263 // tpUserControl … … 302 301 this.lvUserControl.AllowDrop = true; 303 302 this.lvUserControl.Dock = System.Windows.Forms.DockStyle.Fill; 304 this.lvUserControl.LargeImageList = this.i mageList2;303 this.lvUserControl.LargeImageList = this.ilUserControl; 305 304 this.lvUserControl.Location = new System.Drawing.Point(0, 0); 306 305 this.lvUserControl.Name = "lvUserControl"; … … 309 308 this.lvUserControl.UseCompatibleStateImageBehavior = false; 310 309 // 311 // i mageList2312 // 313 this.i mageList2.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList2.ImageStream")));314 this.i mageList2.TransparentColor = System.Drawing.Color.Transparent;315 this.i mageList2.Images.SetKeyName(0, "Users.png");310 // ilUserControl 311 // 312 this.ilUserControl.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilUserControl.ImageStream"))); 313 this.ilUserControl.TransparentColor = System.Drawing.Color.Transparent; 314 this.ilUserControl.Images.SetKeyName(0, "Users.png"); 316 315 // 317 316 // treeView2 … … 332 331 this.listView2.TabIndex = 0; 333 332 this.listView2.UseCompatibleStateImageBehavior = false; 334 //335 // directorySearcher1336 //337 this.directorySearcher1.ClientTimeout = System.TimeSpan.Parse("-00:00:01");338 this.directorySearcher1.ServerPageTimeLimit = System.TimeSpan.Parse("-00:00:01");339 this.directorySearcher1.ServerTimeLimit = System.TimeSpan.Parse("-00:00:01");340 333 // 341 334 // timerSyncronize … … 394 387 private System.Windows.Forms.TreeView tvUserControl; 395 388 private System.Windows.Forms.ListView lvUserControl; 396 private System.Windows.Forms.ImageList i mageList1;389 private System.Windows.Forms.ImageList ilClientControl; 397 390 private System.Windows.Forms.ToolStripMenuItem addToolStripMenuItem; 398 391 private System.Windows.Forms.ToolStripMenuItem jobToolStripMenuItem; … … 400 393 private System.Windows.Forms.ToolStripMenuItem userToolStripMenuItem1; 401 394 private System.Windows.Forms.ToolStripMenuItem groupToolStripMenuItem2; 402 private System.Windows.Forms.ImageList imageList2; 403 private System.DirectoryServices.DirectorySearcher directorySearcher1; 395 private System.Windows.Forms.ImageList ilUserControl; 404 396 private System.Windows.Forms.Timer timerSyncronize; 405 private System.Windows.Forms.ImageList i mageList3;397 private System.Windows.Forms.ImageList ilJobControl; 406 398 } 407 399 } -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerManagementConsole.cs
r1030 r1037 48 48 public HiveServerManagementConsole() { 49 49 InitializeComponent(); 50 addClients();51 addJobs();52 addUsers();53 54 timerSyncronize.Tick += new EventHandler( tickSync);50 AddClients(); 51 AddJobs(); 52 AddUsers(); 53 54 timerSyncronize.Tick += new EventHandler(TickSync); 55 55 timerSyncronize.Start(); 56 56 } 57 57 58 private void tickSync(object obj, EventArgs e) {59 addClients();60 addJobs();61 addUsers();62 } 63 64 private void addClients() {58 private void TickSync(object obj, EventArgs e) { 59 AddClients(); 60 AddJobs(); 61 AddUsers(); 62 } 63 64 private void AddClients() { 65 65 try { 66 66 IClientManager clientManager = … … 98 98 } 99 99 100 private void addJobs() {100 private void AddJobs() { 101 101 try { 102 102 IJobManager jobManager = … … 107 107 tvJobControl.Nodes.Clear(); 108 108 109 ListViewGroup lvJobCalculating = new ListViewGroup("calculating", HorizontalAlignment.Left); 109 110 ListViewGroup lvJobFinished = new ListViewGroup("finished", HorizontalAlignment.Left); 110 ListViewGroup lvJob Offline = new ListViewGroup("offline", HorizontalAlignment.Left);111 ListViewGroup lvJobCalculating = new ListViewGroup("calculating", HorizontalAlignment.Left);111 ListViewGroup lvJobPending = new ListViewGroup("pending", HorizontalAlignment.Left); 112 tvJobControl.Nodes.Add("calculating"); 112 113 tvJobControl.Nodes.Add("finished"); 113 tvJobControl.Nodes.Add("offline"); 114 tvJobControl.Nodes.Add("calculating"); 114 tvJobControl.Nodes.Add("pending"); 115 115 foreach (Job job in jobs.List) { 116 if (job.State == State. finished) {116 if (job.State == State.calculating) { 117 117 tvJobControl.Nodes[0].Nodes.Add(job.Id.ToString()); 118 lvJobControl.Items.Add(new ListViewItem(job.Id.ToString(), 0, lvJobCalculating)); 119 } else if (job.State == State.finished) { 120 tvJobControl.Nodes[1].Nodes.Add(job.Id.ToString()); 118 121 lvJobControl.Items.Add(new ListViewItem(job.Id.ToString(), 0, lvJobFinished)); 119 122 } else if (job.State == State.offline) { 120 tvJobControl.Nodes[1].Nodes.Add(job.Id.ToString());121 lvJobControl.Items.Add(new ListViewItem(job.Id.ToString(), 0, lvJobOffline));122 } else if (job.State == State.calculating) {123 123 tvJobControl.Nodes[2].Nodes.Add(job.Id.ToString()); 124 lvJobControl.Items.Add(new ListViewItem(job.Id.ToString(), 0, lvJob Calculating));124 lvJobControl.Items.Add(new ListViewItem(job.Id.ToString(), 0, lvJobPending)); 125 125 } 126 126 } // Jobs 127 lvJobControl.Groups.Add(lvJobCalculating); 127 128 lvJobControl.Groups.Add(lvJobFinished); 128 lvJobControl.Groups.Add(lvJobOffline); 129 lvJobControl.Groups.Add(lvJobCalculating); 129 lvJobControl.Groups.Add(lvJobPending); 130 130 } 131 131 catch (Exception ex) { … … 135 135 } 136 136 137 private void addUsers() {137 private void AddUsers() { 138 138 try { 139 139 IUserRoleManager userRoleManager = … … 179 179 /// <param name="sender"></param> 180 180 /// <param name="e"></param> 181 private void close_Click(object sender, EventArgs e) {181 private void Close_Click(object sender, EventArgs e) { 182 182 if (closeFormEvent != null) { 183 183 closeFormEvent(true, false); … … 198 198 } 199 199 200 private void jobToolStripMenuItem1_Click(object sender, EventArgs e) {200 private void JobToolStripMenuItem1_Click(object sender, EventArgs e) { 201 201 AddJobForm newForm = new AddJobForm(); 202 202 newForm.Show(); 203 203 } 204 204 205 private void userToolStripMenuItem1_Click(object sender, EventArgs e) {205 private void UserToolStripMenuItem1_Click(object sender, EventArgs e) { 206 206 AddUserForm newForm = new AddUserForm("User", false); 207 207 newForm.Show(); 208 208 } 209 209 210 private void groupToolStripMenuItem2_Click(object sender, EventArgs e) {210 private void GroupToolStripMenuItem2_Click(object sender, EventArgs e) { 211 211 AddUserForm newForm = new AddUserForm("User", true); 212 212 newForm.Show(); -
trunk/sources/HeuristicLab.Hive.Server.Console/HiveServerManagementConsole.resx
r1030 r1037 121 121 <value>32, 12</value> 122 122 </metadata> 123 <metadata name="imageList1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 123 <metadata name="ilJobControl.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 124 <value>471, 13</value> 125 </metadata> 126 <data name="ilJobControl.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64"> 127 <value> 128 AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w 129 LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 130 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAG 131 CQAAAk1TRnQBSQFMAwEBAAEEAQABBAEAASABAAEgAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA 132 AYADAAEgAwABAQEAAQgGAAEQGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEA 133 AfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEA 134 AYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFm 135 AwABmQMAAcwCAAEzAwACMwIAATMBZgIAATMBmQIAATMBzAIAATMB/wIAAWYDAAFmATMCAAJmAgABZgGZ 136 AgABZgHMAgABZgH/AgABmQMAAZkBMwIAAZkBZgIAApkCAAGZAcwCAAGZAf8CAAHMAwABzAEzAgABzAFm 137 AgABzAGZAgACzAIAAcwB/wIAAf8BZgIAAf8BmQIAAf8BzAEAATMB/wIAAf8BAAEzAQABMwEAAWYBAAEz 138 AQABmQEAATMBAAHMAQABMwEAAf8BAAH/ATMCAAMzAQACMwFmAQACMwGZAQACMwHMAQACMwH/AQABMwFm 139 AgABMwFmATMBAAEzAmYBAAEzAWYBmQEAATMBZgHMAQABMwFmAf8BAAEzAZkCAAEzAZkBMwEAATMBmQFm 140 AQABMwKZAQABMwGZAcwBAAEzAZkB/wEAATMBzAIAATMBzAEzAQABMwHMAWYBAAEzAcwBmQEAATMCzAEA 141 ATMBzAH/AQABMwH/ATMBAAEzAf8BZgEAATMB/wGZAQABMwH/AcwBAAEzAv8BAAFmAwABZgEAATMBAAFm 142 AQABZgEAAWYBAAGZAQABZgEAAcwBAAFmAQAB/wEAAWYBMwIAAWYCMwEAAWYBMwFmAQABZgEzAZkBAAFm 143 ATMBzAEAAWYBMwH/AQACZgIAAmYBMwEAA2YBAAJmAZkBAAJmAcwBAAFmAZkCAAFmAZkBMwEAAWYBmQFm 144 AQABZgKZAQABZgGZAcwBAAFmAZkB/wEAAWYBzAIAAWYBzAEzAQABZgHMAZkBAAFmAswBAAFmAcwB/wEA 145 AWYB/wIAAWYB/wEzAQABZgH/AZkBAAFmAf8BzAEAAcwBAAH/AQAB/wEAAcwBAAKZAgABmQEzAZkBAAGZ 146 AQABmQEAAZkBAAHMAQABmQMAAZkCMwEAAZkBAAFmAQABmQEzAcwBAAGZAQAB/wEAAZkBZgIAAZkBZgEz 147 AQABmQEzAWYBAAGZAWYBmQEAAZkBZgHMAQABmQEzAf8BAAKZATMBAAKZAWYBAAOZAQACmQHMAQACmQH/ 148 AQABmQHMAgABmQHMATMBAAFmAcwBZgEAAZkBzAGZAQABmQLMAQABmQHMAf8BAAGZAf8CAAGZAf8BMwEA 149 AZkBzAFmAQABmQH/AZkBAAGZAf8BzAEAAZkC/wEAAcwDAAGZAQABMwEAAcwBAAFmAQABzAEAAZkBAAHM 150 AQABzAEAAZkBMwIAAcwCMwEAAcwBMwFmAQABzAEzAZkBAAHMATMBzAEAAcwBMwH/AQABzAFmAgABzAFm 151 ATMBAAGZAmYBAAHMAWYBmQEAAcwBZgHMAQABmQFmAf8BAAHMAZkCAAHMAZkBMwEAAcwBmQFmAQABzAKZ 152 AQABzAGZAcwBAAHMAZkB/wEAAswCAALMATMBAALMAWYBAALMAZkBAAPMAQACzAH/AQABzAH/AgABzAH/ 153 ATMBAAGZAf8BZgEAAcwB/wGZAQABzAH/AcwBAAHMAv8BAAHMAQABMwEAAf8BAAFmAQAB/wEAAZkBAAHM 154 ATMCAAH/AjMBAAH/ATMBZgEAAf8BMwGZAQAB/wEzAcwBAAH/ATMB/wEAAf8BZgIAAf8BZgEzAQABzAJm 155 AQAB/wFmAZkBAAH/AWYBzAEAAcwBZgH/AQAB/wGZAgAB/wGZATMBAAH/AZkBZgEAAf8CmQEAAf8BmQHM 156 AQAB/wGZAf8BAAH/AcwCAAH/AcwBMwEAAf8BzAFmAQAB/wHMAZkBAAH/AswBAAH/AcwB/wEAAv8BMwEA 157 AcwB/wFmAQAC/wGZAQAC/wHMAQACZgH/AQABZgH/AWYBAAFmAv8BAAH/AmYBAAH/AWYB/wEAAv8BZgEA 158 ASEBAAGlAQADXwEAA3cBAAOGAQADlgEAA8sBAAOyAQAD1wEAA90BAAPjAQAD6gEAA/EBAAP4AQAB8AH7 159 Af8BAAGkAqABAAOAAwAB/wIAAf8DAAL/AQAB/wMAAf8BAAH/AQAC/wIAA/8BAB9fAYV/AAFffwABX38A 160 AV9pAAEOASEBDhMAAV9pAAEhAUkBIRMAAV9pAAEhAigBIQEOEQABX2kAASEBJwEoAUkBIREAAV9pAAEh 161 BCgBIQEODwABX2kAASEBKAInASgBSQEhDwABX2kAASEGKAEhAQ4NAAFfaQABIQNJASgBJwEoAUkBIQ0A 162 AV9pAAEhBEkEKAEhAQ4LAAFfaQABIQJJAU8CSQEoAScBKAFJASELAAFfaQABEAFJA08CSQQoASEBDgkA 163 AV9pAAEQAUkBTwFyAk8CSQEoAScBKAFJASEJAAFfaQABEQJPAXIBUAJPAkkEKAEhAQ4HAAFfaQABEQFP 164 AVABlwJyAk8CSQMoAUkBIQcAAV9pAAERAU8BcgOXAVACTwFJAk8BSQEhAQ4HAAFfaQABQwFPAXIElwFy 165 AU8BSQFQAZcBSQkAAV9pAAFDAVABcgGXAXgBmAFyAU8CUAJJARAJAAFfaQABQwFQAXIBlwGYAQgBcgFJ 166 AVABlwFJCwABX2kAARUBUAGXAZgBeAJyAVACSQEQCwABX2kAARUBcgF4AQgBcgFJAVABlwFJDQABX2kA 167 ARUEcgFQAkkBEA0AAV9pAAEVAXIBTwFJAVABlwFJDwABX2kAARUCcgFQAkkBEA8AAV9pAAEVAnIBlwFJ 168 EQABX2kAAUkBcgFQAUkBEBEAAV9pAAFJAZcBSRMAAV9pAAEQAUkBEBMAAV9/AAFfYAABQgFNAT4HAAE+ 169 AwABKAMAAYADAAEgAwABAQEAAQEGAAECFgAD//8A/wADAAs= 170 </value> 171 </data> 172 <metadata name="ilClientControl.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 124 173 <value>129, 12</value> 125 174 </metadata> 126 <data name="i mageList1.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">175 <data name="ilClientControl.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64"> 127 176 <value> 128 177 AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w … … 215 264 </value> 216 265 </data> 217 <metadata name="imageList3.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 218 <value>587, 13</value> 219 </metadata> 220 <data name="imageList3.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64"> 221 <value> 222 AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w 223 LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 224 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAG 225 CQAAAk1TRnQBSQFMAwEBAAEEAQABBAEAASABAAEgAQAE/wEJAQAI/wFCAU0BNgEEBgABNgEEAgABKAMA 226 AYADAAEgAwABAQEAAQgGAAEQGAABgAIAAYADAAKAAQABgAMAAYABAAGAAQACgAIAA8ABAAHAAdwBwAEA 227 AfABygGmAQABMwUAATMBAAEzAQABMwEAAjMCAAMWAQADHAEAAyIBAAMpAQADVQEAA00BAANCAQADOQEA 228 AYABfAH/AQACUAH/AQABkwEAAdYBAAH/AewBzAEAAcYB1gHvAQAB1gLnAQABkAGpAa0CAAH/ATMDAAFm 229 AwABmQMAAcwCAAEzAwACMwIAATMBZgIAATMBmQIAATMBzAIAATMB/wIAAWYDAAFmATMCAAJmAgABZgGZ 230 AgABZgHMAgABZgH/AgABmQMAAZkBMwIAAZkBZgIAApkCAAGZAcwCAAGZAf8CAAHMAwABzAEzAgABzAFm 231 AgABzAGZAgACzAIAAcwB/wIAAf8BZgIAAf8BmQIAAf8BzAEAATMB/wIAAf8BAAEzAQABMwEAAWYBAAEz 232 AQABmQEAATMBAAHMAQABMwEAAf8BAAH/ATMCAAMzAQACMwFmAQACMwGZAQACMwHMAQACMwH/AQABMwFm 233 AgABMwFmATMBAAEzAmYBAAEzAWYBmQEAATMBZgHMAQABMwFmAf8BAAEzAZkCAAEzAZkBMwEAATMBmQFm 234 AQABMwKZAQABMwGZAcwBAAEzAZkB/wEAATMBzAIAATMBzAEzAQABMwHMAWYBAAEzAcwBmQEAATMCzAEA 235 ATMBzAH/AQABMwH/ATMBAAEzAf8BZgEAATMB/wGZAQABMwH/AcwBAAEzAv8BAAFmAwABZgEAATMBAAFm 236 AQABZgEAAWYBAAGZAQABZgEAAcwBAAFmAQAB/wEAAWYBMwIAAWYCMwEAAWYBMwFmAQABZgEzAZkBAAFm 237 ATMBzAEAAWYBMwH/AQACZgIAAmYBMwEAA2YBAAJmAZkBAAJmAcwBAAFmAZkCAAFmAZkBMwEAAWYBmQFm 238 AQABZgKZAQABZgGZAcwBAAFmAZkB/wEAAWYBzAIAAWYBzAEzAQABZgHMAZkBAAFmAswBAAFmAcwB/wEA 239 AWYB/wIAAWYB/wEzAQABZgH/AZkBAAFmAf8BzAEAAcwBAAH/AQAB/wEAAcwBAAKZAgABmQEzAZkBAAGZ 240 AQABmQEAAZkBAAHMAQABmQMAAZkCMwEAAZkBAAFmAQABmQEzAcwBAAGZAQAB/wEAAZkBZgIAAZkBZgEz 241 AQABmQEzAWYBAAGZAWYBmQEAAZkBZgHMAQABmQEzAf8BAAKZATMBAAKZAWYBAAOZAQACmQHMAQACmQH/ 242 AQABmQHMAgABmQHMATMBAAFmAcwBZgEAAZkBzAGZAQABmQLMAQABmQHMAf8BAAGZAf8CAAGZAf8BMwEA 243 AZkBzAFmAQABmQH/AZkBAAGZAf8BzAEAAZkC/wEAAcwDAAGZAQABMwEAAcwBAAFmAQABzAEAAZkBAAHM 244 AQABzAEAAZkBMwIAAcwCMwEAAcwBMwFmAQABzAEzAZkBAAHMATMBzAEAAcwBMwH/AQABzAFmAgABzAFm 245 ATMBAAGZAmYBAAHMAWYBmQEAAcwBZgHMAQABmQFmAf8BAAHMAZkCAAHMAZkBMwEAAcwBmQFmAQABzAKZ 246 AQABzAGZAcwBAAHMAZkB/wEAAswCAALMATMBAALMAWYBAALMAZkBAAPMAQACzAH/AQABzAH/AgABzAH/ 247 ATMBAAGZAf8BZgEAAcwB/wGZAQABzAH/AcwBAAHMAv8BAAHMAQABMwEAAf8BAAFmAQAB/wEAAZkBAAHM 248 ATMCAAH/AjMBAAH/ATMBZgEAAf8BMwGZAQAB/wEzAcwBAAH/ATMB/wEAAf8BZgIAAf8BZgEzAQABzAJm 249 AQAB/wFmAZkBAAH/AWYBzAEAAcwBZgH/AQAB/wGZAgAB/wGZATMBAAH/AZkBZgEAAf8CmQEAAf8BmQHM 250 AQAB/wGZAf8BAAH/AcwCAAH/AcwBMwEAAf8BzAFmAQAB/wHMAZkBAAH/AswBAAH/AcwB/wEAAv8BMwEA 251 AcwB/wFmAQAC/wGZAQAC/wHMAQACZgH/AQABZgH/AWYBAAFmAv8BAAH/AmYBAAH/AWYB/wEAAv8BZgEA 252 ASEBAAGlAQADXwEAA3cBAAOGAQADlgEAA8sBAAOyAQAD1wEAA90BAAPjAQAD6gEAA/EBAAP4AQAB8AH7 253 Af8BAAGkAqABAAOAAwAB/wIAAf8DAAL/AQAB/wMAAf8BAAH/AQAC/wIAA/8BAB9fAYV/AAFffwABX38A 254 AV9pAAEOASEBDhMAAV9pAAEhAUkBIRMAAV9pAAEhAigBIQEOEQABX2kAASEBJwEoAUkBIREAAV9pAAEh 255 BCgBIQEODwABX2kAASEBKAInASgBSQEhDwABX2kAASEGKAEhAQ4NAAFfaQABIQNJASgBJwEoAUkBIQ0A 256 AV9pAAEhBEkEKAEhAQ4LAAFfaQABIQJJAU8CSQEoAScBKAFJASELAAFfaQABEAFJA08CSQQoASEBDgkA 257 AV9pAAEQAUkBTwFyAk8CSQEoAScBKAFJASEJAAFfaQABEQJPAXIBUAJPAkkEKAEhAQ4HAAFfaQABEQFP 258 AVABlwJyAk8CSQMoAUkBIQcAAV9pAAERAU8BcgOXAVACTwFJAk8BSQEhAQ4HAAFfaQABQwFPAXIElwFy 259 AU8BSQFQAZcBSQkAAV9pAAFDAVABcgGXAXgBmAFyAU8CUAJJARAJAAFfaQABQwFQAXIBlwGYAQgBcgFJ 260 AVABlwFJCwABX2kAARUBUAGXAZgBeAJyAVACSQEQCwABX2kAARUBcgF4AQgBcgFJAVABlwFJDQABX2kA 261 ARUEcgFQAkkBEA0AAV9pAAEVAXIBTwFJAVABlwFJDwABX2kAARUCcgFQAkkBEA8AAV9pAAEVAnIBlwFJ 262 EQABX2kAAUkBcgFQAUkBEBEAAV9pAAFJAZcBSRMAAV9pAAEQAUkBEBMAAV9/AAFfYAABQgFNAT4HAAE+ 263 AwABKAMAAYADAAEgAwABAQEAAQEGAAECFgAD//8A/wADAAs= 264 </value> 265 </data> 266 <metadata name="imageList2.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 266 <metadata name="ilUserControl.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 267 267 <value>231, 9</value> 268 268 </metadata> 269 <data name="i mageList2.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">269 <data name="ilUserControl.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64"> 270 270 <value> 271 271 AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w … … 343 343 </value> 344 344 </data> 345 <metadata name="directorySearcher1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">346 <value>333, 11</value>347 </metadata>348 345 <metadata name="timerSyncronize.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> 349 <value> 464, 11</value>346 <value>341, 9</value> 350 347 </metadata> 351 348 </root>
Note: See TracChangeset
for help on using the changeset viewer.