Imports System.IO Imports System.Reflection Module Globals ''' ''' Applikationsversion ''' ''' Public Version As String = "3.1" Public Versionsdatum As String = "22.01.2022" ''' ''' Applikationsdaten ''' ''' Public Applikationsdaten As DataTable Public AppldataRow As Integer 'Public TTContextMenuStrip As New ContextMenuStrip ''' ''' Angemelderter Mitarbeiter ''' ''' Public clsmitarbeiter As New TKB.VV.DB.clsMitarbeiter ''' ''' Applikationsparameter ''' ''' Public clsapplication As New TKB.VV.DB.clsApplication ''' ''' DB-Verbindungsklasse ''' ''' Public sConnectionString As String Public conn As New TKB.VV.DB.clsConnectionProvider Public ConnectionFileName As String = "" Public dbconn As New TKB.VV.DB.DB_Connection Public SecurityDaten As New DataSet Public Spaltendaten As New DataTable Public ToolTipDaten As New DataSet Public Set_ToolTips As Boolean = False ''' ''' Aktueller Applikationspfad ''' ''' ''' Public Function ApplicationPath() As String Return Path.GetDirectoryName([Assembly].GetEntryAssembly().Location) + "\" End Function Public WithEvents MyEventHanlder As New MyGenericEventHandler Public WithEvents Generic_Event_Handler As New Generic_Event_Handler End Module