diff --git a/Global_Indexer/ClassInit.vb b/Global_Indexer/ClassInit.vb index 89cb8c2..b000bd4 100644 --- a/Global_Indexer/ClassInit.vb +++ b/Global_Indexer/ClassInit.vb @@ -27,6 +27,7 @@ Public Class ClassInit oUtils.MigrateCommonAppDataConfig(Application.CommonAppDataPath, Application.ProductName, "Global Indexer") CONFIG = New ConfigManager(Of ClassConfig)(LOGCONFIG, Application.UserAppDataPath, Application.CommonAppDataPath, Application.StartupPath) + LOGCONFIG.Debug = CONFIG.Config.LogDEBUG LOGGER.Info("Debug log set to: [{0}]", LOGCONFIG.Debug) @@ -118,6 +119,7 @@ Public Class ClassInit 'ClassDatabase.Init() Dim oSql As String = "SELECT * FROM TBDD_MODULES WHERE NAME = 'Global-Indexer'" Dim DT As DataTable = DATABASE_ECM.GetDatatable(oSql) + If DT.Rows.Count = 1 Then GI_withWindream = DT.Rows(0).Item("BIT1") 'vWLaufwerk = DT.Rows(0).Item("STRING1") diff --git a/Global_Indexer/Global_Indexer.vbproj b/Global_Indexer/Global_Indexer.vbproj index 17eff68..f93e03f 100644 --- a/Global_Indexer/Global_Indexer.vbproj +++ b/Global_Indexer/Global_Indexer.vbproj @@ -169,32 +169,41 @@ ..\..\DDMonorepo\GUIs.GlobalIndexer\bin\Debug\DigitalData.GUIs.GlobalIndexer.dll - - ..\..\DDModules\Base\bin\Debug\DigitalData.Modules.Base.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\Base\DigitalData.Modules.Base.dll - - ..\..\DDModules\Config\bin\Debug\DigitalData.Modules.Config.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\Config\DigitalData.Modules.Config.dll - - ..\..\DDModules\Database\bin\Debug\DigitalData.Modules.Database.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\Database\DigitalData.Modules.Database.dll - - ..\..\DDModules\License\bin\Debug\DigitalData.Modules.License.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\License\DigitalData.Modules.License.dll - - ..\..\DDModules\Logging\bin\Debug\DigitalData.Modules.Logging.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\Logging\DigitalData.Modules.Logging.dll - - ..\..\DDModules\Messaging\bin\Debug\DigitalData.Modules.Messaging.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\Messaging\DigitalData.Modules.Messaging.dll - - ..\..\DDModules\Windows\bin\Debug\DigitalData.Modules.Windows.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\Windows\DigitalData.Modules.Windows.dll - - ..\..\DDModules\Windream\bin\Debug\DigitalData.Modules.Windream.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\Windream\DigitalData.Modules.Windream.dll - - ..\..\DDModules\ZooFlow\bin\Debug\DigitalData.Modules.ZooFlow.dll + + False + P:\Install .Net\0 DD - Bibliotheken\Modules\ZooFlow\DigitalData.Modules.ZooFlow.dll P:\Visual Studio Projekte\Bibliotheken\windream\Interop.WINDREAMLib.dll diff --git a/Global_Indexer/frmStart.vb b/Global_Indexer/frmStart.vb index 8bc5e3d..e4abc22 100644 --- a/Global_Indexer/frmStart.vb +++ b/Global_Indexer/frmStart.vb @@ -42,6 +42,7 @@ Public Class frmStart #Region "=== FORM EVENTS ===" Private Sub frmStart_Load(sender As Object, e As EventArgs) Handles Me.Load + Cursor = Cursors.WaitCursor Try IndexForm = New frmIndex()