Files
EDOKA_Tools/EDOKA_Toolset/Plugin_EDKTester/Utils/Globals.vb
2020-10-21 10:43:18 +02:00

21 lines
545 B
VB.net

Imports System.IO
Imports System.Reflection
Module Globals
Public ConnectionFilename As String
Public sConnectionstring As String
Public Mitarbeiternr As Integer
Public Vorlagendata_vollstaendig As New DataTable
Public Vorlagendata As New DataTable()
Public Paramdatei As String = ""
Public hasmessage As Integer
Public Applicationdata As String
Public Function ApplicationPath() As String
Return Path.GetDirectoryName([Assembly].GetEntryAssembly().Location) + "\"
End Function
End Module