diff --git a/.vs/Global_Indexer/DesignTimeBuild/.dtbcache b/.vs/Global_Indexer/DesignTimeBuild/.dtbcache index c9d054d..5c6a9ff 100644 Binary files a/.vs/Global_Indexer/DesignTimeBuild/.dtbcache and b/.vs/Global_Indexer/DesignTimeBuild/.dtbcache differ diff --git a/Global_Indexer/ClassConfig.vb b/Global_Indexer/ClassConfig.vb index 19c9a7c..bd68fda 100644 --- a/Global_Indexer/ClassConfig.vb +++ b/Global_Indexer/ClassConfig.vb @@ -10,7 +10,7 @@ Public Class ClassConfig ' PDF Viewer Settings Public Property UniversalViewerPath As String = "" - Public Property FilePreview As Boolean = False + Public Property FilePreview As Boolean = True ' Misc Settings Public Property DeleteOriginalFile As Boolean = False diff --git a/Global_Indexer/ClassFolderWatcher.vb b/Global_Indexer/ClassFolderWatcher.vb index 1247d85..3cb1644 100644 --- a/Global_Indexer/ClassFolderWatcher.vb +++ b/Global_Indexer/ClassFolderWatcher.vb @@ -31,14 +31,12 @@ Public Class ClassFolderWatcher If FolderWatcher_SCAN.EnableRaisingEvents = True Then 'Gestartet also Stoppen FolderWatcher_SCAN.EnableRaisingEvents = False - FWSCAN_started = False 'FolderWatch neu instanzieren FolderWatcher_SCAN = New System.IO.FileSystemWatcher(CURRENT_SCAN_FOLDERWATCH, "*.*") ClassLogger.Add(" >> FolderWatchScan neu instanziert", False) FolderWatcher_SCAN.IncludeSubdirectories = False FolderWatcher_SCAN.EnableRaisingEvents = True AddHandler FolderWatcher_SCAN.Created, AddressOf OnCreated - FWSCAN_started = True 'SaveConfigValue("FWSCAN_started", "True") CONFIG.Config.FolderWatchScanStarted = True CONFIG.Save() @@ -127,8 +125,6 @@ Public Class ClassFolderWatcher FolderWatcher_SCAN.IncludeSubdirectories = False FolderWatcher_SCAN.EnableRaisingEvents = True AddHandler FolderWatcher_SCAN.Created, AddressOf OnCreated - FWSCAN_started = True - 'SaveConfigValue("FWSCAN_started", "True") CONFIG.Config.FolderWatchScanStarted = True CONFIG.Save() Return 1 @@ -141,15 +137,12 @@ Public Class ClassFolderWatcher FolderWatcher_SCAN.IncludeSubdirectories = False FolderWatcher_SCAN.EnableRaisingEvents = True AddHandler FolderWatcher_SCAN.Created, AddressOf OnCreated - FWSCAN_started = True - 'SaveConfigValue("FWSCAN_started", "True") CONFIG.Config.FolderWatchScanStarted = True CONFIG.Save() Return 1 Else 'Gestartet also Stoppen FolderWatcher_SCAN.EnableRaisingEvents = False - FWSCAN_started = False ClassLogger.Add(" >> FolderWatch Scan gestoppt", False) 'SaveConfigValue("FWSCAN_started", "False") CONFIG.Config.FolderWatchScanStarted = False diff --git a/Global_Indexer/ClassInit.vb b/Global_Indexer/ClassInit.vb index a239fe9..83ad7d4 100644 --- a/Global_Indexer/ClassInit.vb +++ b/Global_Indexer/ClassInit.vb @@ -23,10 +23,9 @@ Public Class ClassInit MyConnectionString = DecryptConnectionString(CONFIG.Config.ConnectionString) LogErrorsOnly = CONFIG.Config.LogErrorsOnly - Preview = CONFIG.Config.FilePreview + 'myPreviewActive = CONFIG.Config.FilePreview UniversalViewer_Path = CONFIG.Config.UniversalViewerPath FW_started = CONFIG.Config.FolderWatchStarted - FWSCAN_started = CONFIG.Config.FolderWatchScanStarted CURR_DELETE_ORIGIN = CONFIG.Config.DeleteOriginalFile End Sub @@ -105,7 +104,7 @@ Public Class ClassInit 'SaveConfigValue("FW_started", "False") CONFIG.Config.FolderWatchStarted = False CONFIG.Save() - Exit Sub + End If If Not IO.Directory.Exists(folderwatchPath) Then @@ -114,13 +113,13 @@ Public Class ClassInit 'SaveConfigValue("FW_started", "False") CONFIG.Config.FolderWatchStarted = False CONFIG.Save() - Exit Sub + End If CURRENT_FOLDERWATCH = folderwatchPath FW_started = True - FW_ISSTARTED = True + FWFunction_STARTED = True ClassFolderWatcher.StartStop_FolderWatch() Catch ex As Exception MsgBox($"Init_Folderwatch: Unexpected error while starting FolderWatch: {ex.Message}", MsgBoxStyle.Critical) @@ -136,8 +135,6 @@ Public Class ClassInit If folderwatchScanPath = String.Empty Then ClassLogger.Add("Init_Folderwatch: folderwatchScanPath is empty", True) - FWSCAN_started = False - 'SaveConfigValue("FW_started", "False") CONFIG.Config.FolderWatchStarted = False CONFIG.Save() Exit Sub @@ -145,8 +142,6 @@ Public Class ClassInit If Not IO.Directory.Exists(folderwatchScanPath) Then ClassLogger.Add("Init_Folderwatch: folderwatchScanPath does not exists or is invalid path", True) - FWSCAN_started = False - 'SaveConfigValue("FW_started", "False") CONFIG.Config.FolderWatchStarted = False CONFIG.Save() Exit Sub @@ -154,8 +149,8 @@ Public Class ClassInit CURRENT_SCAN_FOLDERWATCH = folderwatchScanPath - FWSCAN_started = True - FW_ISSTARTED = True + + FWFunction_STARTED = True ClassFolderWatcher.StartStop_FolderWatchSCAN() Catch ex As Exception MsgBox($"Init_Folderwatch: Unexpected error while starting FolderWatchScan: {ex.Message}", MsgBoxStyle.Critical) diff --git a/Global_Indexer/ClassLayout.vb b/Global_Indexer/ClassLayout.vb index a14e094..cf5db58 100644 --- a/Global_Indexer/ClassLayout.vb +++ b/Global_Indexer/ClassLayout.vb @@ -57,7 +57,7 @@ Public Class ClassWindowLocation form.Size = New Size(w, h) End If End If - + ' form.Size = New Size(310, 190) End If diff --git a/Global_Indexer/ModuleCURRENT.vb b/Global_Indexer/ModuleCURRENT.vb index 1c11613..9cda48e 100644 --- a/Global_Indexer/ModuleCURRENT.vb +++ b/Global_Indexer/ModuleCURRENT.vb @@ -39,7 +39,7 @@ Module ModuleCURRENT Public CURRENT_FOLDERWATCH As String = "" Public CURRENT_SCAN_FOLDERWATCH As String = "" - Public FW_ISSTARTED As Boolean = False + Public FWFunction_STARTED As Boolean = False Public CURR_DOKART_WD_DIRECT As Boolean = False Public CURR_DOKART_OBJECTTYPE As String diff --git a/Global_Indexer/ModuleMySettings.vb b/Global_Indexer/ModuleMySettings.vb index 6c9a609..217cabe 100644 --- a/Global_Indexer/ModuleMySettings.vb +++ b/Global_Indexer/ModuleMySettings.vb @@ -10,10 +10,10 @@ Module ModuleMySettings Public LogErrorsOnly As Boolean = True Public GI_withWindream As Boolean = False Public vWLaufwerk As String = "W" - Public Preview As Boolean = True + 'Public myPreviewActive As Boolean = True Public UniversalViewer_Path As String Public FW_started As Boolean = False - Public FWSCAN_started As Boolean = False + 'Public FWSCAN_started As Boolean = False 'Public Function GetUserConfigPath() As String ' Return Path.Combine(Application.UserAppDataPath(), USER_CONFIG_FILE) diff --git a/Global_Indexer/My Project/AssemblyInfo.vb b/Global_Indexer/My Project/AssemblyInfo.vb index 31fb15e..c66aa06 100644 --- a/Global_Indexer/My Project/AssemblyInfo.vb +++ b/Global_Indexer/My Project/AssemblyInfo.vb @@ -13,8 +13,8 @@ Imports System.Runtime.InteropServices - - + + @@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices ' übernehmen, indem Sie "*" eingeben: ' - + \ No newline at end of file diff --git a/Global_Indexer/frmConfig_Basic.designer.vb b/Global_Indexer/frmConfig_Basic.designer.vb index 4cfdf1f..2e747d0 100644 --- a/Global_Indexer/frmConfig_Basic.designer.vb +++ b/Global_Indexer/frmConfig_Basic.designer.vb @@ -43,7 +43,7 @@ Partial Class frmConfig_Basic Me.Button3 = New System.Windows.Forms.Button() Me.cmbLanguage = New System.Windows.Forms.ComboBox() Me.Label9 = New System.Windows.Forms.Label() - Me.CheckBox3 = New System.Windows.Forms.CheckBox() + Me.CheckBoxPreviewDocs = New System.Windows.Forms.CheckBox() Me.CheckBox2 = New System.Windows.Forms.CheckBox() Me.chkLogErrorsOnly = New System.Windows.Forms.CheckBox() Me.btnaddUniversalViewer = New System.Windows.Forms.Button() @@ -76,16 +76,15 @@ Partial Class frmConfig_Basic ' 'TabControl1 ' - resources.ApplyResources(Me.TabControl1, "TabControl1") Me.TabControl1.Controls.Add(Me.TabPage1) Me.TabControl1.Controls.Add(Me.TabPage2) Me.TabControl1.Controls.Add(Me.TabPage3) + resources.ApplyResources(Me.TabControl1, "TabControl1") Me.TabControl1.Name = "TabControl1" Me.TabControl1.SelectedIndex = 0 ' 'TabPage1 ' - resources.ApplyResources(Me.TabPage1, "TabPage1") Me.TabPage1.Controls.Add(Me.chkbxUserAut) Me.TabPage1.Controls.Add(Me.Label5) Me.TabPage1.Controls.Add(Me.cmbDatenbank) @@ -98,6 +97,7 @@ Partial Class frmConfig_Basic Me.TabPage1.Controls.Add(Me.txtUser) Me.TabPage1.Controls.Add(Me.txtPasswort) Me.TabPage1.Controls.Add(Me.BtnConnect) + resources.ApplyResources(Me.TabPage1, "TabPage1") Me.TabPage1.Name = "TabPage1" Me.TabPage1.UseVisualStyleBackColor = True ' @@ -114,8 +114,8 @@ Partial Class frmConfig_Basic ' 'cmbDatenbank ' - resources.ApplyResources(Me.cmbDatenbank, "cmbDatenbank") Me.cmbDatenbank.FormattingEnabled = True + resources.ApplyResources(Me.cmbDatenbank, "cmbDatenbank") Me.cmbDatenbank.Name = "cmbDatenbank" ' 'Label4 @@ -147,38 +147,37 @@ Partial Class frmConfig_Basic ' 'txtServer ' - resources.ApplyResources(Me.txtServer, "txtServer") Me.txtServer.ForeColor = System.Drawing.SystemColors.WindowText + resources.ApplyResources(Me.txtServer, "txtServer") Me.txtServer.Name = "txtServer" ' 'txtUser ' - resources.ApplyResources(Me.txtUser, "txtUser") Me.txtUser.ForeColor = System.Drawing.SystemColors.WindowText + resources.ApplyResources(Me.txtUser, "txtUser") Me.txtUser.Name = "txtUser" ' 'txtPasswort ' - resources.ApplyResources(Me.txtPasswort, "txtPasswort") Me.txtPasswort.ForeColor = System.Drawing.SystemColors.WindowText + resources.ApplyResources(Me.txtPasswort, "txtPasswort") Me.txtPasswort.Name = "txtPasswort" Me.txtPasswort.UseSystemPasswordChar = True ' 'BtnConnect ' - resources.ApplyResources(Me.BtnConnect, "BtnConnect") Me.BtnConnect.Image = Global.Global_Indexer.My.Resources.Resources.database_go + resources.ApplyResources(Me.BtnConnect, "BtnConnect") Me.BtnConnect.Name = "BtnConnect" Me.BtnConnect.UseVisualStyleBackColor = True ' 'TabPage2 ' - resources.ApplyResources(Me.TabPage2, "TabPage2") Me.TabPage2.Controls.Add(Me.LinkLabel1) Me.TabPage2.Controls.Add(Me.Button3) Me.TabPage2.Controls.Add(Me.cmbLanguage) Me.TabPage2.Controls.Add(Me.Label9) - Me.TabPage2.Controls.Add(Me.CheckBox3) + Me.TabPage2.Controls.Add(Me.CheckBoxPreviewDocs) Me.TabPage2.Controls.Add(Me.CheckBox2) Me.TabPage2.Controls.Add(Me.chkLogErrorsOnly) Me.TabPage2.Controls.Add(Me.btnaddUniversalViewer) @@ -187,6 +186,7 @@ Partial Class frmConfig_Basic Me.TabPage2.Controls.Add(Me.btnLogMail) Me.TabPage2.Controls.Add(Me.btnApplicationFolder) Me.TabPage2.Controls.Add(Me.btnopenlog) + resources.ApplyResources(Me.TabPage2, "TabPage2") Me.TabPage2.Name = "TabPage2" Me.TabPage2.UseVisualStyleBackColor = True ' @@ -204,9 +204,9 @@ Partial Class frmConfig_Basic ' 'cmbLanguage ' - resources.ApplyResources(Me.cmbLanguage, "cmbLanguage") Me.cmbLanguage.FormattingEnabled = True Me.cmbLanguage.Items.AddRange(New Object() {resources.GetString("cmbLanguage.Items"), resources.GetString("cmbLanguage.Items1")}) + resources.ApplyResources(Me.cmbLanguage, "cmbLanguage") Me.cmbLanguage.Name = "cmbLanguage" ' 'Label9 @@ -214,13 +214,13 @@ Partial Class frmConfig_Basic resources.ApplyResources(Me.Label9, "Label9") Me.Label9.Name = "Label9" ' - 'CheckBox3 + 'CheckBoxPreviewDocs ' - resources.ApplyResources(Me.CheckBox3, "CheckBox3") - Me.CheckBox3.Checked = Global.Global_Indexer.My.MySettings.Default.DoNot_Show_Documents - Me.CheckBox3.DataBindings.Add(New System.Windows.Forms.Binding("Checked", Global.Global_Indexer.My.MySettings.Default, "DoNot_Show_Documents", True, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)) - Me.CheckBox3.Name = "CheckBox3" - Me.CheckBox3.UseVisualStyleBackColor = True + resources.ApplyResources(Me.CheckBoxPreviewDocs, "CheckBoxPreviewDocs") + Me.CheckBoxPreviewDocs.Checked = Global.Global_Indexer.My.MySettings.Default.DoNot_Show_Documents + Me.CheckBoxPreviewDocs.DataBindings.Add(New System.Windows.Forms.Binding("Checked", Global.Global_Indexer.My.MySettings.Default, "DoNot_Show_Documents", True, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged)) + Me.CheckBoxPreviewDocs.Name = "CheckBoxPreviewDocs" + Me.CheckBoxPreviewDocs.UseVisualStyleBackColor = True ' 'CheckBox2 ' @@ -255,28 +255,27 @@ Partial Class frmConfig_Basic ' 'btnLogMail ' - resources.ApplyResources(Me.btnLogMail, "btnLogMail") Me.btnLogMail.Image = Global.Global_Indexer.My.Resources.Resources.email + resources.ApplyResources(Me.btnLogMail, "btnLogMail") Me.btnLogMail.Name = "btnLogMail" Me.btnLogMail.UseVisualStyleBackColor = True ' 'btnApplicationFolder ' - resources.ApplyResources(Me.btnApplicationFolder, "btnApplicationFolder") Me.btnApplicationFolder.Image = Global.Global_Indexer.My.Resources.Resources.folder_go + resources.ApplyResources(Me.btnApplicationFolder, "btnApplicationFolder") Me.btnApplicationFolder.Name = "btnApplicationFolder" Me.btnApplicationFolder.UseVisualStyleBackColor = True ' 'btnopenlog ' - resources.ApplyResources(Me.btnopenlog, "btnopenlog") Me.btnopenlog.Image = Global.Global_Indexer.My.Resources.Resources.folder_go + resources.ApplyResources(Me.btnopenlog, "btnopenlog") Me.btnopenlog.Name = "btnopenlog" Me.btnopenlog.UseVisualStyleBackColor = True ' 'TabPage3 ' - resources.ApplyResources(Me.TabPage3, "TabPage3") Me.TabPage3.Controls.Add(Me.Label8) Me.TabPage3.Controls.Add(Me.DataGridView1) Me.TabPage3.Controls.Add(Me.Button2) @@ -290,6 +289,7 @@ Partial Class frmConfig_Basic Me.TabPage3.Controls.Add(Me.btnSaveExclusionFiles) Me.TabPage3.Controls.Add(Me.btnstartstop2) Me.TabPage3.Controls.Add(Me.btnstartstop1) + resources.ApplyResources(Me.TabPage3, "TabPage3") Me.TabPage3.Name = "TabPage3" Me.TabPage3.UseVisualStyleBackColor = True ' @@ -300,9 +300,9 @@ Partial Class frmConfig_Basic ' 'DataGridView1 ' - resources.ApplyResources(Me.DataGridView1, "DataGridView1") DataGridViewCellStyle1.BackColor = System.Drawing.Color.Aqua Me.DataGridView1.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1 + resources.ApplyResources(Me.DataGridView1, "DataGridView1") Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.DataGridView1.Name = "DataGridView1" ' @@ -314,8 +314,8 @@ Partial Class frmConfig_Basic ' 'txtScanFolderWatch ' - resources.ApplyResources(Me.txtScanFolderWatch, "txtScanFolderWatch") Me.txtScanFolderWatch.BackColor = System.Drawing.Color.LemonChiffon + resources.ApplyResources(Me.txtScanFolderWatch, "txtScanFolderWatch") Me.txtScanFolderWatch.Name = "txtScanFolderWatch" ' 'Label7 @@ -343,8 +343,8 @@ Partial Class frmConfig_Basic ' 'txtFolderWatch ' - resources.ApplyResources(Me.txtFolderWatch, "txtFolderWatch") Me.txtFolderWatch.BackColor = System.Drawing.Color.Khaki + resources.ApplyResources(Me.txtFolderWatch, "txtFolderWatch") Me.txtFolderWatch.Name = "txtFolderWatch" ' 'Label6 @@ -354,29 +354,28 @@ Partial Class frmConfig_Basic ' 'btnSaveExclusionFiles ' - resources.ApplyResources(Me.btnSaveExclusionFiles, "btnSaveExclusionFiles") Me.btnSaveExclusionFiles.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG + resources.ApplyResources(Me.btnSaveExclusionFiles, "btnSaveExclusionFiles") Me.btnSaveExclusionFiles.Name = "btnSaveExclusionFiles" Me.btnSaveExclusionFiles.UseVisualStyleBackColor = True ' 'btnstartstop2 ' - resources.ApplyResources(Me.btnstartstop2, "btnstartstop2") Me.btnstartstop2.Image = Global.Global_Indexer.My.Resources.Resources.bell_go + resources.ApplyResources(Me.btnstartstop2, "btnstartstop2") Me.btnstartstop2.Name = "btnstartstop2" Me.btnstartstop2.UseVisualStyleBackColor = True ' 'btnstartstop1 ' - resources.ApplyResources(Me.btnstartstop1, "btnstartstop1") Me.btnstartstop1.Image = Global.Global_Indexer.My.Resources.Resources.bell_go + resources.ApplyResources(Me.btnstartstop1, "btnstartstop1") Me.btnstartstop1.Name = "btnstartstop1" Me.btnstartstop1.UseVisualStyleBackColor = True ' 'OpenFileDialog1 ' Me.OpenFileDialog1.FileName = "OpenFileDialog1" - resources.ApplyResources(Me.OpenFileDialog1, "OpenFileDialog1") ' 'frmConfig_Basic ' @@ -431,7 +430,7 @@ Partial Class frmConfig_Basic Friend WithEvents txtScanFolderWatch As System.Windows.Forms.TextBox Friend WithEvents Label7 As System.Windows.Forms.Label Friend WithEvents btnstartstop2 As System.Windows.Forms.Button - Friend WithEvents CheckBox3 As System.Windows.Forms.CheckBox + Friend WithEvents CheckBoxPreviewDocs As System.Windows.Forms.CheckBox Friend WithEvents DataGridView1 As System.Windows.Forms.DataGridView Friend WithEvents btnSaveExclusionFiles As System.Windows.Forms.Button Friend WithEvents Label8 As System.Windows.Forms.Label diff --git a/Global_Indexer/frmConfig_Basic.resx b/Global_Indexer/frmConfig_Basic.resx index d00736b..7371f3f 100644 --- a/Global_Indexer/frmConfig_Basic.resx +++ b/Global_Indexer/frmConfig_Basic.resx @@ -117,305 +117,263 @@ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - txtServer - - - English - - - - CenterScreen + + + True - - MiddleRight + + 255, 58 - - System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 170, 17 - - 392, 13 + + 47 - - 12 + + Windows-Authentifizierung - + + chkbxUserAut + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage1 - - - 3 + + 0 - - 11, 30 + + True - - System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 5, 115 - - 10 + + 150, 13 - - System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 46 - - Top, Left, Right + + Aktueller ConnectionString: - - 478, 22 + + Label5 - - 3 + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 8, 14 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8, 197 - - - 230, 30 - - - 8, 131 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage1 1 - - Überwachte Ordner - Folderwatch - - - 11, 56 - - - btnopenlog - - - Definieren Sie hier den Ordner welcher überwacht wird: - - - True - - - 2 - - - btnFW_Desktop - - - MiddleLeft - - - 1 - - - 298, 23 - - - TabPage2 + + 8, 78 244, 21 - + + 39 + + + cmbDatenbank + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 2 + + + True + + + 5, 62 + + + 67, 13 + + + 44 + + + Datenbank: + + + Label4 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 3 + + + True + + + 5, 14 + + + 74, 13 + + + 41 + + + Server-Name: + + + Label1 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 4 + + + True + + + 255, 14 + + + 84, 13 + + + 42 + + + Benutzername: + + + Label2 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 5 + + + True + + + 379, 14 + + + 56, 13 + + + 43 + + + Passwort: + + + Label3 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 6 + + + + Top, Left, Right + + + 8, 131 + + + 370, 22 + + + 45 + + + txtActualConnection + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 7 + + + 6, 30 + + + 246, 22 + + + 36 + + + txtServer + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage1 8 - - txtActualConnection + + 255, 30 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + 118, 22 - - 41 + + 37 - - 4, 4, 4, 4 - - - MiddleLeft - - - Passwort: - - - German - - - 6 - - - 4 - - - lblUniversalViewer - - - TabPage3 - - - 6 - - - 11, 87 - - - TabPage1 - - - 11 - - - TabPage2 - - - 96, 13 - - - True - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11, 226 - - - 94, 29 - - - 298, 23 - - - Datenbank-Verbindung - - - Grundeinstellungen für User - - - Log/Support Mail erzeugen - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 197, 185 - - - 0 - - - 4, 22 - - - TabPage2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - btnsetFW_Folder - - - 2 - - - 95, 13 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - True - - - 197, 140 - - - 5, 62 - - - 582, 280 - - - Aktuelle Sprache: - - - 6 - - - 3, 3, 3, 3 - - - 40 - - - 495, 30 - - - Überwachung starten + + txtUser System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - 3 + + TabPage1 - - 1 + + 9 - - MiddleLeft + + 382, 30 - - 3, 3, 3, 3 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Top, Bottom, Left - - - 49, 22 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 11 - - - Label4 - - - 180, 21 - - - 8, 126 - - - MiddleRight + + 64, 22 38 @@ -423,172 +381,857 @@ txtPasswort - - 8, 12 - - - Überwachung starten - - - 1 - - - TabPage3 - - - 7 - - - 11 - - - Verbindung zur Datenbank herstellen - - - 0 - - - 4, 22 - - - TabPage2 - - - 12 - - - MiddleRight - - - 4 - - - 590, 306 - - - TabPage3 - - - 47 - - - TabPage2 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - txtScanFolderWatch - - - 255, 75 - - - chkbxUserAut - - - TabPage3 - - - Button2 - - - 44 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage2 - - - True - - - 4 - - - 316, 168 - - - True - - - 6 - - - TabPage1 - - - TabPage2 - - - Button3 - - - TabPage2 - - - Label6 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0, 0 - - - TabPage1 - - - 11, 28 - - - MiddleLeft - - - 9 - - - 379, 14 - - - Sprache jetzt wechseln - - - TabPage3 - - - 224, 223 + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 TabPage1 - + + 10 + + + MiddleLeft + + + 255, 75 + + + 253, 25 + + + 40 + + + Verbindung zur Datenbank herstellen + + + MiddleRight + + + BtnConnect + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage1 + + + 11 + + + 4, 22 + + 3, 3, 3, 3 - + + 582, 280 + + + 0 + + + Datenbank-Verbindung + + + TabPage1 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabControl1 + + + 0 + + + True + + + 224, 223 + + + 153, 13 + + + 45 + + + Support Portal - Digital Data + + + LinkLabel1 + + + System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 0 + + + 197, 140 + + + 134, 23 + + + 44 + + + Sprache jetzt wechseln + + + Button3 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 1 + + + German + + + English + + + 11, 142 + + + 180, 21 + + + 43 + + + cmbLanguage + + + System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 2 + + + True + + + 8, 126 + + + 96, 13 + + + 42 + + + Aktuelle Sprache: + + + Label9 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 3 + + + True + + + 11, 56 + + + 220, 17 + + 7 - - Öffne Log-Verzeichnis + + Dokumente bei Indexierung anzeigen + + + CheckBoxPreviewDocs + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 4 + + + True + + + 242, 89 + + + 230, 30 + + + 6 + + + Meldungsfenster für erfolgreiche +Übertragung nach windream anzeigen? + + + CheckBox2 + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 5 + + + True + + + 11, 96 + + + 146, 17 + + + 3 + + + LogErrorsOnly (Ja/Nein) + + + chkLogErrorsOnly + + + System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 6 + + + 478, 26 + + + 30, 23 + + + 2 + + + ... + + + btnaddUniversalViewer + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 7 + + + 11, 28 + + + 461, 22 + + + 1 + + + txtuniversalViewer + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 8 + + + True + + + 8, 12 + + + 95, 13 + + + 0 + + + Universal Viewer: + + + lblUniversalViewer + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 9 + + + MiddleLeft + + + 11, 216 + + + 180, 26 + + + 41 + + + Log/Support Mail erzeugen + + + MiddleRight + + + btnLogMail + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 10 + + + MiddleLeft + + + 11, 185 + + + 180, 23 + + + 5 Öffne AppFolder User - + + MiddleRight + + + btnApplicationFolder + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + TabPage2 + + 11 + + + MiddleLeft + + + NoControl + + + 197, 185 + + + 180, 23 + + + 4 + + + Öffne Log-Verzeichnis + + + MiddleRight + + + btnopenlog + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage2 + + + 12 + + + 4, 22 + + + 3, 3, 3, 3 + + + 582, 280 + + + 1 + + + Diverse Einstellungen + + + TabPage2 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabControl1 + + + 1 + + + True + + + 8, 197 + + + 453, 26 + + + 13 + Definieren Sie hier Inhalte von Dateinamen welche von der Folderwatch-Überwachung ausgenommen werden sollen: + + Label8 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 0 + + + Top, Bottom, Left + + + 11, 226 + + + 192, 100 + + + 11 + + + DataGridView1 + + + System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 1 + + + 495, 140 + + + 49, 22 + + + 10 + + + ... + + + Button2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 2 + + + 11, 142 + + + 478, 22 + + + 8 + + + txtScanFolderWatch + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 3 + + + True + + + 8, 126 + + + 392, 13 + + + 7 + + + Definieren Sie hier den Ordner der für Scan2Folder verwendet werden soll: + + + Label7 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 4 + + + 495, 30 + + + 49, 22 + + + 6 + + + ... + + + btnsetFW_Folder + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 5 + + + 11, 87 + + + 298, 23 + + + 3 + + + Ordner 'SimpleIndexer' in Eigenen Dateien erzeugen + + + btnFW_OwnFiles + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 6 + + + 11, 58 + + + 298, 23 + + + 2 + + + Ordner 'SimpleIndexer' auf Desktop erzeugen + + + btnFW_Desktop + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 7 + + + 11, 30 + + + 478, 22 + + + 1 + + + txtFolderWatch + + + System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 8 + + + True + + + 8, 14 + + + 295, 13 + + + 0 + + + Definieren Sie hier den Ordner welcher überwacht wird: + + + Label6 + + + System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 9 + + + MiddleLeft + + + 209, 226 + + + 94, 29 + + + 12 + + + Speichern + + + MiddleRight + + + btnSaveExclusionFiles + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + 10 + + MiddleLeft + + + 316, 168 + + + 4, 4, 4, 4 + + + 173, 25 + + + 9 + + + Überwachung starten + + + MiddleRight + + + btnstartstop2 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 11 + + + MiddleLeft + + + 316, 57 + + + 4, 4, 4, 4 + + + 173, 25 + + + 5 + + + Überwachung starten + + + MiddleRight + + + btnstartstop1 + + + System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabPage3 + + + 12 + + + 4, 22 + + + 3, 3, 3, 3 + + + 582, 280 + + + 2 + + + Überwachte Ordner - Folderwatch + + + TabPage3 + + + System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + TabControl1 + + + 2 + + + Fill + + + 0, 0 + + + 590, 306 + + + 0 + + + TabControl1 + + + System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + $this + + + 0 + + + 17, 17 + + + True + + + 6, 13 + + + 590, 306 + + + Segoe UI, 8.25pt + AAABAAEAEBAAAAEACABoBQAAFgAAACgAAAAQAAAAIAAAAAEACAAAAAAAQAEAAAAAAAAAAAAAAAAAAAAA @@ -617,665 +1260,22 @@ ausgenommen werden sollen: AAAAAAAAgAEAAOADAADgDwAA8R8AAP//AAA= - - TabPage1 + + CenterScreen - - Label8 - - - MiddleLeft - - - 118, 22 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 0 - - - Diverse Einstellungen - - - 253, 25 - - - NoControl - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label9 - - - TabPage3 - - - btnstartstop1 - - - ... - - - 30, 23 - - - True - - - 7 - - - 170, 17 - - - 0 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabControl1 + + Grundeinstellungen für User OpenFileDialog1 - - 49, 22 - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - btnLogMail - - - 478, 26 - - - MiddleRight - - - 5 - - - TabPage1 - - - 146, 17 - - - CheckBox3 - - - CheckBox2 - - - 5 - - - 209, 226 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 42 - - - 7 - - - 64, 22 - - - 0 - - - 246, 22 - - - 180, 23 - - - 495, 140 - - - DataGridView1 - - - 45 - - - True - - - 84, 13 - - - txtuniversalViewer - - - 255, 14 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 8 - - - 1 - - - 316, 57 - - - TabControl1 - - - 370, 22 - - - 255, 30 - - - 11, 216 - - - 582, 280 - - - 11, 58 - - - MiddleLeft - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 9 - - - 36 - - - 5 - - - Support Portal - Digital Data - - - TabPage2 - - - Windows-Authentifizierung - - - 42 - - - 67, 13 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 12 - - - 1 - - - LogErrorsOnly (Ja/Nein) - - - 9 - - - 6, 30 - - - TabPage1 - - - 8, 126 - - - 45 - - - 2 - - - 5 - - - 173, 25 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ... - - - 5 - - - 2 - - - Datenbank: - - - 134, 23 - - - chkLogErrorsOnly - - - TabPage2 - - - 173, 25 - - - Dokumente bei Indexierung nicht anzeigen - - - 3 - - - Label3 + + System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 frmConfig_Basic - - btnaddUniversalViewer + + System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Definieren Sie hier den Ordner der für Scan2Folder verwendet werden soll: - - - Segoe UI, 8.25pt - - - True - - - 74, 13 - - - cmbDatenbank - - - True - - - 461, 22 - - - 11, 185 - - - TabPage3 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - LinkLabel1 - - - True - - - 4 - - - 6 - - - Universal Viewer: - - - $this - - - System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 582, 280 - - - btnstartstop2 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - 180, 23 - - - Server-Name: - - - 9 - - - 295, 13 - - - 5, 115 - - - True - - - TabPage3 - - - 478, 22 - - - Label7 - - - True - - - 10 - - - 11, 142 - - - 11 - - - 44 - - - Speichern - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 56, 13 - - - 0 - - - TabPage1 - - - txtUser - - - 8 - - - 249, 17 - - - 453, 26 - - - 43 - - - TabPage2 - - - 11, 96 - - - 43 - - - 6, 13 - - - 150, 13 - - - System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Fill - - - Benutzername: - - - 180, 26 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Label2 - - - 10 - - - 13 - - - 2 - - - 8, 78 - - - MiddleRight - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 39 - - - 255, 58 - - - btnSaveExclusionFiles - - - 0 - - - 8 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - TabPage3 - - - 0 - - - TabPage3 - - - True - - - 590, 306 - - - MiddleLeft - - - Label1 - - - System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 5, 14 - - - TabPage3 - - - TabPage3 - - - TabPage1 - - - System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - Meldungsfenster für erfolgreiche -Übertragung nach windream anzeigen? - - - 4, 22 - - - TabPage2 - - - Ordner 'SimpleIndexer' auf Desktop erzeugen - - - True - - - System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - ... - - - 382, 30 - - - 0 - - - 242, 89 - - - 2 - - - TabControl1 - - - txtFolderWatch - - - 37 - - - 11, 142 - - - btnFW_OwnFiles - - - Label5 - - - Ordner 'SimpleIndexer' in Eigenen Dateien erzeugen - - - TabPage1 - - - System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 46 - - - TabControl1 - - - TabPage2 - - - MiddleRight - - - btnApplicationFolder - - - 2 - - - cmbLanguage - - - TabPage3 - - - Aktueller ConnectionString: - - - 4, 4, 4, 4 - - - 192, 100 - - - 41 - - - BtnConnect - - - TabPage1 - - - 7 - - - True - - - 153, 13 - - - MiddleRight - - - 1 - - - True - - - 17, 17 - \ No newline at end of file diff --git a/Global_Indexer/frmConfig_Basic.vb b/Global_Indexer/frmConfig_Basic.vb index e34b24a..52556d9 100644 --- a/Global_Indexer/frmConfig_Basic.vb +++ b/Global_Indexer/frmConfig_Basic.vb @@ -277,10 +277,8 @@ Public Class frmConfig_Basic ClassDatabase.Execute_non_Query("DELETE FROM TBGI_FOLDERWATCH_USER WHERE USER_ID = " & USER_ID & " AND FOLDER_TYPE = '" & FOLDER_TYPE & "'", True) If FOLDER_TYPE = "SCAN" Then CURRENT_SCAN_FOLDERWATCH = "" - 'SaveConfigValue("FWSCAN_started", "False") CONFIG.Config.FolderWatchScanStarted = False CONFIG.Save() - FWSCAN_started = False Else FW_started = False 'SaveConfigValue("FW_started", "False") @@ -328,7 +326,7 @@ Public Class frmConfig_Basic If FW_started = True And FOLDER_TYPE = "DEFAULT" Then ClassFolderWatcher.Restart_FolderWatch() End If - If FWSCAN_started = True And FOLDER_TYPE = "SCAN" Then + If CONFIG.Config.FolderWatchScanStarted = True And FOLDER_TYPE = "SCAN" Then ClassFolderWatcher.Restart_FolderWatchSCAN() End If Catch ex As Exception @@ -461,6 +459,7 @@ Public Class frmConfig_Basic End Sub Private Sub CheckBox2_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox2.CheckedChanged + My.Settings.Save() End Sub @@ -480,8 +479,9 @@ Public Class frmConfig_Basic End If End Sub - Private Sub CheckBox3_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox3.CheckedChanged - My.Settings.Save() + Private Sub CheckBox3_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBoxPreviewDocs.CheckedChanged + CONFIG.Config.FilePreview = CheckBoxPreviewDocs.Checked + CONFIG.Save() End Sub Private Sub txtScanFolderWatch_TextChanged(sender As Object, e As EventArgs) Handles txtScanFolderWatch.TextChanged diff --git a/Global_Indexer/frmIndex.vb b/Global_Indexer/frmIndex.vb index 5ed7a23..9c5fd28 100644 --- a/Global_Indexer/frmIndex.vb +++ b/Global_Indexer/frmIndex.vb @@ -1997,10 +1997,12 @@ Public Class frmIndex End If txtIndexfilepath.Text = CURRENT_WORKFILE ClassWindowLocation.LoadFormLocationSize(Me) - If Preview = True Then + If CONFIG.Config.FilePreview = True Then + SplitContainer1.Panel2Collapsed = False PreviewFile() Me.tslblVorschau.Visible = True Else + SplitContainer1.Panel2Collapsed = True Me.tslblVorschau.Visible = False End If Load_String() diff --git a/Global_Indexer/frmStart.Designer.vb b/Global_Indexer/frmStart.Designer.vb index e7d2e96..8520f83 100644 --- a/Global_Indexer/frmStart.Designer.vb +++ b/Global_Indexer/frmStart.Designer.vb @@ -239,7 +239,6 @@ Partial Class frmStart Me.Controls.Add(Me.LabelControl1) Me.Controls.Add(Me.StatusStrip1) Me.Controls.Add(Me.MenuStrip1) - Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.MaximizeBox = False Me.Name = "frmStart" Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide diff --git a/Global_Indexer/frmStart.resx b/Global_Indexer/frmStart.resx index d6fa59e..523174f 100644 --- a/Global_Indexer/frmStart.resx +++ b/Global_Indexer/frmStart.resx @@ -121,17 +121,11 @@ 17, 17 - - 108, 20 - - - Konfiguration - 0, 0 - 337, 24 + 294, 24 @@ -152,6 +146,12 @@ 3 + + 108, 20 + + + Konfiguration + 220, 22 @@ -200,20 +200,11 @@ 132, 17 - - 133, 17 - - - FolderWatch ist aktiv - - - False - - 0, 151 + 0, 128 - 337, 22 + 294, 22 6 @@ -233,6 +224,15 @@ 2 + + 133, 17 + + + FolderWatch ist aktiv + + + False + 1072, 17 @@ -539,7 +539,7 @@ Tahoma, 12pt - 34, 42 + 13, 37 269, 38 @@ -601,7 +601,7 @@ auf dieses Fenster oder... NoControl - 30, 88 + 13, 81 269, 37 @@ -634,7 +634,7 @@ auf dieses Fenster oder... 6, 13 - 337, 173 + 294, 150 Segoe UI, 8.25pt @@ -1531,9 +1531,6 @@ auf dieses Fenster oder... /////////////wA///////////////////8f//////////////////// - - NoControl - Global Indexer diff --git a/Global_Indexer/frmStart.vb b/Global_Indexer/frmStart.vb index 1ee17a2..2fae317 100644 --- a/Global_Indexer/frmStart.vb +++ b/Global_Indexer/frmStart.vb @@ -405,18 +405,19 @@ Public Class frmStart End If If CURRENT_SCAN_FOLDERWATCH = String.Empty Then - FWSCAN_started = False + CONFIG.Config.FolderWatchScanStarted = False + CONFIG.Save() End If If CURRENT_FOLDERWATCH <> "" Or CURRENT_SCAN_FOLDERWATCH <> "" Then - If FW_ISSTARTED = True Then + If FWFunction_STARTED = True Then tslblFW.Visible = True Else tslblFW.Visible = False End If Try - If FWSCAN_started = True Then + If CONFIG.Config.FolderWatchScanStarted = True Then If LogErrorsOnly = False Then ClassLogger.Add(">> FWSCAN started - Checking file:" & CURRENT_SCAN_FOLDERWATCH, False) Dim fileEntries As String() = Directory.GetFiles(CURRENT_SCAN_FOLDERWATCH) ' Process the list of files found in the directory. @@ -626,7 +627,7 @@ Public Class frmStart End If Else Try - If FW_started = True Or FWSCAN_started = True Then + If FW_started = True Or CONFIG.Config.FolderWatchScanStarted = True Then 'Prüfen ob alle Files abgearbeitet wurden Dim sql = "SELECT * FROM TBGI_FILES_USER WHERE WORKED = 0 AND HANDLE_TYPE like '%|FW%' AND UPPER(USER@WORK) = UPPER('" & Environment.UserName & "')" DTACTUAL_FILES = ClassDatabase.Return_Datatable(sql, True) @@ -667,7 +668,12 @@ Public Class frmStart tslblFW.Visible = False End If Catch ex As Exception - MsgBox("Error in Work FolderWatch-File:" & vbNewLine & ex.Message, MsgBoxStyle.Critical) + If ex.Message.Contains("Sammlung wurde geändert") Or ex.Message.Contains("Enumeration") Then + + Else + MsgBox("Error in Work FolderWatch-File:" & vbNewLine & ex.Message, MsgBoxStyle.Critical) + End If + End Try End If @@ -707,12 +713,18 @@ Public Class frmStart Me.TopMost = True End If loaded = True - Opacity = 0.65 + Opacity = 0.6 ClassHelper.Refresh_RegexTable() Start_Folderwatch() ClassWindowLocation.LoadFormLocationSize(Me) + Try + Me.LabelControl1.Location = New Point(13, 37) + Catch ex As Exception + Me.btnChoosefiles.Location = New Point(269, 37) + End Try + End Sub Private Sub HistoryIndexierteDateienToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles HistoryIndexierteDateienToolStripMenuItem.Click frmHistory.ShowDialog()