commit 178435e183ded43d02800a187f81312341705fc5 Author: Hoeglinger Eugen Date: Fri Aug 26 13:58:58 2022 +0200 Initialize Funktion zum Schreiben von Werten in den Bereich %APPDATA% (ähnlich wie in der Registry) diff --git a/.vs/Roaming.git/v17/.suo b/.vs/Roaming.git/v17/.suo new file mode 100644 index 0000000..1f20bfe Binary files /dev/null and b/.vs/Roaming.git/v17/.suo differ diff --git a/Roaming.git.sln b/Roaming.git.sln new file mode 100644 index 0000000..6f7c3e7 --- /dev/null +++ b/Roaming.git.sln @@ -0,0 +1,31 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.3.32819.101 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Roaming", "Roaming\Roaming.csproj", "{A78C3C9D-EE58-429E-9B38-865C50B03E9B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_Roaming", "Test_Roaming\Test_Roaming.csproj", "{D9EB3E31-CD56-4111-A214-829B0A51592D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A78C3C9D-EE58-429E-9B38-865C50B03E9B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A78C3C9D-EE58-429E-9B38-865C50B03E9B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A78C3C9D-EE58-429E-9B38-865C50B03E9B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A78C3C9D-EE58-429E-9B38-865C50B03E9B}.Release|Any CPU.Build.0 = Release|Any CPU + {D9EB3E31-CD56-4111-A214-829B0A51592D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D9EB3E31-CD56-4111-A214-829B0A51592D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D9EB3E31-CD56-4111-A214-829B0A51592D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D9EB3E31-CD56-4111-A214-829B0A51592D}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A154AF04-648F-4B99-8DA0-DEFE90990C3B} + EndGlobalSection +EndGlobal diff --git a/Roaming/Properties/AssemblyInfo.cs b/Roaming/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..c48c9dd --- /dev/null +++ b/Roaming/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("Roaming")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Roaming")] +[assembly: AssemblyCopyright("Copyright © 2022 by Eugen Höglinger")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly +// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("a78c3c9d-ee58-429e-9b38-865c50b03e9b")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, +// indem Sie "*" wie unten gezeigt eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.*")] +//[assembly: AssemblyFileVersion("1.0.0.0")] //Wenn auskommentiert, dann gleich wie AssemblyVersion! diff --git a/Roaming/Roaming.cs b/Roaming/Roaming.cs new file mode 100644 index 0000000..868da7a --- /dev/null +++ b/Roaming/Roaming.cs @@ -0,0 +1,372 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Security.Permissions; +using System.Text; +using System.Threading.Tasks; +using System.Web; +using static System.Net.Mime.MediaTypeNames; + +namespace Eugen.ESystem +{ + public class Roaming + { + #region Version und Copyright + // Version und Copyright + static string dllName = Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); //Den Programmnamen auslesen + static string dllVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); + static object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); + static string copyright = GenerateCopyright(); + + //Assembly Datum und Zeit + static DateTime value = AssemblyDateTime(); + static string date = value.ToShortDateString(); + static string time = value.ToLongTimeString(); + + private static DateTime AssemblyDateTime() + { + var version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version; + var buildDateTime = new DateTime(2000, 1, 1).Add(new TimeSpan(TimeSpan.TicksPerDay * version.Build + TimeSpan.TicksPerSecond * 2 * version.Revision)); + //Tage seit dem 1. Januar 2000 und Sekunden seit Mitternacht, (multiplizier mit 2 ergibt das Original) + return buildDateTime; + } + + private static string CurrentYear() + { + DateTime dtn = DateTime.Now; + return dtn.Year.ToString(); + } + + private static string StartYear() + { + string startYear = ""; + if (((AssemblyCopyrightAttribute)attributes[0]).Copyright.Contains("Copyright © ")) + { + startYear = ((AssemblyCopyrightAttribute)attributes[0]).Copyright.Replace("Copyright © ", ""); + while (startYear.StartsWith(" ")) + { + startYear = startYear.Remove(0, 1); + } + + if (startYear.Contains("-")) + { + startYear = startYear.Remove(startYear.IndexOf("-")); + } + else + { + startYear = startYear.Remove(startYear.IndexOf(" ")); + } + return startYear; + } + else + { + DateTime dtn = DateTime.Now; + return dtn.Year.ToString(); + } + } + + private static string GenerateCopyright() + { + string startYear = StartYear(); + string currentYear = CurrentYear(); + + if (startYear == currentYear) + { + return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + } + else + { + string temp = ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + string start = temp.Remove(temp.IndexOf(startYear) - 1); + string end = (temp.Remove(0, temp.IndexOf(" by"))); + + return String.Concat(start, " ", startYear, "-", currentYear, end); + } + } + #endregion + + #region DLL-Info + /// + /// Contains the name of the dll file. + /// + public static string DllName { private set; get; } + + /// + /// Contains the version of the dll file. + /// + public static string DllVersion { private set; get; } + + /// + /// Contains the copyright notice. + /// + public static string Copyright { private set; get; } + + /// + /// Contains the name-, version- and copyright-information of the dll file. + /// + public static string[] DllInfo { private set; get; } + + private static void SetDllInfo() + { + //Name, Version und Copyright setzen + DllName = dllName; + DllVersion = dllVersion; + Copyright = copyright; + + string[] dllInfo = new string[3]; + dllInfo[0] = dllName; + dllInfo[1] = dllVersion; + dllInfo[2] = copyright; + DllInfo = dllInfo; + } + + protected string ProgramName { private set; get; } + protected string ProgramVersion { private set; get; } + protected string ProgramCopyright { private set; get; } + #endregion + + static Roaming() + { + SetDllInfo(); + } + + public Roaming() + { + SetDllInfo(); + RoamingPath = GetAppData(); + } + + enum Option + { + Write, + Read + } + + private string RoamingPath { set; get; } //Pfad zum Roaming-Verzeichnis + + /// + /// The main key(folder) + /// + public string MainKey { get; set; } //Hauptschlüssel oder Hauptordner + + /// + /// The sub key(folder), located under the main key + /// + public string SubKey { get; set; } //Unterschlüssel oder Unterordner + + /// + /// The key contains the value + /// + public string Key { get; set; } //Schlüssel + + /// + /// The value + /// + public string Value { get; set; } //Wert + + /// + /// Writes the key + /// + /// If the key could not be written + public void WriteKey() + { + string x = GenerateKey(Option.Write); + try + { + File.WriteAllText(GenerateKey(Option.Write), Value); + } + catch (Exception) + { + throw new UnableToCreateRoamingEntryException(); + } + } + + /// + /// Reads the key + /// + /// + /// If the key could not be read + public string ReadKey() + { + try + { + File.ReadAllText(GenerateKey(Option.Read)); + } + catch (Exception) + { + throw new UnableToReadRoamingEntryException(); + } + return Value; + } + + /// + /// Deletes the key + /// + /// If the key could not be deleted + public void DeleteKey() + { + try + { + if (File.Exists(GenerateKey(Option.Read))) + { + File.Delete(GenerateKey(Option.Read)); + } + } + catch (Exception) + { + throw new UnableToDeleteRoamingEntryException(); + } + } + + /// + /// Deletes the subkey including its content + /// + /// If the subkey could not be deleted + public void DeleteSubKey() + { + try + { + if (!String.IsNullOrEmpty(SubKey)) + { + if (Directory.Exists(RoamingPath + "\\" + MainKey + "\\" + SubKey)) + { + Directory.Delete(RoamingPath + "\\" + MainKey + "\\" + SubKey, true); + } + } + } + catch (Exception) + { + throw new UnableToDeleteRoamingEntryException(); + } + } + + /// + /// Deletes the maikey including its content + /// + /// If the mainkey could not be deleted + public void DeleteMainKey() + { + try + { + if (Directory.Exists(RoamingPath + "\\" + MainKey)) + { + Directory.Delete(RoamingPath + "\\" + MainKey, true); + } + } + catch (Exception) + { + throw new UnableToDeleteRoamingEntryException(); + } + } + + private string GetAppData() + { + return Environment.GetEnvironmentVariable("APPDATA"); //Ermittelt den Pafad des Verzeichnisses '%APPDATA%\Roaming' + } + + private string GenerateKey(Option option) + { + string key = ""; + + try + { + if (!Directory.Exists(RoamingPath + "\\" + MainKey)) + { + if (option == Option.Write) + { + Directory.CreateDirectory(RoamingPath + "\\" + MainKey); + } + else + { + throw new UnableToReadRoamingEntryException(); + } + } + + if (String.IsNullOrEmpty(SubKey)) + { + SubKey = ""; + } + else + { + if (option == Option.Write) + { + if (!Directory.Exists(RoamingPath + "\\" + MainKey + "\\" + SubKey)) + { + Directory.CreateDirectory(RoamingPath + "\\" + MainKey + "\\" + SubKey); + } + } + } + + if (SubKey == "") + { + key = RoamingPath + "\\" + MainKey + "\\" + Key; + } + else + { + key = RoamingPath + "\\" + MainKey + "\\" + SubKey + "\\" + Key; + } + } + catch (Exception) + { + throw new UnableToGenerateKeyException(); + } + + return key; + } + } + + #region Exceptions + class UnableToCreateRoamingEntryException : ApplicationException + { + public UnableToCreateRoamingEntryException() + { } + + public UnableToCreateRoamingEntryException(string message) : base(message) + { } + + public UnableToCreateRoamingEntryException(string message, Exception inner) : base(message, inner) + { } + } + + + class UnableToReadRoamingEntryException : ApplicationException + { + public UnableToReadRoamingEntryException() + { } + + public UnableToReadRoamingEntryException(string message) : base(message) + { } + + public UnableToReadRoamingEntryException(string message, Exception inner) : base(message, inner) + { } + } + + + class UnableToDeleteRoamingEntryException : ApplicationException + { + public UnableToDeleteRoamingEntryException() + { } + + public UnableToDeleteRoamingEntryException(string message) : base(message) + { } + + public UnableToDeleteRoamingEntryException(string message, Exception inner) : base(message, inner) + { } + } + + + class UnableToGenerateKeyException : ApplicationException + { + public UnableToGenerateKeyException() + { } + + public UnableToGenerateKeyException(string message) : base(message) + { } + + public UnableToGenerateKeyException(string message, Exception inner) : base(message, inner) + { } + } + #endregion +} diff --git a/Roaming/Roaming.csproj b/Roaming/Roaming.csproj new file mode 100644 index 0000000..ffe115d --- /dev/null +++ b/Roaming/Roaming.csproj @@ -0,0 +1,48 @@ + + + + + Debug + AnyCPU + {A78C3C9D-EE58-429E-9B38-865C50B03E9B} + Library + Properties + Eugen.ESystem + heroaming + v4.7.2 + 512 + false + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Roaming/bin/Debug/heroaming.dll b/Roaming/bin/Debug/heroaming.dll new file mode 100644 index 0000000..bf0fef6 Binary files /dev/null and b/Roaming/bin/Debug/heroaming.dll differ diff --git a/Roaming/bin/Debug/heroaming.pdb b/Roaming/bin/Debug/heroaming.pdb new file mode 100644 index 0000000..d0fbd13 Binary files /dev/null and b/Roaming/bin/Debug/heroaming.pdb differ diff --git a/Roaming/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Roaming/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..057ed7f --- /dev/null +++ b/Roaming/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/Roaming/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Roaming/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..204aacf Binary files /dev/null and b/Roaming/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Roaming/obj/Debug/Roaming.csproj.AssemblyReference.cache b/Roaming/obj/Debug/Roaming.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ce6c4ca Binary files /dev/null and b/Roaming/obj/Debug/Roaming.csproj.AssemblyReference.cache differ diff --git a/Roaming/obj/Debug/Roaming.csproj.CoreCompileInputs.cache b/Roaming/obj/Debug/Roaming.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ff7fe91 --- /dev/null +++ b/Roaming/obj/Debug/Roaming.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5b8cdb7377f3edf9e09d8ab4a9a439daa1ef0943 diff --git a/Roaming/obj/Debug/Roaming.csproj.FileListAbsolute.txt b/Roaming/obj/Debug/Roaming.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4ae30cc --- /dev/null +++ b/Roaming/obj/Debug/Roaming.csproj.FileListAbsolute.txt @@ -0,0 +1,6 @@ +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Roaming\obj\Debug\Roaming.csproj.AssemblyReference.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Roaming\obj\Debug\Roaming.csproj.CoreCompileInputs.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Roaming\bin\Debug\heroaming.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Roaming\bin\Debug\heroaming.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Roaming\obj\Debug\heroaming.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Roaming\obj\Debug\heroaming.pdb diff --git a/Roaming/obj/Debug/_IsIncrementalBuild b/Roaming/obj/Debug/_IsIncrementalBuild new file mode 100644 index 0000000..ff132f0 --- /dev/null +++ b/Roaming/obj/Debug/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\\_IsIncrementalBuild diff --git a/Roaming/obj/Debug/heroaming.dll b/Roaming/obj/Debug/heroaming.dll new file mode 100644 index 0000000..bf0fef6 Binary files /dev/null and b/Roaming/obj/Debug/heroaming.dll differ diff --git a/Roaming/obj/Debug/heroaming.pdb b/Roaming/obj/Debug/heroaming.pdb new file mode 100644 index 0000000..d0fbd13 Binary files /dev/null and b/Roaming/obj/Debug/heroaming.pdb differ diff --git a/Test_Roaming/App.config b/Test_Roaming/App.config new file mode 100644 index 0000000..5ffd8f8 --- /dev/null +++ b/Test_Roaming/App.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Test_Roaming/Form1.Designer.cs b/Test_Roaming/Form1.Designer.cs new file mode 100644 index 0000000..1b32d96 --- /dev/null +++ b/Test_Roaming/Form1.Designer.cs @@ -0,0 +1,131 @@ +namespace Test_Roaming +{ + partial class Form1 + { + /// + /// Erforderliche Designervariable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Verwendete Ressourcen bereinigen. + /// + /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Windows Form-Designer generierter Code + + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + this.buttonShowInfo = new System.Windows.Forms.Button(); + this.groupBoxProgramInfo = new System.Windows.Forms.GroupBox(); + this.labelProgramInfo = new System.Windows.Forms.Label(); + this.groupBoxDLLInfo = new System.Windows.Forms.GroupBox(); + this.labelDLLInfo = new System.Windows.Forms.Label(); + this.labelResult = new System.Windows.Forms.Label(); + this.groupBoxProgramInfo.SuspendLayout(); + this.groupBoxDLLInfo.SuspendLayout(); + this.SuspendLayout(); + // + // buttonShowInfo + // + this.buttonShowInfo.Location = new System.Drawing.Point(12, 287); + this.buttonShowInfo.Name = "buttonShowInfo"; + this.buttonShowInfo.Size = new System.Drawing.Size(776, 23); + this.buttonShowInfo.TabIndex = 0; + this.buttonShowInfo.Text = "Start"; + this.buttonShowInfo.UseVisualStyleBackColor = true; + this.buttonShowInfo.Click += new System.EventHandler(this.buttonShowInfo_Click); + // + // groupBoxProgramInfo + // + this.groupBoxProgramInfo.Controls.Add(this.labelProgramInfo); + this.groupBoxProgramInfo.Location = new System.Drawing.Point(12, 372); + this.groupBoxProgramInfo.Name = "groupBoxProgramInfo"; + this.groupBoxProgramInfo.Size = new System.Drawing.Size(385, 66); + this.groupBoxProgramInfo.TabIndex = 11; + this.groupBoxProgramInfo.TabStop = false; + this.groupBoxProgramInfo.Text = "Programm Information"; + // + // labelProgramInfo + // + this.labelProgramInfo.AutoSize = true; + this.labelProgramInfo.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.labelProgramInfo.Location = new System.Drawing.Point(7, 20); + this.labelProgramInfo.Name = "labelProgramInfo"; + this.labelProgramInfo.Size = new System.Drawing.Size(16, 13); + this.labelProgramInfo.TabIndex = 0; + this.labelProgramInfo.Text = "..."; + // + // groupBoxDLLInfo + // + this.groupBoxDLLInfo.Controls.Add(this.labelDLLInfo); + this.groupBoxDLLInfo.Location = new System.Drawing.Point(403, 372); + this.groupBoxDLLInfo.Name = "groupBoxDLLInfo"; + this.groupBoxDLLInfo.Size = new System.Drawing.Size(385, 66); + this.groupBoxDLLInfo.TabIndex = 12; + this.groupBoxDLLInfo.TabStop = false; + this.groupBoxDLLInfo.Text = "DLL Information"; + // + // labelDLLInfo + // + this.labelDLLInfo.AutoSize = true; + this.labelDLLInfo.ImeMode = System.Windows.Forms.ImeMode.NoControl; + this.labelDLLInfo.Location = new System.Drawing.Point(7, 20); + this.labelDLLInfo.Name = "labelDLLInfo"; + this.labelDLLInfo.Size = new System.Drawing.Size(16, 13); + this.labelDLLInfo.TabIndex = 0; + this.labelDLLInfo.Text = "..."; + // + // labelResult + // + this.labelResult.AutoSize = true; + this.labelResult.Location = new System.Drawing.Point(13, 13); + this.labelResult.Name = "labelResult"; + this.labelResult.Size = new System.Drawing.Size(16, 13); + this.labelResult.TabIndex = 13; + this.labelResult.Text = "..."; + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(800, 450); + this.Controls.Add(this.labelResult); + this.Controls.Add(this.groupBoxProgramInfo); + this.Controls.Add(this.groupBoxDLLInfo); + this.Controls.Add(this.buttonShowInfo); + this.Name = "Form1"; + this.Text = "Test_InfoBox"; + this.Load += new System.EventHandler(this.Form1_Load); + this.groupBoxProgramInfo.ResumeLayout(false); + this.groupBoxProgramInfo.PerformLayout(); + this.groupBoxDLLInfo.ResumeLayout(false); + this.groupBoxDLLInfo.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button buttonShowInfo; + private System.Windows.Forms.GroupBox groupBoxProgramInfo; + private System.Windows.Forms.Label labelProgramInfo; + private System.Windows.Forms.GroupBox groupBoxDLLInfo; + private System.Windows.Forms.Label labelDLLInfo; + private System.Windows.Forms.Label labelResult; + } +} + diff --git a/Test_Roaming/Form1.cs b/Test_Roaming/Form1.cs new file mode 100644 index 0000000..af025b2 --- /dev/null +++ b/Test_Roaming/Form1.cs @@ -0,0 +1,163 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Reflection; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Eugen.ESystem; + +namespace Test_Roaming +{ + public partial class Form1 : Form + { + #region Version und Copyright + // Version und Copyright + string programName = Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase); //Den Programmnamen auslesen + string programVersion = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); + static object[] attributes = System.Reflection.Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); + string copyright = GenerateCopyright(); + string icon = Application.StartupPath + "\\Info.bmp"; + //Assembly Datum und Zeit + static DateTime value = AssemblyDateTime(); + string date = value.ToShortDateString(); + string time = value.ToLongTimeString(); + private static DateTime AssemblyDateTime() + { + var version = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version; + var buildDateTime = new DateTime(2000, 1, 1).Add(new TimeSpan(TimeSpan.TicksPerDay * version.Build + TimeSpan.TicksPerSecond * 2 * version.Revision)); + //Tage seit dem 1. Januar 2000 und Sekunden seit Mitternacht, (multiplizier mit 2 ergibt das Original) + return buildDateTime; + } + + private static string CurrentYear() + { + DateTime dtn = DateTime.Now; + return dtn.Year.ToString(); + } + + private static string StartYear() + { + //string startYear = ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + //return startYear.Remove(0, startYear.LastIndexOf(" ") + 1); + string startYear = ""; + if (((AssemblyCopyrightAttribute)attributes[0]).Copyright.Contains("Copyright © ")) + { + startYear = ((AssemblyCopyrightAttribute)attributes[0]).Copyright.Replace("Copyright © ", ""); + while (startYear.StartsWith(" ")) + { + startYear = startYear.Remove(0, 1); + } + startYear = startYear.Remove(startYear.IndexOf(" ")); + return startYear; + } + else + { + DateTime dtn = DateTime.Now; + return dtn.Year.ToString(); + } + } + + private static string GenerateCopyright() + { + string startYear = StartYear(); + string currentYear = CurrentYear(); + + if (startYear == currentYear) + { + return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; + } + else + { + //return String.Concat(((AssemblyCopyrightAttribute)attributes[0]).Copyright, "-", currentYear); + return ((AssemblyCopyrightAttribute)attributes[0]).Copyright.Replace(startYear, String.Concat(startYear, "-", currentYear)); + } + } + #endregion + + #region Programm-Info + /// + /// Contains the name of the program file + /// + public static string ProgramName { set; get; } + + /// + /// Contains the version of the program file + /// + public static string ProgramVersion { set; get; } + + /// + /// Contains the copyright notice + /// + public static string Copyright { set; get; } + + private void SetProgramInfo() + { + //Name, Version und Copyright setzen + ProgramName = programName; + ProgramVersion = programVersion; + Copyright = copyright; + } + #endregion + + public Form1() + { + SetProgramInfo(); + InitializeComponent(); + } + + private void Form1_Load(object sender, EventArgs e) + { + labelProgramInfo.Text = String.Concat(ProgramName, "\r\n", ProgramVersion, "\r\n", Copyright); // Zeigt die Programm-Information an + + labelDLLInfo.Text = String.Concat(Roaming.DllName, "\r\n", Roaming.DllVersion, "\r\n", Roaming.Copyright); // Zeigt die DLL-Information an + } + + private void buttonShowInfo_Click(object sender, EventArgs e) + { + // + // Diese Zeilen gehört in das Programm kopiert + // + // Aufruf des Informationsfensters + var roaming = new Roaming(); + + string mainKey = "Test_Mainkey"; + string subKey = "Test_Subkey"; + string key = "Test_Key"; + string value = "Das ist der Wert"; + + try + { + roaming.MainKey = mainKey; //Hauptschlüssel oder Hauptverzeichnis + roaming.SubKey = subKey; //Unterschlüssel oder Unterverzeichnis + //roaming.SubKey = ""; //Unterschlüssel oder Unterverzeichnis + roaming.Key = key; //Schlüssel + roaming.Value = value; //Der Wert des Schlüssels + + roaming.WriteKey(); //Wert schreiben + string redvalue = roaming.ReadKey(); //Wert lesen + roaming.DeleteKey(); //Schlüssel löschen + + roaming.WriteKey(); //Wert schreiben + redvalue = roaming.ReadKey(); //Wert lesen + roaming.DeleteSubKey(); //Unterschlüssel löschen + + roaming.WriteKey(); //Wert schreiben + redvalue = roaming.ReadKey(); //Wert lesen + roaming.DeleteMainKey(); //Hauptschlüssel löschen + + labelResult.Text = "MainKey: " + mainKey + "\nSubKey: " + subKey + "\nKey: " + key + "\nValue: " + value + "\n\nSchreibe Key nach \'AppData\\Roaming\\'\nGelesener Wert: " + redvalue + "\nLösche Key/SubKey/MainKey"; + } + catch (Exception ex) + { + MessageBox.Show(ex.ToString()); + } + // + // + } + } +} diff --git a/Test_Roaming/Form1.resx b/Test_Roaming/Form1.resx new file mode 100644 index 0000000..29dcb1b --- /dev/null +++ b/Test_Roaming/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Test_Roaming/Program.cs b/Test_Roaming/Program.cs new file mode 100644 index 0000000..727b6f5 --- /dev/null +++ b/Test_Roaming/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Test_Roaming +{ + internal static class Program + { + /// + /// Der Haupteinstiegspunkt für die Anwendung. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/Test_Roaming/Properties/AssemblyInfo.cs b/Test_Roaming/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..de12b92 --- /dev/null +++ b/Test_Roaming/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("Test_Roaming")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Test_Roaming")] +[assembly: AssemblyCopyright("Copyright © 2022 by Eugen Höglinger")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly +// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("d9eb3e31-cd56-4111-a214-829b0a51592d")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, +// übernehmen, indem Sie "*" eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.*")] +//[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Test_Roaming/Properties/Resources.Designer.cs b/Test_Roaming/Properties/Resources.Designer.cs new file mode 100644 index 0000000..37f7b7d --- /dev/null +++ b/Test_Roaming/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +using System; + +namespace Test_Roaming.Properties +{ + /// + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// + // Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert + // -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources + { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() + { + } + + /// + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager + { + get + { + if (object.ReferenceEquals(resourceMan, null)) + { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Test_Roaming.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture + { + get + { + return resourceCulture; + } + set + { + resourceCulture = value; + } + } + } +} diff --git a/Test_Roaming/Properties/Resources.resx b/Test_Roaming/Properties/Resources.resx new file mode 100644 index 0000000..ffecec8 --- /dev/null +++ b/Test_Roaming/Properties/Resources.resx @@ -0,0 +1,117 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Test_Roaming/Properties/Settings.Designer.cs b/Test_Roaming/Properties/Settings.Designer.cs new file mode 100644 index 0000000..e4d0f1f --- /dev/null +++ b/Test_Roaming/Properties/Settings.Designer.cs @@ -0,0 +1,30 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion:4.0.30319.42000 +// +// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn +// der Code erneut generiert wird. +// +//------------------------------------------------------------------------------ + +namespace Test_Roaming.Properties +{ + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.1.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase + { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default + { + get + { + return defaultInstance; + } + } + } +} diff --git a/Test_Roaming/Properties/Settings.settings b/Test_Roaming/Properties/Settings.settings new file mode 100644 index 0000000..abf36c5 --- /dev/null +++ b/Test_Roaming/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Test_Roaming/Test_Roaming.csproj b/Test_Roaming/Test_Roaming.csproj new file mode 100644 index 0000000..b73d5d4 --- /dev/null +++ b/Test_Roaming/Test_Roaming.csproj @@ -0,0 +1,87 @@ + + + + + Debug + AnyCPU + {D9EB3E31-CD56-4111-A214-829B0A51592D} + WinExe + Test_Roaming + Test_Roaming + v4.8 + 512 + true + false + + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + ..\Roaming\bin\Debug\heroaming.dll + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + + + Form1.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/Test_Roaming/bin/Debug/Test_Roaming.exe b/Test_Roaming/bin/Debug/Test_Roaming.exe new file mode 100644 index 0000000..4497f17 Binary files /dev/null and b/Test_Roaming/bin/Debug/Test_Roaming.exe differ diff --git a/Test_Roaming/bin/Debug/Test_Roaming.exe.config b/Test_Roaming/bin/Debug/Test_Roaming.exe.config new file mode 100644 index 0000000..5ffd8f8 --- /dev/null +++ b/Test_Roaming/bin/Debug/Test_Roaming.exe.config @@ -0,0 +1,6 @@ + + + + + + diff --git a/Test_Roaming/bin/Debug/Test_Roaming.pdb b/Test_Roaming/bin/Debug/Test_Roaming.pdb new file mode 100644 index 0000000..66516f0 Binary files /dev/null and b/Test_Roaming/bin/Debug/Test_Roaming.pdb differ diff --git a/Test_Roaming/bin/Debug/heroaming.dll b/Test_Roaming/bin/Debug/heroaming.dll new file mode 100644 index 0000000..bf0fef6 Binary files /dev/null and b/Test_Roaming/bin/Debug/heroaming.dll differ diff --git a/Test_Roaming/bin/Debug/heroaming.pdb b/Test_Roaming/bin/Debug/heroaming.pdb new file mode 100644 index 0000000..d0fbd13 Binary files /dev/null and b/Test_Roaming/bin/Debug/heroaming.pdb differ diff --git a/Test_Roaming/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs b/Test_Roaming/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs new file mode 100644 index 0000000..3cf0af3 --- /dev/null +++ b/Test_Roaming/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.8", FrameworkDisplayName = ".NET Framework 4.8")] diff --git a/Test_Roaming/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Test_Roaming/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..2a64df3 Binary files /dev/null and b/Test_Roaming/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Test_Roaming/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Test_Roaming/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..da00b4a Binary files /dev/null and b/Test_Roaming/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Test_Roaming/obj/Debug/Test_Roaming.Form1.resources b/Test_Roaming/obj/Debug/Test_Roaming.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_Roaming/obj/Debug/Test_Roaming.Form1.resources differ diff --git a/Test_Roaming/obj/Debug/Test_Roaming.Properties.Resources.resources b/Test_Roaming/obj/Debug/Test_Roaming.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_Roaming/obj/Debug/Test_Roaming.Properties.Resources.resources differ diff --git a/Test_Roaming/obj/Debug/Test_Roaming.csproj.AssemblyReference.cache b/Test_Roaming/obj/Debug/Test_Roaming.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a479e99 Binary files /dev/null and b/Test_Roaming/obj/Debug/Test_Roaming.csproj.AssemblyReference.cache differ diff --git a/Test_Roaming/obj/Debug/Test_Roaming.csproj.CopyComplete b/Test_Roaming/obj/Debug/Test_Roaming.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/Test_Roaming/obj/Debug/Test_Roaming.csproj.CoreCompileInputs.cache b/Test_Roaming/obj/Debug/Test_Roaming.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f2a74d8 --- /dev/null +++ b/Test_Roaming/obj/Debug/Test_Roaming.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +af145d6415b5c68814787c67915328dc1992343e diff --git a/Test_Roaming/obj/Debug/Test_Roaming.csproj.FileListAbsolute.txt b/Test_Roaming/obj/Debug/Test_Roaming.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..7f238e5 --- /dev/null +++ b/Test_Roaming/obj/Debug/Test_Roaming.csproj.FileListAbsolute.txt @@ -0,0 +1,14 @@ +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\bin\Debug\Test_Roaming.exe.config +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\bin\Debug\Test_Roaming.exe +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\bin\Debug\Test_Roaming.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\bin\Debug\heroaming.dll +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\bin\Debug\heroaming.pdb +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.csproj.AssemblyReference.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.csproj.SuggestedBindingRedirects.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.Form1.resources +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.Properties.Resources.resources +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.csproj.GenerateResource.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.csproj.CoreCompileInputs.cache +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.csproj.CopyComplete +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.exe +H:\Programmieren\Git-WorkRepository\VisualStudio\_DLL\Roaming.git\Test_Roaming\obj\Debug\Test_Roaming.pdb diff --git a/Test_Roaming/obj/Debug/Test_Roaming.csproj.GenerateResource.cache b/Test_Roaming/obj/Debug/Test_Roaming.csproj.GenerateResource.cache new file mode 100644 index 0000000..bf02826 Binary files /dev/null and b/Test_Roaming/obj/Debug/Test_Roaming.csproj.GenerateResource.cache differ diff --git a/Test_Roaming/obj/Debug/Test_Roaming.csproj.SuggestedBindingRedirects.cache b/Test_Roaming/obj/Debug/Test_Roaming.csproj.SuggestedBindingRedirects.cache new file mode 100644 index 0000000..e69de29 diff --git a/Test_Roaming/obj/Debug/Test_Roaming.exe b/Test_Roaming/obj/Debug/Test_Roaming.exe new file mode 100644 index 0000000..4497f17 Binary files /dev/null and b/Test_Roaming/obj/Debug/Test_Roaming.exe differ diff --git a/Test_Roaming/obj/Debug/Test_Roaming.pdb b/Test_Roaming/obj/Debug/Test_Roaming.pdb new file mode 100644 index 0000000..66516f0 Binary files /dev/null and b/Test_Roaming/obj/Debug/Test_Roaming.pdb differ diff --git a/Test_Roaming/obj/Debug/_IsIncrementalBuild b/Test_Roaming/obj/Debug/_IsIncrementalBuild new file mode 100644 index 0000000..ff132f0 --- /dev/null +++ b/Test_Roaming/obj/Debug/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\\_IsIncrementalBuild