diff --git a/Global_Indexer/App.config b/Global_Indexer/App.config
index 114dba2..8a2374b 100644
--- a/Global_Indexer/App.config
+++ b/Global_Indexer/App.config
@@ -1,12 +1,6 @@
-
-
-
-
-
-
-
-
-
- 526
-
-
- True
-
-
- True
-
-
- False
-
-
- False
-
-
- False
-
-
-
-
-
- myFilename.pdf
-
-
-
-
-
-
- DigitalData\windream_CLIENT_WMCC_Neustart
-
-
-
diff --git a/Global_Indexer/ClassConfig.vb b/Global_Indexer/ClassConfig.vb
index a40be8e..4295520 100644
--- a/Global_Indexer/ClassConfig.vb
+++ b/Global_Indexer/ClassConfig.vb
@@ -8,10 +8,14 @@ Public Class ClassConfig
Public Property FolderWatchStarted As Boolean = False
Public Property FolderWatchScanStarted As Boolean = False
- ' PDF Viewer Settings
+ ' Index Form Settings
Public Property FilePreview As Boolean = True
+ Public Property SplitterDistanceViewer As Integer = 500
+ Public Property ProfilePreselection As Boolean = False
+ Public Property ShowIndexResult As Boolean = True
+ Public Property DeleteOriginalFile As Boolean = False
' Misc Settings
- Public Property DeleteOriginalFile As Boolean = False
Public Property LogErrorsOnly As Boolean = True
+ Public Property WindreamSearchMaximized As Boolean = False
End Class
diff --git a/Global_Indexer/ClassEmail.vb b/Global_Indexer/ClassEmail.vb
index 5036b8e..28618e1 100644
--- a/Global_Indexer/ClassEmail.vb
+++ b/Global_Indexer/ClassEmail.vb
@@ -39,7 +39,7 @@ Public Class ClassEmail
'Einen SMTP Client erzeugen und Anmeldungsinformationen hinterlegen
Dim emailClient As New SmtpClient(emailsmtp)
'Email mit Authentifizierung
- Dim SMTPUserInfo As New System.Net.NetworkCredential(emailuser, emailpw) ', My.Settings.vDomain)
+ Dim SMTPUserInfo As New System.Net.NetworkCredential(emailuser, emailpw)
emailClient.UseDefaultCredentials = False
emailClient.Credentials = SMTPUserInfo
emailClient.Port = 25
diff --git a/Global_Indexer/ClassHotkey_Windream.vb b/Global_Indexer/ClassHotkey_Windream.vb
index a6bdf01..ff31166 100644
--- a/Global_Indexer/ClassHotkey_Windream.vb
+++ b/Global_Indexer/ClassHotkey_Windream.vb
@@ -270,7 +270,8 @@ Public Class ClassHotkey_Windream
Dim myhWnd As IntPtr
Dim p As New Process()
p.StartInfo.FileName = windream_temp_search
- If My.Settings.WDSearch_maximized = True Then
+
+ If CONFIG.Config.WindreamSearchMaximized Then
p.StartInfo.WindowStyle = ProcessWindowStyle.Maximized
Else
p.StartInfo.WindowStyle = ProcessWindowStyle.Normal
@@ -300,7 +301,7 @@ Public Class ClassHotkey_Windream
Console.WriteLine(p.Id.ToString() + " " + p.ProcessName)
If p.ProcessName.Contains("indream.Find") Then
AppActivate(p.Id)
- If My.Settings.WDSearch_maximized = False Then
+ If CONFIG.Config.WindreamSearchMaximized = False Then
Dim rctMain As RECT
GetWindowRect(p.MainWindowHandle, rctMain)
If rctMain.Left = 0 Or rctMain.Right = 0 Then
diff --git a/Global_Indexer/My Project/Settings.Designer.vb b/Global_Indexer/My Project/Settings.Designer.vb
index 013816d..b4c1009 100644
--- a/Global_Indexer/My Project/Settings.Designer.vb
+++ b/Global_Indexer/My Project/Settings.Designer.vb
@@ -64,116 +64,6 @@ Namespace My
Return CType(Me("DD_ECMConnectionString"),String)
End Get
End Property
-
- _
- Public Property SplitterDistance_Viewer() As Integer
- Get
- Return CType(Me("SplitterDistance_Viewer"),Integer)
- End Get
- Set
- Me("SplitterDistance_Viewer") = value
- End Set
- End Property
-
- _
- Public Property WDSearch_maximized() As Boolean
- Get
- Return CType(Me("WDSearch_maximized"),Boolean)
- End Get
- Set
- Me("WDSearch_maximized") = value
- End Set
- End Property
-
- _
- Public Property Show_IndexResult() As Boolean
- Get
- Return CType(Me("Show_IndexResult"),Boolean)
- End Get
- Set
- Me("Show_IndexResult") = value
- End Set
- End Property
-
- _
- Public Property DoNot_Show_Documents() As Boolean
- Get
- Return CType(Me("DoNot_Show_Documents"),Boolean)
- End Get
- Set
- Me("DoNot_Show_Documents") = value
- End Set
- End Property
-
- _
- Public ReadOnly Property Test() As String
- Get
- Return CType(Me("Test"),String)
- End Get
- End Property
-
- _
- Public Property AppTerminate() As Boolean
- Get
- Return CType(Me("AppTerminate"),Boolean)
- End Get
- Set
- Me("AppTerminate") = value
- End Set
- End Property
-
- _
- Public Property DA_Vorauswahlaktiv() As Boolean
- Get
- Return CType(Me("DA_Vorauswahlaktiv"),Boolean)
- End Get
- Set
- Me("DA_Vorauswahlaktiv") = value
- End Set
- End Property
-
- _
- Public Property REGEX_Replace() As String
- Get
- Return CType(Me("REGEX_Replace"),String)
- End Get
- Set
- Me("REGEX_Replace") = value
- End Set
- End Property
-
- _
- Public Property FilenameTest() As String
- Get
- Return CType(Me("FilenameTest"),String)
- End Get
- Set
- Me("FilenameTest") = value
- End Set
- End Property
End Class
End Namespace
diff --git a/Global_Indexer/My Project/Settings.settings b/Global_Indexer/My Project/Settings.settings
index b5e5e86..f591f97 100644
--- a/Global_Indexer/My Project/Settings.settings
+++ b/Global_Indexer/My Project/Settings.settings
@@ -10,32 +10,5 @@
</SerializableConnectionString>
Data Source=SDD-VMP04-SQL17\DD_DEVELOP01;Initial Catalog=DD_ECM_TEST;Persist Security Info=True;User ID=sa;Password=dd
-
- 526
-
-
- True
-
-
- True
-
-
- False
-
-
- DigitalData\windream_CLIENT_WMCC_Neustart
-
-
- False
-
-
- False
-
-
-
-
-
- myFilename.pdf
-
\ No newline at end of file
diff --git a/Global_Indexer/frmAdministration.Designer.vb b/Global_Indexer/frmAdministration.Designer.vb
index db12824..b8fc917 100644
--- a/Global_Indexer/frmAdministration.Designer.vb
+++ b/Global_Indexer/frmAdministration.Designer.vb
@@ -200,13 +200,14 @@ Partial Class frmAdministration
Me.COMMENTTextBox2 = New System.Windows.Forms.TextBox()
Me.GUIDTextBox4 = New System.Windows.Forms.TextBox()
Me.XtraTabPageAutoIndex = New DevExpress.XtraTab.XtraTabPage()
+ Me.Label6 = New System.Windows.Forms.Label()
+ Me.ListBoxControl4 = New DevExpress.XtraEditors.ListBoxControl()
Me.btnAddWindowsVariable = New System.Windows.Forms.Button()
Me.lblWindowParameter = New System.Windows.Forms.Label()
Me.lbFileparameter = New System.Windows.Forms.ListBox()
- Me.TBDD_INDEX_AUTOMBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.lblValue = New System.Windows.Forms.Label()
Me.INDEXNAME_AutoIndexCMB = New System.Windows.Forms.ComboBox()
- Me.Label6 = New System.Windows.Forms.Label()
+ Me.TBDD_INDEX_AUTOMBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.btnSQLViewAuto = New System.Windows.Forms.Button()
Me.SQL_ACTIVECheckBox = New System.Windows.Forms.CheckBox()
Me.GUIDAUTO_INDEXTextbox = New System.Windows.Forms.TextBox()
@@ -253,7 +254,6 @@ Partial Class frmAdministration
Me.ERSTELLTWANNTextBox = New System.Windows.Forms.TextBox()
Me.Label4 = New System.Windows.Forms.Label()
Me.Label5 = New System.Windows.Forms.Label()
- Me.Label2 = New System.Windows.Forms.Label()
Me.Label24 = New System.Windows.Forms.Label()
Me.Label23 = New System.Windows.Forms.Label()
Me.Label22 = New System.Windows.Forms.Label()
@@ -265,7 +265,6 @@ Partial Class frmAdministration
Me.Label1 = New System.Windows.Forms.Label()
Me.lblObjekttyp = New System.Windows.Forms.Label()
Me.ERSTELLTWERTextBox = New System.Windows.Forms.TextBox()
- Me.ComboBox1 = New System.Windows.Forms.ComboBox()
Me.TBDD_EINGANGSARTENBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.AKTIVCheckBox = New System.Windows.Forms.CheckBox()
Me.btnNamenkonvention = New System.Windows.Forms.Button()
@@ -318,7 +317,6 @@ Partial Class frmAdministration
Me.TBGI_REGEX_DOCTYPETableAdapter = New Global_Indexer.MyDatasetTableAdapters.TBGI_REGEX_DOCTYPETableAdapter()
Me.RibbonPage2 = New DevExpress.XtraBars.Ribbon.RibbonPage()
Me.RibbonPage8 = New DevExpress.XtraBars.Ribbon.RibbonPage()
- Me.ListBoxControl4 = New DevExpress.XtraEditors.ListBoxControl()
GUIDLabel = New System.Windows.Forms.Label()
CHANGED_WHENLabel = New System.Windows.Forms.Label()
CHANGED_WHOLabel = New System.Windows.Forms.Label()
@@ -404,6 +402,7 @@ Partial Class frmAdministration
CType(Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBWHDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
Me.XtraTabPageAutoIndex.SuspendLayout()
+ CType(Me.ListBoxControl4, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBDD_INDEX_AUTOMBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
Me.XtraTabPageFolderPath.SuspendLayout()
Me.GroupBox4.SuspendLayout()
@@ -428,7 +427,6 @@ Partial Class frmAdministration
CType(Me.TBDD_DOKART_MODULEBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.VWGI_USER_GROUPS_RELATIONBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBGI_CONFIGURATIONBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
- CType(Me.ListBoxControl4, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'GUIDLabel
@@ -968,7 +966,6 @@ Partial Class frmAdministration
Me.SplitContainerControl3.Panel2.Controls.Add(Me.ERSTELLTWANNTextBox)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.Label4)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.Label5)
- Me.SplitContainerControl3.Panel2.Controls.Add(Me.Label2)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.Label24)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.Label23)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.Label22)
@@ -980,7 +977,6 @@ Partial Class frmAdministration
Me.SplitContainerControl3.Panel2.Controls.Add(Me.Label1)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.lblObjekttyp)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.ERSTELLTWERTextBox)
- Me.SplitContainerControl3.Panel2.Controls.Add(Me.ComboBox1)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.AKTIVCheckBox)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.btnNamenkonvention)
Me.SplitContainerControl3.Panel2.Controls.Add(Me.BESCHREIBUNGTextBox)
@@ -1565,6 +1561,18 @@ Partial Class frmAdministration
Me.XtraTabPageAutoIndex.Controls.Add(Me.INDEXNAME_AutoIndexTXT)
Me.XtraTabPageAutoIndex.Name = "XtraTabPageAutoIndex"
'
+ 'Label6
+ '
+ resources.ApplyResources(Me.Label6, "Label6")
+ Me.Label6.Name = "Label6"
+ '
+ 'ListBoxControl4
+ '
+ Me.ListBoxControl4.AppearanceSelected.BackColor = System.Drawing.Color.Khaki
+ Me.ListBoxControl4.AppearanceSelected.Options.UseBackColor = True
+ resources.ApplyResources(Me.ListBoxControl4, "ListBoxControl4")
+ Me.ListBoxControl4.Name = "ListBoxControl4"
+ '
'btnAddWindowsVariable
'
Me.btnAddWindowsVariable.Image = Global.Global_Indexer.My.Resources.Resources.arrow_previous_16xLG
@@ -1584,11 +1592,6 @@ Partial Class frmAdministration
Me.lbFileparameter.Items.AddRange(New Object() {resources.GetString("lbFileparameter.Items"), resources.GetString("lbFileparameter.Items1"), resources.GetString("lbFileparameter.Items2"), resources.GetString("lbFileparameter.Items3"), resources.GetString("lbFileparameter.Items4"), resources.GetString("lbFileparameter.Items5"), resources.GetString("lbFileparameter.Items6"), resources.GetString("lbFileparameter.Items7")})
Me.lbFileparameter.Name = "lbFileparameter"
'
- 'TBDD_INDEX_AUTOMBindingSource
- '
- Me.TBDD_INDEX_AUTOMBindingSource.DataMember = "TBDD_INDEX_AUTOM"
- Me.TBDD_INDEX_AUTOMBindingSource.DataSource = Me.MyDataset
- '
'lblValue
'
resources.ApplyResources(Me.lblValue, "lblValue")
@@ -1601,10 +1604,10 @@ Partial Class frmAdministration
Me.INDEXNAME_AutoIndexCMB.FormattingEnabled = True
Me.INDEXNAME_AutoIndexCMB.Name = "INDEXNAME_AutoIndexCMB"
'
- 'Label6
+ 'TBDD_INDEX_AUTOMBindingSource
'
- resources.ApplyResources(Me.Label6, "Label6")
- Me.Label6.Name = "Label6"
+ Me.TBDD_INDEX_AUTOMBindingSource.DataMember = "TBDD_INDEX_AUTOM"
+ Me.TBDD_INDEX_AUTOMBindingSource.DataSource = Me.MyDataset
'
'btnSQLViewAuto
'
@@ -1836,10 +1839,8 @@ Partial Class frmAdministration
'
'TextBox1
'
- Me.TextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Global.Global_Indexer.My.MySettings.Default, "FilenameTest", True, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged))
resources.ApplyResources(Me.TextBox1, "TextBox1")
Me.TextBox1.Name = "TextBox1"
- Me.TextBox1.Text = Global.Global_Indexer.My.MySettings.Default.FilenameTest
'
'Label27
'
@@ -1986,11 +1987,6 @@ Partial Class frmAdministration
resources.ApplyResources(Me.Label5, "Label5")
Me.Label5.Name = "Label5"
'
- 'Label2
- '
- resources.ApplyResources(Me.Label2, "Label2")
- Me.Label2.Name = "Label2"
- '
'Label24
'
resources.ApplyResources(Me.Label24, "Label24")
@@ -2048,16 +2044,6 @@ Partial Class frmAdministration
Me.ERSTELLTWERTextBox.Name = "ERSTELLTWERTextBox"
Me.ERSTELLTWERTextBox.ReadOnly = True
'
- 'ComboBox1
- '
- Me.ComboBox1.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBDD_DOKUMENTARTBindingSource, "EINGANGSART_ID", True))
- Me.ComboBox1.DataSource = Me.TBDD_EINGANGSARTENBindingSource
- Me.ComboBox1.DisplayMember = "BEZEICHNUNG"
- Me.ComboBox1.FormattingEnabled = True
- resources.ApplyResources(Me.ComboBox1, "ComboBox1")
- Me.ComboBox1.Name = "ComboBox1"
- Me.ComboBox1.ValueMember = "GUID"
- '
'TBDD_EINGANGSARTENBindingSource
'
Me.TBDD_EINGANGSARTENBindingSource.DataMember = "TBDD_EINGANGSARTEN"
@@ -2521,13 +2507,6 @@ Partial Class frmAdministration
Me.RibbonPage8.Name = "RibbonPage8"
resources.ApplyResources(Me.RibbonPage8, "RibbonPage8")
'
- 'ListBoxControl4
- '
- Me.ListBoxControl4.AppearanceSelected.BackColor = System.Drawing.Color.Khaki
- Me.ListBoxControl4.AppearanceSelected.Options.UseBackColor = True
- resources.ApplyResources(Me.ListBoxControl4, "ListBoxControl4")
- Me.ListBoxControl4.Name = "ListBoxControl4"
- '
'frmAdministration
'
Me.Appearance.Options.UseFont = True
@@ -2571,6 +2550,7 @@ Partial Class frmAdministration
CType(Me.TBWHDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabPageAutoIndex.ResumeLayout(False)
Me.XtraTabPageAutoIndex.PerformLayout()
+ CType(Me.ListBoxControl4, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBDD_INDEX_AUTOMBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabPageFolderPath.ResumeLayout(False)
Me.GroupBox4.ResumeLayout(False)
@@ -2600,7 +2580,6 @@ Partial Class frmAdministration
CType(Me.TBDD_DOKART_MODULEBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.VWGI_USER_GROUPS_RELATIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBGI_CONFIGURATIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
- CType(Me.ListBoxControl4, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
@@ -2632,7 +2611,6 @@ Partial Class frmAdministration
Friend WithEvents TBDD_DOKART_MODULETableAdapter As Global_Indexer.MyDatasetTableAdapters.TBDD_DOKART_MODULETableAdapter
Friend WithEvents TBDD_MODULESBindingSource As System.Windows.Forms.BindingSource
Friend WithEvents TBDD_MODULESTableAdapter As Global_Indexer.MyDatasetTableAdapters.TBDD_MODULESTableAdapter
- Friend WithEvents ComboBox1 As System.Windows.Forms.ComboBox
Friend WithEvents XtraTabControl2 As DevExpress.XtraTab.XtraTabControl
Friend WithEvents XtraTabPageManualIndex As DevExpress.XtraTab.XtraTabPage
Friend WithEvents XtraTabPageAutoIndex As DevExpress.XtraTab.XtraTabPage
@@ -2793,7 +2771,6 @@ Partial Class frmAdministration
Friend WithEvents SplitContainerControl3 As DevExpress.XtraEditors.SplitContainerControl
Friend WithEvents Label4 As Label
Friend WithEvents Label5 As Label
- Friend WithEvents Label2 As Label
Friend WithEvents Label24 As Label
Friend WithEvents Label23 As Label
Friend WithEvents Label22 As Label
diff --git a/Global_Indexer/frmAdministration.resx b/Global_Indexer/frmAdministration.resx
index 9182ef1..733324f 100644
--- a/Global_Indexer/frmAdministration.resx
+++ b/Global_Indexer/frmAdministration.resx
@@ -811,13 +811,13 @@
Start
- 1373, 158
+ 1376, 158
- 0, 738
+ 0, 772
- 1373, 24
+ 1376, 24
RibbonStatusBar1
@@ -1215,7 +1215,7 @@
277
- 250, 525
+ 250, 559
93
@@ -1278,7 +1278,7 @@
Tahoma, 8.25pt, style=Bold
- 720, 62
+ 597, 36
127, 13
@@ -1311,7 +1311,7 @@
Question
- 723, 78
+ 600, 53
167, 21
@@ -1335,7 +1335,7 @@
True
- 601, 211
+ 600, 233
72, 13
@@ -1368,41 +1368,26 @@
Bottom
- 0, 253
+ 0, 283
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
True
+
+ 17, 95
+
+
+ Left
+
+
+ 0, 0
+
+
+ 150, 281
+
+
+ 95
+
ListBoxControl3
@@ -1415,6 +1400,21 @@
0
+
+ NoControl
+
+
+ 751, 133
+
+
+ 167, 24
+
+
+ 94
+
+
+ Doppelte Einträge verhindern
+
VKT_PREVENT_MULTIPLE_VALUESCheckbox
@@ -1427,6 +1427,18 @@
1
+
+ 473, 133
+
+
+ 128, 24
+
+
+ 94
+
+
+ Neueingabe erlauben
+
VKT_ADD_ITEMCheckbox
@@ -1439,6 +1451,18 @@
2
+
+ 627, 133
+
+
+ 115, 24
+
+
+ 93
+
+
+ Mehrfachauswahl
+
MULTISELECTCheckBox
@@ -1451,6 +1475,18 @@
3
+
+ 328, 218
+
+
+ 152, 41
+
+
+ 92
+
+
+ Letzte erfolgreiche Eingabe speichern
+
SAVE_VALUECheckBox
@@ -1463,6 +1499,21 @@
4
+
+ True
+
+
+ 588, 29
+
+
+ 89, 13
+
+
+ 91
+
+
+ windream-Index:
+
lblWDINDEX
@@ -1475,6 +1526,22 @@
5
+
+ False
+
+
+ 162, 218
+
+
+ 180, 41
+
+
+ 90
+
+
+ Optional/Nur für Benennung
+der Datei
+
OPTIONALCheckBox
@@ -1487,6 +1554,30 @@
6
+
+ False
+
+
+ MiddleLeft
+
+
+ 751, 162
+
+
+ 136, 23
+
+
+ 80
+
+
+ Show SQL Config
+
+
+ MiddleRight
+
+
+ False
+
btnSQLView
@@ -1499,6 +1590,27 @@
7
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 921, 160
+
+
+ 90, 15
+
+
+ 25
+
+
+ Geändert wann:
+
CHANGED_WHENLabel
@@ -1511,6 +1623,18 @@
8
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 923, 178
+
+
+ 156, 23
+
+
+ 26
+
CHANGED_WHENTextBox
@@ -1523,6 +1647,27 @@
9
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 920, 117
+
+
+ 80, 15
+
+
+ 23
+
+
+ Geändert wer:
+
CHANGED_WHOLabel
@@ -1535,6 +1680,18 @@
10
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 923, 134
+
+
+ 156, 23
+
+
+ 24
+
CHANGED_WHOTextBox
@@ -1547,6 +1704,27 @@
11
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 921, 73
+
+
+ 77, 15
+
+
+ 21
+
+
+ Erstellt wann:
+
ADDED_WHENLabel
@@ -1559,6 +1737,18 @@
12
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 91
+
+
+ 155, 23
+
+
+ 22
+
ADDED_WHENTextBox
@@ -1571,6 +1761,27 @@
13
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 921, 28
+
+
+ 67, 15
+
+
+ 19
+
+
+ Erstellt wer:
+
ADDED_WHOLabel
@@ -1583,6 +1794,18 @@
14
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 46
+
+
+ 155, 23
+
+
+ 20
+
ADDED_WHOTextBox
@@ -1595,6 +1818,21 @@
15
+
+ False
+
+
+ 162, 3
+
+
+ 61, 24
+
+
+ 19
+
+
+ Aktiv
+
ACTIVECheckBox
@@ -1607,6 +1845,24 @@
16
+
+ False
+
+
+ True
+
+
+ 733, 31
+
+
+ 68, 13
+
+
+ 16
+
+
+ Reihenfolge:
+
SEQUENCELabel
@@ -1619,6 +1875,18 @@
17
+
+ False
+
+
+ 736, 47
+
+
+ 70, 21
+
+
+ 17
+
SEQUENCETextBox
@@ -1631,6 +1899,24 @@
18
+
+ False
+
+
+ True
+
+
+ 159, 162
+
+
+ 74, 13
+
+
+ 12
+
+
+ Default-Wert:
+
DEFAULT_VALUELabel
@@ -1643,6 +1929,18 @@
19
+
+ False
+
+
+ 162, 180
+
+
+ 318, 21
+
+
+ 13
+
DEFAULT_VALUETextBox
@@ -1655,6 +1953,21 @@
20
+
+ False
+
+
+ 326, 133
+
+
+ 141, 24
+
+
+ 12
+
+
+ Vorschlagsliste per SQL
+
SUGGESTIONCheckBox
@@ -1667,6 +1980,24 @@
21
+
+ False
+
+
+ True
+
+
+ 159, 118
+
+
+ 56, 13
+
+
+ 9
+
+
+ Datentyp:
+
DATATYPELabel
@@ -1679,6 +2010,30 @@
22
+
+ False
+
+
+ BOOLEAN
+
+
+ DATE
+
+
+ INTEGER
+
+
+ VARCHAR
+
+
+ 162, 136
+
+
+ 145, 21
+
+
+ 10
+
DATATYPEComboBox
@@ -1691,6 +2046,24 @@
23
+
+ False
+
+
+ True
+
+
+ 159, 74
+
+
+ 47, 13
+
+
+ 7
+
+
+ Hinweis:
+
COMMENTLabel
@@ -1703,6 +2076,18 @@
24
+
+ False
+
+
+ 162, 92
+
+
+ 509, 21
+
+
+ 8
+
COMMENTTextBox
@@ -1715,6 +2100,18 @@
25
+
+ False
+
+
+ 499, 47
+
+
+ 231, 21
+
+
+ 6
+
WD_INDEXComboBox
@@ -1727,6 +2124,24 @@
26
+
+ False
+
+
+ True
+
+
+ 218, 31
+
+
+ 71, 13
+
+
+ 3
+
+
+ Bezeichnung:
+
NAMELabel
@@ -1739,6 +2154,21 @@
27
+
+ False
+
+
+ Tahoma, 8.25pt
+
+
+ 221, 47
+
+
+ 272, 21
+
+
+ 4
+
NAMETextBox
@@ -1751,6 +2181,27 @@
28
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 159, 30
+
+
+ 22, 15
+
+
+ 0
+
+
+ ID:
+
GUIDLabel1
@@ -1763,6 +2214,18 @@
29
+
+ Tahoma, 8.25pt
+
+
+ 162, 47
+
+
+ 53, 21
+
+
+ 1
+
GUIDTextBox1
@@ -1776,7 +2239,7 @@
30
- 1109, 277
+ 1112, 281
manuelle Indexe
@@ -1794,44 +2257,29 @@
0
- 1111, 302
+ 1114, 306
86
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
True
+
+ 511, 173
+
+
+ Left
+
+
+ 0, 0
+
+
+ 150, 245
+
+
+ 82
+
ListBoxControl2
@@ -1844,6 +2292,24 @@
0
+
+ False
+
+
+ True
+
+
+ 697, 71
+
+
+ 113, 13
+
+
+ 80
+
+
+ Anwendungsvariante:
+
VARIANTLabel
@@ -1856,6 +2322,24 @@
1
+
+ False
+
+
+ ONLY FILE/FOLDER
+
+
+ FILE AND INDEX
+
+
+ 700, 89
+
+
+ 202, 21
+
+
+ 81
+
VARIANTComboBox
@@ -1868,6 +2352,21 @@
2
+
+ 1187, 173
+
+
+ False
+
+
+ 212, 43
+
+
+ 180, 21
+
+
+ 34
+
ComboBox2
@@ -1880,6 +2379,21 @@
3
+
+ True
+
+
+ 353, 156
+
+
+ 13, 13
+
+
+ 33
+
+
+ v
+
Function2Label
@@ -1892,6 +2406,21 @@
4
+
+ True
+
+
+ 257, 156
+
+
+ 13, 13
+
+
+ 32
+
+
+ v
+
Function1Label
@@ -1904,6 +2433,21 @@
5
+
+ True
+
+
+ 522, 71
+
+
+ 38, 13
+
+
+ 31
+
+
+ Label4
+
Text3Label
@@ -1916,6 +2460,21 @@
6
+
+ True
+
+
+ 325, 71
+
+
+ 38, 13
+
+
+ 30
+
+
+ Label4
+
Text2Label
@@ -1928,6 +2487,21 @@
7
+
+ True
+
+
+ 154, 71
+
+
+ 38, 13
+
+
+ 29
+
+
+ Label4
+
Text1Label
@@ -1940,6 +2514,27 @@
8
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 921, 167
+
+
+ 90, 15
+
+
+ 27
+
+
+ Geändert wann:
+
CHANGED_WHENLabel4
@@ -1952,6 +2547,18 @@
9
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 183
+
+
+ 155, 23
+
+
+ 28
+
CHANGED_WHENTextBox4
@@ -1964,6 +2571,27 @@
10
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 921, 123
+
+
+ 80, 15
+
+
+ 25
+
+
+ Geändert wer:
+
CHANGED_WHOLabel4
@@ -1976,6 +2604,18 @@
11
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 139
+
+
+ 155, 23
+
+
+ 26
+
CHANGED_WHOTextBox4
@@ -1988,6 +2628,27 @@
12
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 921, 81
+
+
+ 77, 15
+
+
+ 23
+
+
+ Erstellt wann:
+
ADDED_WHENLabel4
@@ -2000,6 +2661,18 @@
13
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 97
+
+
+ 155, 23
+
+
+ 24
+
ADDED_WHENTextBox4
@@ -2012,6 +2685,27 @@
14
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 921, 36
+
+
+ 67, 15
+
+
+ 21
+
+
+ Erstellt wer:
+
ADDED_WHOLabel4
@@ -2024,6 +2718,18 @@
15
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 52
+
+
+ 155, 23
+
+
+ 22
+
ADDED_WHOTextBox4
@@ -2036,6 +2742,24 @@
16
+
+ False
+
+
+ True
+
+
+ 154, 157
+
+
+ 68, 13
+
+
+ 19
+
+
+ Reihenfolge:
+
SEQUENCELabel1
@@ -2048,6 +2772,18 @@
17
+
+ False
+
+
+ 157, 175
+
+
+ 78, 21
+
+
+ 20
+
SEQUENCETextBox1
@@ -2060,6 +2796,18 @@
18
+
+ False
+
+
+ 525, 89
+
+
+ 169, 21
+
+
+ 18
+
TEXT3TextBox
@@ -2072,6 +2820,18 @@
19
+
+ False
+
+
+ 328, 89
+
+
+ 191, 21
+
+
+ 16
+
TEXT2TextBox
@@ -2084,6 +2844,18 @@
20
+
+ False
+
+
+ 157, 89
+
+
+ 165, 21
+
+
+ 14
+
TEXT1TextBox
@@ -2096,6 +2868,18 @@
21
+
+ False
+
+
+ 352, 174
+
+
+ 70, 21
+
+
+ 12
+
FUNCTION2TextBox
@@ -2108,6 +2892,18 @@
22
+
+ False
+
+
+ 260, 174
+
+
+ 70, 21
+
+
+ 10
+
FUNCTION1TextBox
@@ -2120,6 +2916,24 @@
23
+
+ False
+
+
+ True
+
+
+ 395, 25
+
+
+ 35, 13
+
+
+ 7
+
+
+ Type:
+
TYPELabel
@@ -2132,6 +2946,27 @@
24
+
+ False
+
+
+ VBREPLACE
+
+
+ VBSPLIT
+
+
+ REG. EXPRESSION
+
+
+ 398, 43
+
+
+ 121, 21
+
+
+ 8
+
TYPEComboBox
@@ -2144,6 +2979,24 @@
25
+
+ False
+
+
+ True
+
+
+ 522, 26
+
+
+ 65, 13
+
+
+ 6
+
+
+ Kommentar:
+
COMMENTLabel2
@@ -2156,6 +3009,18 @@
26
+
+ False
+
+
+ 525, 44
+
+
+ 381, 21
+
+
+ 7
+
COMMENTTextBox2
@@ -2168,6 +3033,24 @@
27
+
+ False
+
+
+ True
+
+
+ 209, 26
+
+
+ 88, 13
+
+
+ 5
+
+
+ Manueller Index:
+
IDXMAN_IDLabel
@@ -2180,6 +3063,27 @@
28
+
+ False
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 154, 26
+
+
+ 22, 15
+
+
+ 4
+
+
+ ID:
+
GUIDLabel5
@@ -2192,6 +3096,18 @@
29
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 157, 43
+
+
+ 49, 23
+
+
+ 5
+
GUIDTextBox4
@@ -2205,7 +3121,7 @@
30
- 1109, 277
+ 1109, 245
Nachbearbeitungsfunktionen manueller Index
@@ -2222,6 +3138,27 @@
1
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
Vertical
@@ -2231,6 +3168,1377 @@
True
+
+ Label6
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 0
+
+
+ ListBoxControl4
+
+
+ DevExpress.XtraEditors.ListBoxControl, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabPageAutoIndex
+
+
+ 1
+
+
+ btnAddWindowsVariable
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 2
+
+
+ lblWindowParameter
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 3
+
+
+ lbFileparameter
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 4
+
+
+ lblValue
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 5
+
+
+ INDEXNAME_AutoIndexCMB
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 6
+
+
+ btnSQLViewAuto
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 7
+
+
+ SQL_ACTIVECheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 8
+
+
+ GUIDLabel4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 9
+
+
+ GUIDAUTO_INDEXTextbox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 10
+
+
+ INDEXNAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 11
+
+
+ VALUETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 12
+
+
+ COMMENTLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 13
+
+
+ COMMENTTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 14
+
+
+ ACTIVECheckBox1
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 15
+
+
+ ADDED_WHOLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 16
+
+
+ ADDED_WHOTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 17
+
+
+ ADDED_WHENLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 18
+
+
+ ADDED_WHENTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 19
+
+
+ CHANGED_WHOLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 20
+
+
+ CHANGED_WHOTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 21
+
+
+ CHANGED_WHENLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 22
+
+
+ CHANGED_WHENTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 23
+
+
+ INDEXNAME_AutoIndexTXT
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageAutoIndex
+
+
+ 24
+
+
+ 1109, 277
+
+
+ automatische/feste Indexe
+
+
+ XtraTabPageAutoIndex
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl2
+
+
+ 2
+
+
+ GroupBox4
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageFolderPath
+
+
+ 0
+
+
+ 1109, 277
+
+
+ Dynamischer Ordnerpfad
+
+
+ XtraTabPageFolderPath
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl2
+
+
+ 3
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ False
+
+
+ TextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 0
+
+
+ Label27
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 1
+
+
+ Label28
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 2
+
+
+ Button2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 3
+
+
+ TextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 4
+
+
+ Label29
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 5
+
+
+ TextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 6
+
+
+ TextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 7
+
+
+ Label30
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 8
+
+
+ Label31
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 9
+
+
+ TextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 10
+
+
+ TextBox6
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 11
+
+
+ Label33
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 12
+
+
+ Label34
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 13
+
+
+ TextBox7
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPageProfileRegex
+
+
+ 14
+
+
+ 1109, 277
+
+
+ Automatische Profilauswahl
+
+
+ XtraTabPageProfileRegex
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl2
+
+
+ 4
+
+
+ XtraTabControl2
+
+
+ DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ SplitContainerControl3.Panel2
+
+
+ 3
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 9, 53
+
+
+ 51, 23
+
+
+ 1
+
+
+ DOKART_GUIDTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 4
+
+
+ 157, 101
+
+
+ 287, 21
+
+
+ 25
+
+
+ OBJEKTTYPComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 5
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 163
+
+
+ 156, 23
+
+
+ 23
+
+
+ GEAENDERTWANNTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 6
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 72, 53
+
+
+ 67, 24
+
+
+ 91
+
+
+ SEQUENCENumericUpDown
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 7
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 119
+
+
+ 156, 23
+
+
+ 21
+
+
+ GEANDERTWERTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 8
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 9, 96
+
+
+ 130, 24
+
+
+ 89
+
+
+ Windream direkt
+
+
+ WINDREAM_DIRECTCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 9
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 75
+
+
+ 156, 23
+
+
+ 19
+
+
+ ERSTELLTWANNTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 10
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ NoControl
+
+
+ 69, 35
+
+
+ 78, 15
+
+
+ 87
+
+
+ Reihenfolge:
+
+
+ Label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 11
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ NoControl
+
+
+ 447, 31
+
+
+ 64, 15
+
+
+ 87
+
+
+ Kurzname
+
+
+ Label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 12
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ NoControl
+
+
+ 921, 145
+
+
+ 92, 15
+
+
+ 87
+
+
+ Geändert Wann:
+
+
+ Label24
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 13
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ NoControl
+
+
+ 921, 101
+
+
+ 82, 15
+
+
+ 87
+
+
+ Geändert Wer:
+
+
+ Label23
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 14
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ NoControl
+
+
+ 921, 57
+
+
+ 79, 15
+
+
+ 87
+
+
+ Erstellt Wann:
+
+
+ Label22
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 15
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ NoControl
+
+
+ 922, 13
+
+
+ 69, 15
+
+
+ 87
+
+
+ Erstellt Wer:
+
+
+ Label21
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 16
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ NoControl
+
+
+ 6, 209
+
+
+ 119, 15
+
+
+ 87
+
+
+ Namenskonvention:
+
+
+ Label16
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 17
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ NoControl
+
+
+ 6, 167
+
+
+ 86, 15
+
+
+ 87
+
+
+ Beschreibung:
+
+
+ Label15
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 18
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ NoControl
+
+
+ 6, 125
+
+
+ 55, 15
+
+
+ 87
+
+
+ Zielpfad:
+
+
+ Label8
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 19
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ NoControl
+
+
+ 6, 34
+
+
+ 41, 15
+
+
+ 87
+
+
+ GUID:
+
+
+ Label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 20
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ NoControl
+
+
+ 154, 36
+
+
+ 82, 15
+
+
+ 87
+
+
+ Bezeichnung:
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 21
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ 154, 83
+
+
+ 66, 15
+
+
+ 87
+
+
+ Objekttyp:
+
+
+ lblObjekttyp
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 22
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 924, 31
+
+
+ 156, 23
+
+
+ 17
+
+
+ ERSTELLTWERTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 23
+
+
+ Tahoma, 8.25pt, style=Bold
+
+
+ 9, 4
+
+
+ 63, 24
+
+
+ 13
+
+
+ Aktiv
+
+
+ AKTIVCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 24
+
+
+ 678, 227
+
+
+ 38, 25
+
+
+ 29
+
+
+ ...
+
+
+ btnNamenkonvention
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 25
+
+
+ 9, 185
+
+
+ 586, 21
+
+
+ 11
+
+
+ BESCHREIBUNGTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 26
+
+
+ 604, 143
+
+
+ 31, 21
+
+
+ 28
+
+
+ ...
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 27
+
+
+ 9, 143
+
+
+ 585, 21
+
+
+ 9
+
+
+ ZIEL_PFADTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 28
+
+
+ Segoe UI, 9.75pt
+
+
+ 8, 227
+
+
+ 586, 25
+
+
+ 27
+
+
+ NAMENKONVENTIONTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 29
+
+
+ 450, 54
+
+
+ 144, 21
+
+
+ 7
+
+
+ KURZNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 30
+
+
+ 157, 54
+
+
+ 287, 21
+
+
+ 3
+
+
+ BEZEICHNUNGTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainerControl3.Panel2
+
+
+ 31
+
+
+ Panel2
+
+
+ 1374, 589
+
+
+ 95
+
+
+ SplitContainerControl3
+
+
+ DevExpress.XtraEditors.SplitContainerControl, DevExpress.Utils.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabPageProfiles
+
+
+ 0
+
+
+ 1187, 173
+
Top
@@ -2406,6 +4714,9 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
5
+
+ 17, 173
+
False
@@ -2430,6 +4741,9 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
6
+
+ 17, 173
+
False
@@ -2934,2863 +5248,6 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
24
-
- 1109, 277
-
-
- automatische/feste Indexe
-
-
- XtraTabPageAutoIndex
-
-
- DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- XtraTabControl2
-
-
- 2
-
-
- GroupBox4
-
-
- System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageFolderPath
-
-
- 0
-
-
- 1109, 277
-
-
- Dynamischer Ordnerpfad
-
-
- XtraTabPageFolderPath
-
-
- DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- XtraTabControl2
-
-
- 3
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- False
-
-
- TextBox1
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 0
-
-
- Label27
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 1
-
-
- Label28
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 2
-
-
- Button2
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 3
-
-
- TextBox2
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 4
-
-
- Label29
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 5
-
-
- TextBox3
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 6
-
-
- TextBox4
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 7
-
-
- Label30
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 8
-
-
- Label31
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 9
-
-
- TextBox5
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 10
-
-
- TextBox6
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 11
-
-
- Label33
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 12
-
-
- Label34
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 13
-
-
- TextBox7
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageProfileRegex
-
-
- 14
-
-
- 1109, 277
-
-
- Automatische Profilauswahl
-
-
- XtraTabPageProfileRegex
-
-
- DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- XtraTabControl2
-
-
- 4
-
-
- XtraTabControl2
-
-
- DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- SplitContainerControl3.Panel2
-
-
- 3
-
-
- False
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 10, 31
-
-
- 51, 23
-
-
- 1
-
-
- DOKART_GUIDTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 4
-
-
- 158, 79
-
-
- 438, 21
-
-
- 25
-
-
- OBJEKTTYPComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 5
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 163
-
-
- 156, 23
-
-
- 23
-
-
- GEAENDERTWANNTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 6
-
-
- Segoe UI Semibold, 9pt, style=Bold, Italic
-
-
- 823, 30
-
-
- 67, 24
-
-
- 91
-
-
- SEQUENCENumericUpDown
-
-
- System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 7
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 119
-
-
- 156, 23
-
-
- 21
-
-
- GEANDERTWERTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 8
-
-
- Segoe UI, 9pt, style=Bold, Italic
-
-
- 10, 78
-
-
- 130, 24
-
-
- 89
-
-
- Windream direkt
-
-
- WINDREAM_DIRECTCheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 9
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 75
-
-
- 156, 23
-
-
- 19
-
-
- ERSTELLTWANNTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 10
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- NoControl
-
-
- 820, 12
-
-
- 78, 15
-
-
- 87
-
-
- Reihenfolge:
-
-
- Label4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 11
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- NoControl
-
-
- 720, 13
-
-
- 64, 15
-
-
- 87
-
-
- Kurzname
-
-
- Label5
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 12
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- NoControl
-
-
- 448, 13
-
-
- 74, 15
-
-
- 87
-
-
- Eingangsart:
-
-
- Label2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 13
-
-
- True
-
-
- Segoe UI, 9pt
-
-
- NoControl
-
-
- 921, 145
-
-
- 92, 15
-
-
- 87
-
-
- Geändert Wann:
-
-
- Label24
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 14
-
-
- True
-
-
- Segoe UI, 9pt
-
-
- NoControl
-
-
- 921, 101
-
-
- 82, 15
-
-
- 87
-
-
- Geändert Wer:
-
-
- Label23
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 15
-
-
- True
-
-
- Segoe UI, 9pt
-
-
- NoControl
-
-
- 921, 57
-
-
- 79, 15
-
-
- 87
-
-
- Erstellt Wann:
-
-
- Label22
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 16
-
-
- True
-
-
- Segoe UI, 9pt
-
-
- NoControl
-
-
- 922, 13
-
-
- 69, 15
-
-
- 87
-
-
- Erstellt Wer:
-
-
- Label21
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 17
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- NoControl
-
-
- 7, 187
-
-
- 119, 15
-
-
- 87
-
-
- Namenskonvention:
-
-
- Label16
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 18
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- NoControl
-
-
- 7, 145
-
-
- 86, 15
-
-
- 87
-
-
- Beschreibung:
-
-
- Label15
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 19
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- NoControl
-
-
- 7, 103
-
-
- 55, 15
-
-
- 87
-
-
- Zielpfad:
-
-
- Label8
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 20
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- NoControl
-
-
- 7, 12
-
-
- 41, 15
-
-
- 87
-
-
- GUID:
-
-
- Label7
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 21
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- NoControl
-
-
- 155, 14
-
-
- 82, 15
-
-
- 87
-
-
- Bezeichnung:
-
-
- Label1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 22
-
-
- True
-
-
- Segoe UI, 9pt, style=Bold
-
-
- 155, 61
-
-
- 66, 15
-
-
- 87
-
-
- Objekttyp:
-
-
- lblObjekttyp
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 23
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 31
-
-
- 156, 23
-
-
- 17
-
-
- ERSTELLTWERTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 24
-
-
- 1192, 17
-
-
- 451, 31
-
-
- 266, 21
-
-
- 85
-
-
- ComboBox1
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 25
-
-
- Tahoma, 8.25pt, style=Bold
-
-
- 77, 30
-
-
- 63, 24
-
-
- 13
-
-
- Aktiv
-
-
- AKTIVCheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 26
-
-
- 679, 205
-
-
- 38, 25
-
-
- 29
-
-
- ...
-
-
- btnNamenkonvention
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 27
-
-
- 10, 163
-
-
- 586, 21
-
-
- 11
-
-
- BESCHREIBUNGTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 28
-
-
- 605, 121
-
-
- 31, 21
-
-
- 28
-
-
- ...
-
-
- Button1
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 29
-
-
- 10, 121
-
-
- 585, 21
-
-
- 9
-
-
- ZIEL_PFADTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 30
-
-
- Segoe UI, 9.75pt
-
-
- 9, 205
-
-
- 586, 25
-
-
- 27
-
-
- NAMENKONVENTIONTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 31
-
-
- 723, 31
-
-
- 94, 21
-
-
- 7
-
-
- KURZNAMETextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 32
-
-
- 158, 32
-
-
- 287, 21
-
-
- 3
-
-
- BEZEICHNUNGTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- SplitContainerControl3.Panel2
-
-
- 33
-
-
- Panel2
-
-
- 1371, 555
-
-
- 95
-
-
- SplitContainerControl3
-
-
- DevExpress.XtraEditors.SplitContainerControl, DevExpress.Utils.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- XtraTabPageProfiles
-
-
- 0
-
-
- 17, 95
-
-
- Left
-
-
- 0, 0
-
-
- 150, 277
-
-
- 95
-
-
- ListBoxControl3
-
-
- DevExpress.XtraEditors.ListBoxControl, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- XtraTabPageManualIndex
-
-
- 0
-
-
- 17, 95
-
-
- NoControl
-
-
- 751, 133
-
-
- 167, 24
-
-
- 94
-
-
- Doppelte Einträge verhindern
-
-
- VKT_PREVENT_MULTIPLE_VALUESCheckbox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 1
-
-
- 473, 133
-
-
- 128, 24
-
-
- 94
-
-
- Neueingabe erlauben
-
-
- VKT_ADD_ITEMCheckbox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 2
-
-
- 627, 133
-
-
- 115, 24
-
-
- 93
-
-
- Mehrfachauswahl
-
-
- MULTISELECTCheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 3
-
-
- 328, 218
-
-
- 152, 41
-
-
- 92
-
-
- Letzte erfolgreiche Eingabe speichern
-
-
- SAVE_VALUECheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 4
-
-
- True
-
-
- 588, 29
-
-
- 89, 13
-
-
- 91
-
-
- windream-Index:
-
-
- lblWDINDEX
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 5
-
-
- False
-
-
- 162, 218
-
-
- 180, 41
-
-
- 90
-
-
- Optional/Nur für Benennung
-der Datei
-
-
- OPTIONALCheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 6
-
-
- False
-
-
- MiddleLeft
-
-
- 751, 162
-
-
- 136, 23
-
-
- 80
-
-
- Show SQL Config
-
-
- MiddleRight
-
-
- False
-
-
- btnSQLView
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 7
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 160
-
-
- 92, 15
-
-
- 25
-
-
- Geändert wann:
-
-
- CHANGED_WHENLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 8
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 923, 178
-
-
- 156, 23
-
-
- 26
-
-
- CHANGED_WHENTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 9
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 920, 117
-
-
- 81, 15
-
-
- 23
-
-
- Geändert wer:
-
-
- CHANGED_WHOLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 10
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 923, 134
-
-
- 156, 23
-
-
- 24
-
-
- CHANGED_WHOTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 11
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 73
-
-
- 78, 15
-
-
- 21
-
-
- Erstellt wann:
-
-
- ADDED_WHENLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 12
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 91
-
-
- 155, 23
-
-
- 22
-
-
- ADDED_WHENTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 13
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 28
-
-
- 67, 15
-
-
- 19
-
-
- Erstellt wer:
-
-
- ADDED_WHOLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 14
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 46
-
-
- 155, 23
-
-
- 20
-
-
- ADDED_WHOTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 15
-
-
- False
-
-
- 162, 3
-
-
- 61, 24
-
-
- 19
-
-
- Aktiv
-
-
- ACTIVECheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 16
-
-
- False
-
-
- True
-
-
- 733, 31
-
-
- 68, 13
-
-
- 16
-
-
- Reihenfolge:
-
-
- SEQUENCELabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 17
-
-
- False
-
-
- 736, 47
-
-
- 70, 21
-
-
- 17
-
-
- SEQUENCETextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 18
-
-
- False
-
-
- True
-
-
- 159, 162
-
-
- 74, 13
-
-
- 12
-
-
- Default-Wert:
-
-
- DEFAULT_VALUELabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 19
-
-
- False
-
-
- 162, 180
-
-
- 318, 21
-
-
- 13
-
-
- DEFAULT_VALUETextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 20
-
-
- False
-
-
- 326, 133
-
-
- 141, 24
-
-
- 12
-
-
- Vorschlagsliste per SQL
-
-
- SUGGESTIONCheckBox
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 21
-
-
- False
-
-
- True
-
-
- 159, 118
-
-
- 56, 13
-
-
- 9
-
-
- Datentyp:
-
-
- DATATYPELabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 22
-
-
- False
-
-
- BOOLEAN
-
-
- DATE
-
-
- INTEGER
-
-
- VARCHAR
-
-
- 162, 136
-
-
- 145, 21
-
-
- 10
-
-
- DATATYPEComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 23
-
-
- False
-
-
- True
-
-
- 159, 74
-
-
- 47, 13
-
-
- 7
-
-
- Hinweis:
-
-
- COMMENTLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 24
-
-
- False
-
-
- 162, 92
-
-
- 509, 21
-
-
- 8
-
-
- COMMENTTextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 25
-
-
- False
-
-
- 499, 47
-
-
- 231, 21
-
-
- 6
-
-
- WD_INDEXComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 26
-
-
- False
-
-
- True
-
-
- 218, 31
-
-
- 71, 13
-
-
- 3
-
-
- Bezeichnung:
-
-
- NAMELabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 27
-
-
- False
-
-
- Tahoma, 8.25pt
-
-
- 221, 47
-
-
- 272, 21
-
-
- 4
-
-
- NAMETextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 28
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 159, 30
-
-
- 22, 15
-
-
- 0
-
-
- ID:
-
-
- GUIDLabel1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 29
-
-
- Tahoma, 8.25pt
-
-
- 162, 47
-
-
- 53, 21
-
-
- 1
-
-
- GUIDTextBox1
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndex
-
-
- 30
-
-
- 511, 173
-
-
- Left
-
-
- 0, 0
-
-
- 150, 277
-
-
- 82
-
-
- ListBoxControl2
-
-
- DevExpress.XtraEditors.ListBoxControl, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- XtraTabPageManualIndexFunctions
-
-
- 0
-
-
- 511, 173
-
-
- False
-
-
- True
-
-
- 697, 71
-
-
- 113, 13
-
-
- 80
-
-
- Anwendungsvariante:
-
-
- VARIANTLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 1
-
-
- False
-
-
- ONLY FILE/FOLDER
-
-
- FILE AND INDEX
-
-
- 700, 89
-
-
- 202, 21
-
-
- 81
-
-
- VARIANTComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 2
-
-
- 1187, 173
-
-
- False
-
-
- 212, 43
-
-
- 180, 21
-
-
- 34
-
-
- ComboBox2
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 3
-
-
- 1187, 173
-
-
- True
-
-
- 353, 156
-
-
- 13, 13
-
-
- 33
-
-
- v
-
-
- Function2Label
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 4
-
-
- True
-
-
- 257, 156
-
-
- 13, 13
-
-
- 32
-
-
- v
-
-
- Function1Label
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 5
-
-
- True
-
-
- 522, 71
-
-
- 38, 13
-
-
- 31
-
-
- Label4
-
-
- Text3Label
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 6
-
-
- True
-
-
- 325, 71
-
-
- 38, 13
-
-
- 30
-
-
- Label4
-
-
- Text2Label
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 7
-
-
- True
-
-
- 154, 71
-
-
- 38, 13
-
-
- 29
-
-
- Label4
-
-
- Text1Label
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 8
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 167
-
-
- 92, 15
-
-
- 27
-
-
- Geändert wann:
-
-
- CHANGED_WHENLabel4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 9
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 183
-
-
- 155, 23
-
-
- 28
-
-
- CHANGED_WHENTextBox4
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 10
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 123
-
-
- 81, 15
-
-
- 25
-
-
- Geändert wer:
-
-
- CHANGED_WHOLabel4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 11
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 139
-
-
- 155, 23
-
-
- 26
-
-
- CHANGED_WHOTextBox4
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 12
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 81
-
-
- 78, 15
-
-
- 23
-
-
- Erstellt wann:
-
-
- ADDED_WHENLabel4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 13
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 97
-
-
- 155, 23
-
-
- 24
-
-
- ADDED_WHENTextBox4
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 14
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 921, 36
-
-
- 67, 15
-
-
- 21
-
-
- Erstellt wer:
-
-
- ADDED_WHOLabel4
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 15
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 924, 52
-
-
- 155, 23
-
-
- 22
-
-
- ADDED_WHOTextBox4
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 16
-
-
- False
-
-
- True
-
-
- 154, 157
-
-
- 68, 13
-
-
- 19
-
-
- Reihenfolge:
-
-
- SEQUENCELabel1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 17
-
-
- False
-
-
- 157, 175
-
-
- 78, 21
-
-
- 20
-
-
- SEQUENCETextBox1
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 18
-
-
- False
-
-
- 525, 89
-
-
- 169, 21
-
-
- 18
-
-
- TEXT3TextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 19
-
-
- False
-
-
- 328, 89
-
-
- 191, 21
-
-
- 16
-
-
- TEXT2TextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 20
-
-
- False
-
-
- 157, 89
-
-
- 165, 21
-
-
- 14
-
-
- TEXT1TextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 21
-
-
- False
-
-
- 352, 174
-
-
- 70, 21
-
-
- 12
-
-
- FUNCTION2TextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 22
-
-
- False
-
-
- 260, 174
-
-
- 70, 21
-
-
- 10
-
-
- FUNCTION1TextBox
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 23
-
-
- False
-
-
- True
-
-
- 395, 25
-
-
- 35, 13
-
-
- 7
-
-
- Type:
-
-
- TYPELabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 24
-
-
- False
-
-
- VBREPLACE
-
-
- VBSPLIT
-
-
- REG. EXPRESSION
-
-
- 398, 43
-
-
- 121, 21
-
-
- 8
-
-
- TYPEComboBox
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 25
-
-
- False
-
-
- True
-
-
- 522, 26
-
-
- 65, 13
-
-
- 6
-
-
- Kommentar:
-
-
- COMMENTLabel2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 26
-
-
- False
-
-
- 525, 44
-
-
- 381, 21
-
-
- 7
-
-
- COMMENTTextBox2
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 27
-
-
- False
-
-
- True
-
-
- 209, 26
-
-
- 88, 13
-
-
- 5
-
-
- Manueller Index:
-
-
- IDXMAN_IDLabel
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 28
-
-
- False
-
-
- True
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 154, 26
-
-
- 22, 15
-
-
- 4
-
-
- ID:
-
-
- GUIDLabel5
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 29
-
-
- Segoe UI, 9pt, style=Italic
-
-
- 157, 43
-
-
- 49, 23
-
-
- 5
-
-
- GUIDTextBox4
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- XtraTabPageManualIndexFunctions
-
-
- 30
-
-
- 17, 173
-
Label10
@@ -6349,6 +5806,9 @@ der Datei
34
+
+ FileNameTest.pdf
+
TextBox1
@@ -8273,7 +7733,7 @@ der Datei
3, 4, 3, 4
- 1371, 555
+ 1374, 589
Profil-Verwaltung
@@ -8291,7 +7751,7 @@ der Datei
0
- 1373, 580
+ 1376, 614
1
@@ -8423,7 +7883,7 @@ der Datei
7, 17
- 1373, 762
+ 1376, 796
Segoe UI, 9.75pt
diff --git a/Global_Indexer/frmConfig_Basic.designer.vb b/Global_Indexer/frmConfig_Basic.designer.vb
index f553657..f41957d 100644
--- a/Global_Indexer/frmConfig_Basic.designer.vb
+++ b/Global_Indexer/frmConfig_Basic.designer.vb
@@ -44,7 +44,7 @@ Partial Class frmConfig_Basic
Me.cmbLanguage = New System.Windows.Forms.ComboBox()
Me.Label9 = New System.Windows.Forms.Label()
Me.CheckBoxPreviewDocs = New System.Windows.Forms.CheckBox()
- Me.CheckBox2 = New System.Windows.Forms.CheckBox()
+ Me.CheckBoxIndexResult = New System.Windows.Forms.CheckBox()
Me.chkLogErrorsOnly = New System.Windows.Forms.CheckBox()
Me.btnLogMail = New System.Windows.Forms.Button()
Me.btnApplicationFolder = New System.Windows.Forms.Button()
@@ -175,7 +175,7 @@ Partial Class frmConfig_Basic
Me.TabPage2.Controls.Add(Me.cmbLanguage)
Me.TabPage2.Controls.Add(Me.Label9)
Me.TabPage2.Controls.Add(Me.CheckBoxPreviewDocs)
- Me.TabPage2.Controls.Add(Me.CheckBox2)
+ Me.TabPage2.Controls.Add(Me.CheckBoxIndexResult)
Me.TabPage2.Controls.Add(Me.chkLogErrorsOnly)
Me.TabPage2.Controls.Add(Me.btnLogMail)
Me.TabPage2.Controls.Add(Me.btnApplicationFolder)
@@ -211,19 +211,16 @@ Partial Class frmConfig_Basic
'CheckBoxPreviewDocs
'
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
+ 'CheckBoxIndexResult
'
- resources.ApplyResources(Me.CheckBox2, "CheckBox2")
- Me.CheckBox2.Checked = Global.Global_Indexer.My.MySettings.Default.Show_IndexResult
- Me.CheckBox2.CheckState = System.Windows.Forms.CheckState.Checked
- Me.CheckBox2.DataBindings.Add(New System.Windows.Forms.Binding("Checked", Global.Global_Indexer.My.MySettings.Default, "Show_IndexResult", True, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged))
- Me.CheckBox2.Name = "CheckBox2"
- Me.CheckBox2.UseVisualStyleBackColor = True
+ resources.ApplyResources(Me.CheckBoxIndexResult, "CheckBoxIndexResult")
+ Me.CheckBoxIndexResult.Checked = True
+ Me.CheckBoxIndexResult.CheckState = System.Windows.Forms.CheckState.Checked
+ Me.CheckBoxIndexResult.Name = "CheckBoxIndexResult"
+ Me.CheckBoxIndexResult.UseVisualStyleBackColor = True
'
'chkLogErrorsOnly
'
@@ -400,7 +397,7 @@ Partial Class frmConfig_Basic
Friend WithEvents chkLogErrorsOnly As System.Windows.Forms.CheckBox
Friend WithEvents btnopenlog As System.Windows.Forms.Button
Friend WithEvents btnApplicationFolder As System.Windows.Forms.Button
- Friend WithEvents CheckBox2 As System.Windows.Forms.CheckBox
+ Friend WithEvents CheckBoxIndexResult As System.Windows.Forms.CheckBox
Friend WithEvents Button2 As System.Windows.Forms.Button
Friend WithEvents txtScanFolderWatch As System.Windows.Forms.TextBox
Friend WithEvents Label7 As System.Windows.Forms.Label
diff --git a/Global_Indexer/frmConfig_Basic.resx b/Global_Indexer/frmConfig_Basic.resx
index 823408e..feb52ca 100644
--- a/Global_Indexer/frmConfig_Basic.resx
+++ b/Global_Indexer/frmConfig_Basic.resx
@@ -579,32 +579,32 @@
4
-
+
True
-
+
242, 44
-
+
230, 30
-
+
6
-
+
Meldungsfenster für erfolgreiche
Übertragung nach windream anzeigen?
-
- CheckBox2
+
+ CheckBoxIndexResult
-
+
System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
+
TabPage2
-
+
5
diff --git a/Global_Indexer/frmConfig_Basic.vb b/Global_Indexer/frmConfig_Basic.vb
index b724a89..845a61b 100644
--- a/Global_Indexer/frmConfig_Basic.vb
+++ b/Global_Indexer/frmConfig_Basic.vb
@@ -123,9 +123,9 @@ Public Class frmConfig_Basic
Cursor = Cursors.Default
End Sub
-
Private Sub frmConfig_Basic_Load(sender As Object, e As EventArgs) Handles MyBase.Load
-
+ CheckBoxIndexResult.Checked = CONFIG.Config.ShowIndexResult
+ CheckBoxPreviewDocs.Checked = CONFIG.Config.FilePreview
End Sub
Dim reload As Boolean = False
@@ -407,9 +407,9 @@ Public Class frmConfig_Basic
Process.Start(Application.UserAppDataPath())
End Sub
- Private Sub CheckBox2_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBox2.CheckedChanged
-
- My.Settings.Save()
+ Private Sub CheckBox2_CheckedChanged(sender As Object, e As EventArgs) Handles CheckBoxIndexResult.CheckedChanged
+ CONFIG.Config.ShowIndexResult = CheckBoxIndexResult.Checked
+ CONFIG.Save()
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
diff --git a/Global_Indexer/frmHotkey_User.Designer.vb b/Global_Indexer/frmHotkey_User.Designer.vb
index 7b3396f..31e6adf 100644
--- a/Global_Indexer/frmHotkey_User.Designer.vb
+++ b/Global_Indexer/frmHotkey_User.Designer.vb
@@ -247,9 +247,7 @@ Partial Class frmHotkey_User
'chkbxMaximizeWS
'
resources.ApplyResources(Me.chkbxMaximizeWS, "chkbxMaximizeWS")
- Me.chkbxMaximizeWS.Checked = Global.Global_Indexer.My.MySettings.Default.WDSearch_maximized
Me.chkbxMaximizeWS.CheckState = System.Windows.Forms.CheckState.Checked
- Me.chkbxMaximizeWS.DataBindings.Add(New System.Windows.Forms.Binding("Checked", Global.Global_Indexer.My.MySettings.Default, "WDSearch_maximized", True, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged))
Me.chkbxMaximizeWS.Name = "chkbxMaximizeWS"
Me.chkbxMaximizeWS.UseVisualStyleBackColor = True
'
diff --git a/Global_Indexer/frmHotkey_User.vb b/Global_Indexer/frmHotkey_User.vb
index 94238fb..79084d7 100644
--- a/Global_Indexer/frmHotkey_User.vb
+++ b/Global_Indexer/frmHotkey_User.vb
@@ -105,6 +105,7 @@
End Sub
Private Sub chkbxMaximizeWS_CheckedChanged(sender As Object, e As EventArgs) Handles chkbxMaximizeWS.CheckedChanged
- My.Settings.Save()
+ CONFIG.Config.WindreamSearchMaximized = chkbxMaximizeWS.Checked
+ CONFIG.Save()
End Sub
End Class
\ No newline at end of file
diff --git a/Global_Indexer/frmIndex.vb b/Global_Indexer/frmIndex.vb
index b38c27e..4b98ae1 100644
--- a/Global_Indexer/frmIndex.vb
+++ b/Global_Indexer/frmIndex.vb
@@ -1435,13 +1435,14 @@ Public Class frmIndex
End If
- 'txtIndexfilepath.Text = CURRENT_WORKFILE
labelFilePath.Caption = CURRENT_WORKFILE
ClassWindowLocation.LoadFormLocationSize(Me)
SetFilePreview(CONFIG.Config.FilePreview)
+ SplitContainer1.SplitterDistance = CONFIG.Config.SplitterDistanceViewer
+
Load_String()
MULTIFILES = ClassDatabase.Execute_Scalar("SELECT COUNT(*) FROM TBGI_FILES_USER WHERE WORKED = 0 AND GUID <> " & CURRENT_WORKFILE_GUID & " AND UPPER(USER@WORK) = UPPER('" & Environment.UserName & "')", MyConnectionString, True)
MULTIINDEXING_ACTIVE = False
@@ -1467,11 +1468,6 @@ Public Class frmIndex
Try
Me.VWDDINDEX_MANTableAdapter.Connection.ConnectionString = MyConnectionString
Me.VWINDEX_AUTOMTableAdapter.Connection.ConnectionString = MyConnectionString
- 'Me.VWIORDNER_DOKARTTableAdapter.Connection.ConnectionString = My.Settings.MyConnectionString
- 'Me.VWDMS_DOKUMENTARTZUORDNUNGTableAdapter.Connection.ConnectionString = My.Settings.MyConnectionString
- 'Me.TBCONNECTIONTableAdapter.Connection.ConnectionString = My.Settings.MyConnectionString
- 'Me.VWINDEX_AUTOMTableAdapter.Connection.ConnectionString = My.Settings.MyConnectionString
- 'Me.VWINDEX_MANTableAdapter.Connection.ConnectionString = My.Settings.MyConnectionString
Catch ex As Exception
LOGGER.Info(" - Unexpected error in Speichern der Verbindung - Fehler: " & vbNewLine & ex.Message)
LOGGER.Error(ex.Message)
@@ -1490,15 +1486,14 @@ Public Class frmIndex
CURR_DELETE_ORIGIN = CONFIG.Config.DeleteOriginalFile
checkItemDeleteSource.Checked = CONFIG.Config.DeleteOriginalFile
- 'chkdelete_origin.Checked = CONFIG.Config.DeleteOriginalFile
- 'CURR_DELETE_ORIGIN = chkdelete_origin.Checked
-
FormLoaded = True
- If My.Settings.DA_Vorauswahlaktiv = True Then
+
+ If CONFIG.Config.ProfilePreselection Then
If CURRENT_LASTDOKART <> "" Then
cmbDokumentart.SelectedIndex = cmbDokumentart.FindStringExact(CURRENT_LASTDOKART)
End If
End If
+
Try
If DTTBGI_REGEX_DOCTYPE.Rows.Count > 0 Then
For Each oRoW As DataRow In DTTBGI_REGEX_DOCTYPE.Rows
@@ -1516,7 +1511,6 @@ Public Class frmIndex
End Try
Me.TopMost = True
Me.BringToFront()
-
End Sub
Sub Refresh_Dokart()
Try
@@ -2199,7 +2193,8 @@ Public Class frmIndex
Else
If WORK_FILE() = True Then
Me.Cursor = Cursors.Default
- If My.Settings.Show_IndexResult = True Then
+
+ If CONFIG.Config.ShowIndexResult = True Then
If USER_LANGUAGE = "de-DE" Then
MsgBox("Die Datei wurde erfolgreich verarbeitet!" & vbNewLine & "Ablagepfad:" & vbNewLine & CURRENT_NEWFILENAME, MsgBoxStyle.Information, "Erfolgsmeldung")
Else
@@ -2589,7 +2584,7 @@ Public Class frmIndex
Else
If WORK_FILE() = True Then
Me.Cursor = Cursors.Default
- If My.Settings.Show_IndexResult = True Then
+ If CONFIG.Config.ShowIndexResult = True Then
If USER_LANGUAGE = "de-DE" Then
MsgBox("Die Datei wurde erfolgreich verarbeitet!" & vbNewLine & "Ablagepfad:" & vbNewLine & CURRENT_NEWFILENAME, MsgBoxStyle.Information, "Erfolgsmeldung")
Else
@@ -2632,4 +2627,8 @@ Public Class frmIndex
End If
End If
End Sub
+
+ Private Sub SplitContainer1_SplitterMoved(sender As Object, e As SplitterEventArgs) Handles SplitContainer1.SplitterMoved
+ CONFIG.Config.SplitterDistanceViewer = SplitContainer1.SplitterDistance
+ End Sub
End Class
diff --git a/Global_Indexer/frmStart.vb b/Global_Indexer/frmStart.vb
index 91fd094..e348076 100644
--- a/Global_Indexer/frmStart.vb
+++ b/Global_Indexer/frmStart.vb
@@ -300,30 +300,28 @@ Public Class frmStart
End Sub
Private Sub frmStart_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
- If My.Settings.AppTerminate = False Then
- Try
+ Try
- LOGGER.Info("")
- If START_INCOMPLETE = False Then
- Dim Sql = "DELETE FROM TBDD_USER_MODULE_LOG_IN WHERE USER_ID = " & USER_ID & " AND UPPER(MODULE) = UPPER('Global-Indexer')"
- ClassDatabase.Execute_non_Query(Sql, True)
- End If
- ClassWindowLocation.SaveFormLocationSize(Me)
- Catch ex As Exception
- MsgBox("Unexpected Error in Closing Application: " & vbNewLine & ex.Message, MsgBoxStyle.Critical)
- End Try
- If USER_ID > 0 Then
- Unregister_Hotkeys()
+ LOGGER.Info("")
+ If START_INCOMPLETE = False Then
+ Dim Sql = "DELETE FROM TBDD_USER_MODULE_LOG_IN WHERE USER_ID = " & USER_ID & " AND UPPER(MODULE) = UPPER('Global-Indexer')"
+ ClassDatabase.Execute_non_Query(Sql, True)
End If
- 'TempDateien löschen
- Try
- For Each _file In TEMP_FILES
- System.IO.File.Delete(_file)
- Next
- Catch ex As Exception
-
- End Try
+ ClassWindowLocation.SaveFormLocationSize(Me)
+ Catch ex As Exception
+ MsgBox("Unexpected Error in Closing Application: " & vbNewLine & ex.Message, MsgBoxStyle.Critical)
+ End Try
+ If USER_ID > 0 Then
+ Unregister_Hotkeys()
End If
+ 'TempDateien löschen
+ Try
+ For Each _file In TEMP_FILES
+ System.IO.File.Delete(_file)
+ Next
+ Catch ex As Exception
+
+ End Try
End Sub
Public Sub New()
@@ -338,9 +336,6 @@ Public Class frmStart
End Sub
Private Sub frmStart_Load(sender As Object, e As EventArgs) Handles Me.Load
- If My.Settings.AppTerminate = True Then
- Exit Sub
- End If
'Me.TransparencyKey = Color.Transparent
' Me.BackColor = Color.Transparent
Cursor = Cursors.WaitCursor
@@ -709,9 +704,6 @@ Public Class frmStart
End If
End Sub
Private Sub frmStart_Shown(sender As Object, e As EventArgs) Handles Me.Shown
- If My.Settings.AppTerminate = True Then
- Me.Close()
- End If
' SetLanguage()
If START_INCOMPLETE = True Then
If LICENSE_COUNT = 0 And LICENSE_EXPIRED = True Then
@@ -734,7 +726,6 @@ Public Class frmStart
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()