16 lines
544 B
VB.net
16 lines
544 B
VB.net
Imports System.IO
|
|
Imports System.Xml
|
|
|
|
Module ModuleMySettings
|
|
'Dim ConfigPath As String = Path.Combine(Application.UserAppDataPath(), "UserConfig.xml")
|
|
Public Const USER_CONFIG_FILE = "UserConfig.xml"
|
|
Public Const COMPUTER_CONFIG_FILE = "ComputerConfig.xml"
|
|
|
|
Public MyConnectionString As String = ""
|
|
Public LogErrorsOnly As Boolean = True
|
|
Public GI_withWindream As Boolean = False
|
|
Public vWLaufwerk As String = "W"
|
|
'Public myPreviewActive As Boolean = True
|
|
Public FW_started As Boolean = False
|
|
End Module
|