Change username and password of other users

This commit is contained in:
Aurélie Delhaie
2022-07-14 18:33:30 +02:00
parent 8bf7c85112
commit 5d96a98b5e
21 changed files with 2960 additions and 2724 deletions

View File

@@ -34,6 +34,7 @@
this.Severity = new System.Windows.Forms.ColumnHeader();
this.toolStrip1 = new System.Windows.Forms.ToolStrip();
this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
this.Timestamp = new System.Windows.Forms.ColumnHeader();
this.toolStrip1.SuspendLayout();
this.SuspendLayout();
//
@@ -43,15 +44,15 @@
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.Timestamp,
this.Message,
this.Severity});
this.listView1.GridLines = true;
this.listView1.Location = new System.Drawing.Point(0, 27);
this.listView1.Margin = new System.Windows.Forms.Padding(2);
this.listView1.Location = new System.Drawing.Point(0, 40);
this.listView1.MultiSelect = false;
this.listView1.Name = "listView1";
this.listView1.ShowGroups = false;
this.listView1.Size = new System.Drawing.Size(747, 344);
this.listView1.Size = new System.Drawing.Size(1118, 514);
this.listView1.TabIndex = 0;
this.listView1.UseCompatibleStateImageBehavior = false;
this.listView1.View = System.Windows.Forms.View.Details;
@@ -69,11 +70,13 @@
// toolStrip1
//
this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
this.toolStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripButton1});
this.toolStrip1.Location = new System.Drawing.Point(0, 0);
this.toolStrip1.Name = "toolStrip1";
this.toolStrip1.Size = new System.Drawing.Size(746, 26);
this.toolStrip1.Padding = new System.Windows.Forms.Padding(0, 0, 3, 0);
this.toolStrip1.Size = new System.Drawing.Size(1119, 38);
this.toolStrip1.TabIndex = 1;
this.toolStrip1.Text = "toolStrip1";
//
@@ -83,20 +86,24 @@
this.toolStripButton1.Font = new System.Drawing.Font("Segoe MDL2 Assets", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
this.toolStripButton1.Name = "toolStripButton1";
this.toolStripButton1.Size = new System.Drawing.Size(32, 23);
this.toolStripButton1.Size = new System.Drawing.Size(46, 33);
this.toolStripButton1.Text = "";
this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
//
// Timestamp
//
this.Timestamp.Text = "Timestamp";
this.Timestamp.Width = 140;
//
// LogsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleDimensions = new System.Drawing.SizeF(144F, 144F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(746, 369);
this.ClientSize = new System.Drawing.Size(1119, 554);
this.Controls.Add(this.toolStrip1);
this.Controls.Add(this.listView1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(2);
this.MinimumSize = new System.Drawing.Size(507, 205);
this.MinimumSize = new System.Drawing.Size(750, 280);
this.Name = "LogsForm";
this.Text = "Logs";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.LogForm_FormClosed);
@@ -115,5 +122,6 @@
private ColumnHeader Severity;
private ToolStrip toolStrip1;
private ToolStripButton toolStripButton1;
private ColumnHeader Timestamp;
}
}