Compare commits

...

2 Commits

Author SHA1 Message Date
Jonathan Jenne
e3469078e8 version 1.0.0.5 2019-11-12 15:59:13 +01:00
Jonathan Jenne
dddb80e0ab use commonappdata 2019-11-12 15:58:33 +01:00
2 changed files with 5 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ Imports System.Runtime.InteropServices
<Assembly: AssemblyDescription("")>
<Assembly: AssemblyCompany("Digital Data")>
<Assembly: AssemblyProduct("UserManager")>
<Assembly: AssemblyCopyright("Copyright © 2018")>
<Assembly: AssemblyCopyright("Copyright © 2019")>
<Assembly: AssemblyTrademark("")>
<Assembly: ComVisible(False)>
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
' <Assembly: AssemblyVersion("1.0.*")>
<Assembly: AssemblyVersion("1.0.0.4")>
<Assembly: AssemblyVersion("1.0.0.5")>
<Assembly: AssemblyFileVersion("1.0.0.0")>

View File

@@ -25,7 +25,7 @@ Public Class frmMain
Try
MyLogConfig = New LogConfig(LogConfig.PathType.AppData)
MyLogger = MyLogConfig.GetLogger()
MyConfig = New ConfigManager(Of UserConfig)(MyLogConfig, Application.UserAppDataPath)
MyConfig = New ConfigManager(Of UserConfig)(MyLogConfig, Application.CommonAppDataPath)
LoadConfig(MyConfig)
@@ -1068,7 +1068,8 @@ Public Class frmMain
End Sub
Private Sub btnOpenConfigDir_Click(sender As Object, e As EventArgs) Handles btnOpenConfigDir.Click
Process.Start(Application.UserAppDataPath())
Dim oConfigDir = IO.Directory.GetParent(MyConfig.UserConfigPath).FullName
Process.Start(oConfigDir)
End Sub
Private Sub btnOpenLogDir_Click(sender As Object, e As EventArgs) Handles btnOpenLogDir.Click