You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
995 B
39 lines
995 B
Imports System.Reflection
|
|
Imports System.IO
|
|
|
|
Module Globals
|
|
Public Applikationsdaten As DataTable
|
|
Public AppldataRow As Integer
|
|
|
|
Public sConnectionString_edoka As String
|
|
Public sConnectionString_journale As String
|
|
Public sConnectionString_tgdata As String
|
|
|
|
Public args As String() = Environment.GetCommandLineArgs()
|
|
|
|
Public Params As New ClsParameter()
|
|
|
|
Public conn_edoka As New edokadb.clsConnectionProvider()
|
|
Public conn_journale As New edokadb.clsConnectionProvider()
|
|
Public conn_tgdata As New edokadb.clsConnectionProvider()
|
|
|
|
Public Fehler As Integer = 0
|
|
Public Warning As Integer = 0
|
|
Public DokumentID As String
|
|
Public ColdDokumentID As String
|
|
Public KeyNr As Long
|
|
|
|
Public ofile As System.IO.File
|
|
Public oread As System.IO.StreamReader
|
|
|
|
'NEU
|
|
Public appPath As String = Path.GetDirectoryName([Assembly].GetEntryAssembly().Location) + "\"
|
|
|
|
#Region "BMS"
|
|
|
|
Public m_log As bms.Logging
|
|
|
|
#End Region
|
|
|
|
End Module
|