first commit

This commit is contained in:
Meik
2025-11-11 11:12:05 +01:00
commit 69e2cda8cd
912 changed files with 428004 additions and 0 deletions

View File

@@ -0,0 +1,163 @@

namespace C4IT_DataHistoryProvider_Test
{
partial class ctrlActiveDirectory
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.buttonScanAD = new System.Windows.Forms.Button();
this.buttonRescan = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.textBoxScanLast = new System.Windows.Forms.TextBox();
this.textBoxScanNext = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.panelScanNext = new System.Windows.Forms.Panel();
this.buttonScanAzureAd = new System.Windows.Forms.Button();
this.ctrlProtocolBox1 = new C4IT_DataHistoryProvider_Test.ctrlProtocolBox();
this.SuspendLayout();
//
// buttonScanAD
//
this.buttonScanAD.Location = new System.Drawing.Point(24, 18);
this.buttonScanAD.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonScanAD.Name = "buttonScanAD";
this.buttonScanAD.Size = new System.Drawing.Size(157, 51);
this.buttonScanAD.TabIndex = 0;
this.buttonScanAD.Text = "Scan Active Directory";
this.buttonScanAD.UseVisualStyleBackColor = true;
this.buttonScanAD.Click += new System.EventHandler(this.buttonScanAD_Click);
//
// buttonRescan
//
this.buttonRescan.Location = new System.Drawing.Point(189, 18);
this.buttonRescan.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonRescan.Name = "buttonRescan";
this.buttonRescan.Size = new System.Drawing.Size(157, 51);
this.buttonRescan.TabIndex = 1;
this.buttonRescan.Text = "Full scan";
this.buttonRescan.UseVisualStyleBackColor = true;
this.buttonRescan.Click += new System.EventHandler(this.buttonRescan_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(22, 110);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(67, 16);
this.label1.TabIndex = 4;
this.label1.Text = "Last scan:";
//
// textBoxScanLast
//
this.textBoxScanLast.Location = new System.Drawing.Point(110, 107);
this.textBoxScanLast.Name = "textBoxScanLast";
this.textBoxScanLast.ReadOnly = true;
this.textBoxScanLast.Size = new System.Drawing.Size(141, 22);
this.textBoxScanLast.TabIndex = 5;
//
// textBoxScanNext
//
this.textBoxScanNext.Location = new System.Drawing.Point(393, 107);
this.textBoxScanNext.Name = "textBoxScanNext";
this.textBoxScanNext.ReadOnly = true;
this.textBoxScanNext.Size = new System.Drawing.Size(141, 22);
this.textBoxScanNext.TabIndex = 7;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(294, 110);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(78, 16);
this.label2.TabIndex = 6;
this.label2.Text = "Target time:";
//
// panelScanNext
//
this.panelScanNext.Location = new System.Drawing.Point(540, 107);
this.panelScanNext.Name = "panelScanNext";
this.panelScanNext.Size = new System.Drawing.Size(26, 26);
this.panelScanNext.TabIndex = 8;
//
// buttonScanAzureAd
//
this.buttonScanAzureAd.Location = new System.Drawing.Point(393, 18);
this.buttonScanAzureAd.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.buttonScanAzureAd.Name = "buttonScanAzureAd";
this.buttonScanAzureAd.Size = new System.Drawing.Size(157, 51);
this.buttonScanAzureAd.TabIndex = 3;
this.buttonScanAzureAd.Text = "Scan Azure AD only";
this.buttonScanAzureAd.UseVisualStyleBackColor = true;
this.buttonScanAzureAd.Visible = false;
this.buttonScanAzureAd.Click += new System.EventHandler(this.buttonScanAzureAd_Click);
//
// ctrlProtocolBox1
//
this.ctrlProtocolBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.ctrlProtocolBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.ctrlProtocolBox1.Location = new System.Drawing.Point(14, 148);
this.ctrlProtocolBox1.Margin = new System.Windows.Forms.Padding(2);
this.ctrlProtocolBox1.Name = "ctrlProtocolBox1";
this.ctrlProtocolBox1.Size = new System.Drawing.Size(1103, 195);
this.ctrlProtocolBox1.TabIndex = 9;
//
// ctrlActiveDirectory
//
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.Controls.Add(this.buttonScanAzureAd);
this.Controls.Add(this.panelScanNext);
this.Controls.Add(this.textBoxScanNext);
this.Controls.Add(this.label2);
this.Controls.Add(this.textBoxScanLast);
this.Controls.Add(this.label1);
this.Controls.Add(this.buttonRescan);
this.Controls.Add(this.buttonScanAD);
this.Controls.Add(this.ctrlProtocolBox1);
this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5);
this.Name = "ctrlActiveDirectory";
this.Size = new System.Drawing.Size(962, 331);
this.Load += new System.EventHandler(this.ctrlActiveDirectory_Load);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button buttonScanAD;
private System.Windows.Forms.Button buttonRescan;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBoxScanLast;
private System.Windows.Forms.TextBox textBoxScanNext;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Panel panelScanNext;
private ctrlProtocolBox ctrlProtocolBox1;
private System.Windows.Forms.Button buttonScanAzureAd;
}
}