diff --git a/Global_Indexer/App.config b/Global_Indexer/App.config
index c3bbefd..2b4f5b6 100644
--- a/Global_Indexer/App.config
+++ b/Global_Indexer/App.config
@@ -33,6 +33,9 @@
False
+
+ False
+
diff --git a/Global_Indexer/ClassDragDrop.vb b/Global_Indexer/ClassDragDrop.vb
index 6f1c9e3..481e552 100644
--- a/Global_Indexer/ClassDragDrop.vb
+++ b/Global_Indexer/ClassDragDrop.vb
@@ -19,46 +19,7 @@ Public Class ClassDragDrop
' ListBox1.Items.Add(MyFiles(i))
Next
Return True
- ElseIf e.Data.GetDataPresent("FileGroupDescriptor") Then
- Dim oApp
- Try
- oApp = New Outlook.Application()
- Catch ex As Exception
- MsgBox("Fehler bei Initialisieren von Outlook-API:" & vbNewLine & ex.Message & vbNewLine & vbNewLine & "Evtl ist Outlook nicht in der dafür vorgesehenen For")
- End Try
-
- ClassLogger.Add(">> Drop of msg", False)
- 'supports a drop of a Outlook message
- Dim myobj As Object
- For i As Integer = 1 To oApp.ActiveExplorer.Selection.Count
- myobj = oApp.ActiveExplorer.Selection.Item(i)
- Dim subj As String = myobj.Subject
- If subj.Contains("\") Then
- subj = subj.Replace("\", "-")
- End If
- If subj.Contains("/") Then
- subj = subj.Replace("/", "-")
- End If
- 'hardcode a destination path for testing
- Dim strFile As String = IO.Path.Combine(Path.GetTempPath, (subj + ".msg").Replace(":", ""))
- strFile = strFile.Replace("?", "")
- strFile = strFile.Replace("!", "")
- strFile = strFile.Replace("%", "")
- strFile = strFile.Replace("$", "")
- ClassLogger.Add(">> Drop of msg - File:" & strFile, False)
- Try
- myobj.SaveAs(strFile)
- Catch ex As Exception
- MsgBox("Error in Save Email2Tempfile" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
- Return False
- End Try
-
- ReDim Preserve files_dropped(i)
- files_dropped(i) = "@OUTLOOK_MESSAGE@" & strFile
- Next
- Return True
- 'Drop eines Outlook Attachments
- ElseIf (e.Data.GetDataPresent("aryFileGroupDescriptor")) AndAlso (e.Data.GetDataPresent("FileContents")) Then
+ ElseIf (e.Data.GetDataPresent("FileGroupDescriptor")) AndAlso (e.Data.GetDataPresent("FileContents")) Then
'// the first step here is to get the stbFileName
'// of the attachment and
'// build a full-path name so we can store it
@@ -113,7 +74,46 @@ Public Class ClassDragDrop
ClassLogger.Add(">> Attachment File from Outlook could not be created", False)
End If
End If
+ End If
+ If e.Data.GetDataPresent("FileGroupDescriptor") Then
+ Dim oApp
+ Try
+ oApp = New Outlook.Application()
+ Catch ex As Exception
+ MsgBox("Fehler bei Initialisieren von Outlook-API:" & vbNewLine & ex.Message & vbNewLine & vbNewLine & "Evtl ist Outlook nicht in der dafür vorgesehenen For")
+ End Try
+ ClassLogger.Add(">> Drop of msg", False)
+ 'supports a drop of a Outlook message
+ Dim myobj As Object
+ For i As Integer = 1 To oApp.ActiveExplorer.Selection.Count
+ myobj = oApp.ActiveExplorer.Selection.Item(i)
+ Dim subj As String = myobj.Subject
+ If subj.Contains("\") Then
+ subj = subj.Replace("\", "-")
+ End If
+ If subj.Contains("/") Then
+ subj = subj.Replace("/", "-")
+ End If
+ 'hardcode a destination path for testing
+ Dim strFile As String = IO.Path.Combine(Path.GetTempPath, (subj + ".msg").Replace(":", ""))
+ strFile = strFile.Replace("?", "")
+ strFile = strFile.Replace("!", "")
+ strFile = strFile.Replace("%", "")
+ strFile = strFile.Replace("$", "")
+ ClassLogger.Add(">> Drop of msg - File:" & strFile, False)
+ Try
+ myobj.SaveAs(strFile)
+ Catch ex As Exception
+ MsgBox("Error in Save Email2Tempfile" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
+ Return False
+ End Try
+
+ ReDim Preserve files_dropped(i)
+ files_dropped(i) = "@OUTLOOK_MESSAGE@" & strFile
+ Next
+ Return True
+ 'Drop eines Outlook Attachments
End If
Catch ex As Exception
MsgBox("Error in Drop-File" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
diff --git a/Global_Indexer/ClassFolderWatcher.vb b/Global_Indexer/ClassFolderWatcher.vb
index 6c828ad..c2f24b3 100644
--- a/Global_Indexer/ClassFolderWatcher.vb
+++ b/Global_Indexer/ClassFolderWatcher.vb
@@ -138,7 +138,7 @@ Public Class ClassFolderWatcher
Next
Dim handleType As String
- If e.FullPath.EndsWith(".msg") Then
+ If e.FullPath.ToLower.EndsWith(".msg") Then
handleType = "@FW_OUTLOOK_MESSAGE@"
Else
handleType = "@FW_SIMPLEINDEXER@"
diff --git a/Global_Indexer/ClassHotkey_Windream.vb b/Global_Indexer/ClassHotkey_Windream.vb
index df438ba..e77027b 100644
--- a/Global_Indexer/ClassHotkey_Windream.vb
+++ b/Global_Indexer/ClassHotkey_Windream.vb
@@ -4,6 +4,10 @@ Imports System.Text
Public Class ClassHotkey_Windream
Private Declare Function GetForegroundWindow Lib "user32" Alias "GetForegroundWindow" () As IntPtr
Private Declare Auto Function GetWindowText Lib "user32" (ByVal hWnd As System.IntPtr, ByVal lpString As System.Text.StringBuilder, ByVal cch As Integer) As Integer
+
+ Private Declare Function ShowWindow Lib "user32" (ByVal handle As IntPtr, ByVal nCmdShow As Integer) As Integer
+ Private Declare Function SetForeGroundWindow Lib "user32" (ByVal Hwnd As IntPtr) As Integer
+
Private makel As String
Public Shared Function GetCaption() As String
Dim Caption As New System.Text.StringBuilder(256)
@@ -93,6 +97,7 @@ Public Class ClassHotkey_Windream
Dim Objecttype As String
Dim windowname As String
Dim HKPROFILE_ID As Integer
+ Dim type As String
Dim _sql = "SELECT WD_SEARCH,HKPROFILE_ID FROM TBHOTKEY_USER_PROFILE WHERE GUID = " & HK_USR_PROFILE_ID
@@ -119,6 +124,7 @@ Public Class ClassHotkey_Windream
Return Nothing
End If
windowname = ClassDatabase.Execute_Scalar("SELECT WINDOW_NAME FROM TBHOTKEY_PROFILE WHERE GUID = " & HKPROFILE_ID, MyConnectionString, True)
+ type = ClassDatabase.Execute_Scalar("SELECT OBJECTTYPE FROM TBHOTKEY_PROFILE WHERE GUID = " & HKPROFILE_ID, MyConnectionString, True)
fileContents = ""
'Eine tempfile generieren
@@ -165,30 +171,67 @@ Public Class ClassHotkey_Windream
If DT_PATTERNS.Rows.Count > 0 Then
Dim i As Integer = 0
For Each row As DataRow In DT_PATTERNS.Rows
- If LogErrorsOnly = False Then ClassLogger.Add(" ...Get Value for Control# '" & row.Item("SEQUENCE_NUMBER").ToString & "'", False)
- Dim foundresult = Get_windowContent(windowname, row.Item("SEQUENCE_NUMBER").ToString)
- If Not IsNothing(foundresult) Then
- 'Die Nachbearbeitungsschritte laden
- Dim DTNB As DataTable = ClassDatabase.Return_Datatable("SELECT * FROM TBHOTKEY_PATTERNS_REWORK WHERE HKPATTERN_ID = " & row.Item("GUID") & " ORDER BY SEQUENCE")
- If DTNB Is Nothing = False Then
- If DTNB.Rows.Count > 0 Then
- foundresult = ClassPostprocessing.Get_Nachbearbeitung_Wert(foundresult, DTNB)
+ If type = "COPYPASTE" Then
+ _sql = "select window_control from TBHOTKEY_PATTERNS where HKPROFILE_ID = " & HKPROFILE_ID
+ Dim copytype = ClassDatabase.Execute_Scalar(_sql, MyConnectionString, True)
+ Dim clipbrd
+ Dim theHandle As IntPtr = FindWindow(Nothing, CURRENT_FOCUSES_WINDOWNAME)
+ If theHandle <> IntPtr.Zero Then
+ Dim theForegroundWindow As Boolean = SetForeGroundWindow(theHandle)
+ If theForegroundWindow = True Then
+ Select Case copytype
+ Case "strgC"
+ ' SetForeGroundWindow(HWND)
+ SendKeys.Send("^{c}") 'for Ctrl-C
+
+ Case "strA and strgC"
+ SendKeys.Send("^{A}")
+ 'AppActivate(CURRENT_FOCUSES_WINDOWNAME)
+ SendKeys.Send("^{c}") 'for Ctrl-C
+ End Select
End If
End If
- End If
- If Not IsNothing(foundresult) Then
- If foundresult.ToString = "<" Or foundresult.ToString = ">" Then
- ClassLogger.Add(">> Hot Key received an irregular value.", False)
- Return "Hotkey konnte nur einen irregulären Wert auswerten."
+
+
+
+ clipbrd = Clipboard.GetText
+ Console.WriteLine(clipbrd.ToString)
+ If Not clipbrd Is Nothing Then
+ If clipbrd <> "" Then
+ _sql = "select PATTERN_WDSEARCH from TBHOTKEY_PATTERNS where HKPROFILE_ID = " & HKPROFILE_ID
+ Dim _pattern = ClassDatabase.Execute_Scalar(_sql, MyConnectionString, True)
+ fileContents = fileContents.Replace(_pattern, clipbrd.ToString)
+ End If
+
End If
- If LogErrorsOnly = False Then ClassLogger.Add(" ...fileContents.length: " & fileContents.Length, False)
- If LogErrorsOnly = False Then ClassLogger.Add(" ...Replace pattern '" & row.Item(2).ToString & "' with '" & foundresult & "'", False)
- fileContents = fileContents.Replace(row.Item(2).ToString, foundresult)
- If LogErrorsOnly = False Then ClassLogger.Add(" ...fileContents.length: " & fileContents.Length, False)
+
Else
- ClassLogger.Add(">> Hot Key could not read any value.", False)
- Return "Hotkey konnte keinen Wert auswerten - Evtl. ist das konfigurierte Fenster nicht geöffnet?"
+ If LogErrorsOnly = False Then ClassLogger.Add(" ...Get Value for Control# '" & row.Item("SEQUENCE_NUMBER").ToString & "'", False)
+ Dim foundresult = Get_windowContent(windowname, row.Item("SEQUENCE_NUMBER").ToString)
+ If Not IsNothing(foundresult) Then
+ 'Die Nachbearbeitungsschritte laden
+ Dim DTNB As DataTable = ClassDatabase.Return_Datatable("SELECT * FROM TBHOTKEY_PATTERNS_REWORK WHERE HKPATTERN_ID = " & row.Item("GUID") & " ORDER BY SEQUENCE")
+ If DTNB Is Nothing = False Then
+ If DTNB.Rows.Count > 0 Then
+ foundresult = ClassPostprocessing.Get_Nachbearbeitung_Wert(foundresult, DTNB)
+ End If
+ End If
+ End If
+ If Not IsNothing(foundresult) Then
+ If foundresult.ToString = "<" Or foundresult.ToString = ">" Then
+ ClassLogger.Add(">> Hot Key received an irregular value.", False)
+ Return "Hotkey konnte nur einen irregulären Wert auswerten."
+ End If
+ If LogErrorsOnly = False Then ClassLogger.Add(" ...fileContents.length: " & fileContents.Length, False)
+ If LogErrorsOnly = False Then ClassLogger.Add(" ...Replace pattern '" & row.Item(2).ToString & "' with '" & foundresult & "'", False)
+ fileContents = fileContents.Replace(row.Item(2).ToString, foundresult)
+ If LogErrorsOnly = False Then ClassLogger.Add(" ...fileContents.length: " & fileContents.Length, False)
+ Else
+ ClassLogger.Add(">> Hot Key could not read any value.", False)
+ Return "Hotkey konnte keinen Wert auswerten - Evtl. ist das konfigurierte Fenster nicht geöffnet?"
+ End If
End If
+
Next
End If
Try
@@ -257,7 +300,7 @@ Public Class ClassHotkey_Windream
ShowWindow(p.MainWindowHandle, 3) ' SW_MAXIMIZE
End If
End If
- ' SetForeGroundWindow(p.MainWindowHandle)
+ ' SetForeGroundWindow( p.MainWindowHandle)
End If
Next p
@@ -280,8 +323,7 @@ Public Class ClassHotkey_Windream
End Function
- Private Declare Function ShowWindow Lib "user32" (ByVal handle As IntPtr, ByVal nCmdShow As Integer) As Integer
- Declare Auto Function SetForeGroundWindow Lib "User32.dll" (ByVal Hwnd As IntPtr) As Integer
+
diff --git a/Global_Indexer/ClassInit.vb b/Global_Indexer/ClassInit.vb
index c832c67..62cff0c 100644
--- a/Global_Indexer/ClassInit.vb
+++ b/Global_Indexer/ClassInit.vb
@@ -23,13 +23,15 @@ Public Class ClassInit
If MyConnectionString <> String.Empty Then
dbResult = ClassDatabase.Init()
Else
+ MsgBox("No Databaseconnection configured. (First Start or Appdata not accessible)" & vbNewLine & "Basic-Config will be loaded.", MsgBoxStyle.Information)
+ ERROR_STATE = "NO DB-CONNECTION"
frmConfig_Basic.ShowDialog()
dbResult = ClassDatabase.Init()
End If
If dbResult = False Then
ERROR_STATE = "FAILED DBCONNECTION"
- MsgBox("Fehler beim Initialisieren der Datenbank. Weitere Informationen finden Sie in der Logdatei.", MsgBoxStyle.Critical)
+ MsgBox("Error in init database. (Connection failed) More information in the logfile.", MsgBoxStyle.Critical)
Return False
Else
Return True
@@ -81,24 +83,29 @@ Public Class ClassInit
CURRENT_USERID = ClassDatabase.Execute_Scalar(sql, MyConnectionString, True)
If IsDBNull(CURRENT_USERID) Then
- ClassLogger.Add(" - User: " & Environment.UserName & " nicht in der Userverwaltung hinterlegt! (DBNull)", False)
+ ClassLogger.Add("User '" & Environment.UserName & "' not configured in Useradministration! (DBNull)", True)
'MsgBox("Achtung: Sie sind nicht in der Userverwaltung hinterlegt." & vbNewLine & "Bitte setzen Sie sich mit dem Systembetreuer in Verbindung!", MsgBoxStyle.Critical, "Achtung:")
'Me.Close()
START_INCOMPLETE = True
- Throw New Exception("Sie sind nicht in der Userverwaltung hinterlegt." & vbNewLine & "Bitte setzen Sie sich mit dem Systembetreuer in Verbindung oder konfigurieren Ihren Usernamen für dieses Modul!")
+ Throw New Exception("You are not configured in the Useradministration." & vbNewLine & "Please contact the system administrator!")
Else
If IsNothing(CURRENT_USERID) Then
- ClassLogger.Add(" - User: " & Environment.UserName & " nicht in der Userverwaltung hinterlegt! (nothing)", False)
+ ClassLogger.Add(" - User: " & Environment.UserName & " ' not configured in Useradministration! (nothing)", False)
START_INCOMPLETE = True
- Throw New Exception("Sie sind nicht in der Userverwaltung hinterlegt." & vbNewLine & "Bitte setzen Sie sich mit dem Systembetreuer in Verbindung oder konfigurieren Ihren Usernamen für dieses Modul!")
+ Throw New Exception("You are not configured in the Useradministration." & vbNewLine & "Please contact the system administrator!")
Else
- sql = "SELECT MODULE_GI FROM TBDD_USER WHERE (LOWER(USERNAME) = LOWER('@user'))"
- sql = sql.Replace("@user", Environment.UserName)
+ sql = "SELECT SHORTNAME FROM TBDD_USER WHERE GUID = " & CURRENT_USERID
+ CURRENT_USER_SHORT = ClassDatabase.Execute_Scalar(sql, MyConnectionString)
+ If IsNothing(CURRENT_USER_SHORT) Or IsDBNull(CURRENT_USER_SHORT) Then
+ CURRENT_USER_SHORT = ""
+ End If
+ sql = String.Format("SELECT MODULE_GI FROM TBDD_USER WHERE GUID = {0}", CURRENT_USERID)
+
If ClassDatabase.Execute_Scalar(sql, MyConnectionString, True) = False Then
ClassLogger.Add(" - User: " & Environment.UserName & " nicht für Modul freigegben!", False)
START_INCOMPLETE = True
'MsgBox("Achtung: Sie sind nicht für die Nutzung dieses Moduls freigeschaltet." & vbNewLine & "Bitte setzen Sie sich mit dem Systembetreuer in Verbindung!", MsgBoxStyle.Critical, "Achtung:")
- Throw New Exception("Sie sind nicht für die Nutzung dieses Moduls freigeschaltet." & vbNewLine & "Bitte setzen Sie sich mit dem Systembetreuer in Verbindung!")
+ Throw New Exception("Your user is not allowed to use this module." & vbNewLine & "Please contact the system administrator!")
'Me.Close()
Else
'Am System anmelden
@@ -126,9 +133,7 @@ Public Class ClassInit
sql = sql.Replace("@user", Environment.UserName)
ClassDatabase.Execute_non_Query(sql)
sql = "DELETE FROM TBDD_USER_MODULE_LOG_IN WHERE USER_ID = " & CURRENT_USERID & " AND UPPER(MODULE) = UPPER('Global-Indexer')"
- If ClassDatabase.Execute_non_Query(sql, True) = True Then
-
- End If
+ ClassDatabase.Execute_non_Query(sql, True)
sql = "INSERT INTO TBDD_USER_MODULE_LOG_IN (USER_ID,MODULE) VALUES (" & CURRENT_USERID & ",'Global-Indexer')"
ClassDatabase.Execute_non_Query(sql)
diff --git a/Global_Indexer/ClassLayout.vb b/Global_Indexer/ClassLayout.vb
index c210af9..28d13b8 100644
--- a/Global_Indexer/ClassLayout.vb
+++ b/Global_Indexer/ClassLayout.vb
@@ -4,8 +4,15 @@ Imports System.IO
Public Class ClassWindowLocation
Public Shared Sub LoadFormLocationSize(ByRef form As Form)
Try
- Dim _path As String
- _path = Path.Combine(Application.UserAppDataPath(), "frm" & form.Name & "-Layout.xml")
+ Dim _path, _pathold As String
+
+ _path = Path.Combine(Application.UserAppDataPath(), form.Name & "-Layout.xml")
+ _pathold = _path.Replace("frm", "frmfrm")
+ If File.Exists(_pathold) Then
+ Dim newfilename = Path.GetFileName(_path)
+ My.Computer.FileSystem.RenameFile(_pathold, newfilename)
+ _path = Path.Combine(Application.UserAppDataPath(), form.Name & "-Layout.xml")
+ End If
Dim layout As ClassLayout = New ClassLayout(_path)
Dim settings As System.Collections.Generic.List(Of ClassSetting)
settings = layout.Load()
@@ -36,13 +43,19 @@ Public Class ClassWindowLocation
If x = 5000 Then
form.WindowState = FormWindowState.Maximized
Else
- If x >= 0 And y >= 0 Then
- form.Location = New Point(x, y)
- End If
- If w > 0 And h > 0 Then
- form.Size = New Size(w, h)
+
+ Dim rect As New Rectangle(x, y, 0, 0)
+ If IsVisibleOnAnyScreen(rect) Then
+ If x >= 0 And y >= 0 Then
+ form.Location = New Point(x, y)
+ End If
+ If w > 0 And h > 0 Then
+ form.Size = New Size(w, h)
+ End If
End If
+
+
End If
Catch notFoundEx As System.IO.FileNotFoundException
@@ -50,12 +63,29 @@ Public Class ClassWindowLocation
MsgBox("Error while loading Window Position!" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
End Try
End Sub
-
+ Private Shared Function IsVisibleOnAnyScreen(rect As Rectangle)
+ Try
+ Dim result As Boolean = False
+ For Each Screen As Screen In Screen.AllScreens
+ If Screen.WorkingArea.IntersectsWith(rect) Then
+ result = True
+ End If
+ Next
+ If result = False Then
+ ClassLogger.Add(">> Saved layout is not fitting to Resolution. Default is loaded.", True)
+ End If
+ Return result
+ Catch ex As Exception
+ ClassLogger.Add("Error in IsVisibleOnAnyScreen: " & ex.Message, True)
+ Return False
+ End Try
+ End Function
+
Public Shared Sub SaveFormLocationSize(ByRef form As Form)
Try
Dim _path As String
- _path = Path.Combine(Application.UserAppDataPath(), "frm" & form.Name & "-Layout.xml")
+ _path = Path.Combine(Application.UserAppDataPath(), form.Name & "-Layout.xml")
Dim layout As ClassLayout = New ClassLayout(_path)
Dim settings As System.Collections.Generic.List(Of ClassSetting) = New System.Collections.Generic.List(Of ClassSetting)
diff --git a/Global_Indexer/Global_Indexer.vbproj b/Global_Indexer/Global_Indexer.vbproj
index 1cd12ba..5933479 100644
--- a/Global_Indexer/Global_Indexer.vbproj
+++ b/Global_Indexer/Global_Indexer.vbproj
@@ -85,14 +85,14 @@
False
- \\dd-sto01\DD-STO01-A2\Projekte\Visual Studio Projekte\Bibliotheken\MSG .NET\Bin\Independentsoft.Msg.dll
+ P:\Visual Studio Projekte\Bibliotheken\MSG .NET\Bin\Independentsoft.Msg.dll
..\..\..\Bibliotheken\DLL\windreamDLL\64bit\Interop.WINDREAMLib.dll
False
- \\dd-sto01\DD-STO01-A2\Projekte\Visual Studio Projekte\Bibliotheken\windream\Interop.WMOTOOLLib.dll
+ P:\Visual Studio Projekte\Bibliotheken\windream\Interop.WMOTOOLLib.dll
True
@@ -295,6 +295,9 @@
AboutBox1.vb
+
+ frmAdministration.vb
+
frmAdministration.vb
@@ -576,6 +579,8 @@
Always
+
+
diff --git a/Global_Indexer/ModuleCURRENT.vb b/Global_Indexer/ModuleCURRENT.vb
index b000455..e9b18c2 100644
--- a/Global_Indexer/ModuleCURRENT.vb
+++ b/Global_Indexer/ModuleCURRENT.vb
@@ -22,6 +22,7 @@
Public CURRENT_USERID
Public CURRENT_USER_IS_ADMIN As Boolean = False
+ Public CURRENT_USER_SHORT
Public UserLoggedin As Integer = 0
Public USER_LANGUAGE As String = "DE"
diff --git a/Global_Indexer/My Project/AssemblyInfo.vb b/Global_Indexer/My Project/AssemblyInfo.vb
index e23aaf7..e9bbf85 100644
--- a/Global_Indexer/My Project/AssemblyInfo.vb
+++ b/Global_Indexer/My Project/AssemblyInfo.vb
@@ -1,4 +1,6 @@
-Imports System
+Imports System.Resources
+
+Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
@@ -15,7 +17,7 @@ Imports System.Runtime.InteropServices
-
+
'Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
@@ -31,5 +33,7 @@ Imports System.Runtime.InteropServices
' übernehmen, indem Sie "*" eingeben:
'
-
+
+
+
\ No newline at end of file
diff --git a/Global_Indexer/My Project/Resources.Designer.vb b/Global_Indexer/My Project/Resources.Designer.vb
index aa17711..4cdf010 100644
--- a/Global_Indexer/My Project/Resources.Designer.vb
+++ b/Global_Indexer/My Project/Resources.Designer.vb
@@ -230,6 +230,26 @@ Namespace My.Resources
End Get
End Property
+ '''
+ ''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
+ '''
+ Friend ReadOnly Property Close_16xLG() As System.Drawing.Bitmap
+ Get
+ Dim obj As Object = ResourceManager.GetObject("Close_16xLG", resourceCulture)
+ Return CType(obj,System.Drawing.Bitmap)
+ End Get
+ End Property
+
+ '''
+ ''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
+ '''
+ Friend ReadOnly Property Close_16xMD() As System.Drawing.Bitmap
+ Get
+ Dim obj As Object = ResourceManager.GetObject("Close_16xMD", resourceCulture)
+ Return CType(obj,System.Drawing.Bitmap)
+ End Get
+ End Property
+
'''
''' Sucht eine lokalisierte Ressource vom Typ System.Drawing.Bitmap.
'''
diff --git a/Global_Indexer/My Project/Resources.resx b/Global_Indexer/My Project/Resources.resx
index 3596450..c13b782 100644
--- a/Global_Indexer/My Project/Resources.resx
+++ b/Global_Indexer/My Project/Resources.resx
@@ -121,9 +121,6 @@
..\Resources\arrow_back_16xMD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\email.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
..\Resources\arrow_Up_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -136,6 +133,9 @@
..\Resources\WindowsForm_817_12x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\DD_Icons_ICO_GLOBIX_128.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\DD_Icons-GLOBIX.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -145,12 +145,21 @@
..\Resources\bell_delete.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\database_save1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\action_add_16xLG1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\Einstellungen6.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\arrow_Forward_16xMD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\refresh_16xMD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\key_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -181,29 +190,20 @@
..\Resources\folder_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\save_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
..\Resources\handdrawn_arrow_right_green.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\database_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
..\Resources\key.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\Save_6530.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
..\Resources\arrow_refresh.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\action_add_16xLG1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\email.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\refresh_16xMD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\database_go.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\add.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -217,18 +217,24 @@
..\Resources\Einstellungen5.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\Excel_25ixel.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\bullet_arrow_top.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\CheckOutforEdit_13187_32x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\database_save1.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\save_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\action_add_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\Shortcut_8169_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
..\Resources\arrow_left.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -250,17 +256,14 @@
..\Resources\Selectallrowsfrom_tableA__294.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\handdrawn_arrow_left_green.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
..\Resources\folder_link.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\refresh_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\Excel_25ixel.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\handdrawn_arrow_left_green.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\delete2.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
@@ -268,13 +271,16 @@
..\Resources\gear_32xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\Shortcut_8169_16x.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\Save_6530.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
..\Resources\database_save.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
-
- ..\Resources\DD_Icons_ICO_GLOBIX_128.ico;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+ ..\Resources\Close_16xLG.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
+
+
+ ..\Resources\Close_16xMD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
\ No newline at end of file
diff --git a/Global_Indexer/My Project/Settings.Designer.vb b/Global_Indexer/My Project/Settings.Designer.vb
index 8914e41..16d651e 100644
--- a/Global_Indexer/My Project/Settings.Designer.vb
+++ b/Global_Indexer/My Project/Settings.Designer.vb
@@ -138,6 +138,18 @@ Namespace My
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
End Class
End Namespace
diff --git a/Global_Indexer/My Project/Settings.settings b/Global_Indexer/My Project/Settings.settings
index 2dbe1b8..8db8297 100644
--- a/Global_Indexer/My Project/Settings.settings
+++ b/Global_Indexer/My Project/Settings.settings
@@ -28,5 +28,8 @@
False
+
+ False
+
\ No newline at end of file
diff --git a/Global_Indexer/My Project/licenses.licx b/Global_Indexer/My Project/licenses.licx
index 245de9b..395f626 100644
--- a/Global_Indexer/My Project/licenses.licx
+++ b/Global_Indexer/My Project/licenses.licx
@@ -1,2 +1,3 @@
-DevExpress.XtraPdfViewer.PdfViewer, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+DevExpress.XtraPdfViewer.PdfViewer, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
diff --git a/Global_Indexer/MyDataset.Designer.vb b/Global_Indexer/MyDataset.Designer.vb
index 3b78961..734face 100644
--- a/Global_Indexer/MyDataset.Designer.vb
+++ b/Global_Indexer/MyDataset.Designer.vb
@@ -1,7 +1,7 @@
'------------------------------------------------------------------------------
'
' Dieser Code wurde von einem Tool generiert.
-' Laufzeitversion:4.0.30319.34014
+' Laufzeitversion:4.0.30319.34209
'
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
' der Code erneut generiert wird.
@@ -1331,6 +1331,10 @@ Partial Public Class MyDataset
Private columnCHANGED_WHEN As Global.System.Data.DataColumn
+ Private columnSHORTNAME As Global.System.Data.DataColumn
+
+ Private columnLANGUAGE As Global.System.Data.DataColumn
+
_
Public Sub New()
@@ -1478,6 +1482,22 @@ Partial Public Class MyDataset
End Get
End Property
+ _
+ Public ReadOnly Property SHORTNAMEColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnSHORTNAME
+ End Get
+ End Property
+
+ _
+ Public ReadOnly Property LANGUAGEColumn() As Global.System.Data.DataColumn
+ Get
+ Return Me.columnLANGUAGE
+ End Get
+ End Property
+
_
@@ -1515,9 +1535,9 @@ Partial Public Class MyDataset
_
- Public Overloads Function AddTBDD_USERRow(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal LOGGED_IN As Boolean, ByVal LOGGED_WHERE As String, ByVal LOG_IN_WHEN As Date, ByVal LOG_OUT_WHEN As Date, ByVal GI_ADMIN As Boolean, ByVal ADDED_WHO As String, ByVal ADDED_WHEN As Date, ByVal CHANGED_WHO As String, ByVal CHANGED_WHEN As Date) As TBDD_USERRow
+ Public Overloads Function AddTBDD_USERRow(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal LOGGED_IN As Boolean, ByVal LOGGED_WHERE As String, ByVal LOG_IN_WHEN As Date, ByVal LOG_OUT_WHEN As Date, ByVal GI_ADMIN As Boolean, ByVal ADDED_WHO As String, ByVal ADDED_WHEN As Date, ByVal CHANGED_WHO As String, ByVal CHANGED_WHEN As Date, ByVal SHORTNAME As String, ByVal LANGUAGE As String) As TBDD_USERRow
Dim rowTBDD_USERRow As TBDD_USERRow = CType(Me.NewRow,TBDD_USERRow)
- Dim columnValuesArray() As Object = New Object() {Nothing, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN}
+ Dim columnValuesArray() As Object = New Object() {Nothing, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, SHORTNAME, LANGUAGE}
rowTBDD_USERRow.ItemArray = columnValuesArray
Me.Rows.Add(rowTBDD_USERRow)
Return rowTBDD_USERRow
@@ -1560,6 +1580,8 @@ Partial Public Class MyDataset
Me.columnADDED_WHEN = MyBase.Columns("ADDED_WHEN")
Me.columnCHANGED_WHO = MyBase.Columns("CHANGED_WHO")
Me.columnCHANGED_WHEN = MyBase.Columns("CHANGED_WHEN")
+ Me.columnSHORTNAME = MyBase.Columns("SHORTNAME")
+ Me.columnLANGUAGE = MyBase.Columns("LANGUAGE")
End Sub
_
Public Property ADDED_WHO() As String
Get
- Try
- Return CType(Me(Me.tableTBDD_USER.ADDED_WHOColumn),String)
- Catch e As Global.System.InvalidCastException
- Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte ADDED_WHO in Tabelle TBDD_USER ist DBNull.", e)
- End Try
+ Return CType(Me(Me.tableTBDD_USER.ADDED_WHOColumn),String)
End Get
Set
Me(Me.tableTBDD_USER.ADDED_WHOColumn) = value
@@ -12300,6 +12326,32 @@ Partial Public Class MyDataset
End Set
End Property
+ _
+ Public Property SHORTNAME() As String
+ Get
+ Try
+ Return CType(Me(Me.tableTBDD_USER.SHORTNAMEColumn),String)
+ Catch e As Global.System.InvalidCastException
+ Throw New Global.System.Data.StrongTypingException("Der Wert für Spalte SHORTNAME in Tabelle TBDD_USER ist DBNull.", e)
+ End Try
+ End Get
+ Set
+ Me(Me.tableTBDD_USER.SHORTNAMEColumn) = value
+ End Set
+ End Property
+
+ _
+ Public Property LANGUAGE() As String
+ Get
+ Return CType(Me(Me.tableTBDD_USER.LANGUAGEColumn),String)
+ End Get
+ Set
+ Me(Me.tableTBDD_USER.LANGUAGEColumn) = value
+ End Set
+ End Property
+
_
Public Function IsPRENAMENull() As Boolean
@@ -12372,18 +12424,6 @@ Partial Public Class MyDataset
Me(Me.tableTBDD_USER.LOG_OUT_WHENColumn) = Global.System.Convert.DBNull
End Sub
- _
- Public Function IsADDED_WHONull() As Boolean
- Return Me.IsNull(Me.tableTBDD_USER.ADDED_WHOColumn)
- End Function
-
- _
- Public Sub SetADDED_WHONull()
- Me(Me.tableTBDD_USER.ADDED_WHOColumn) = Global.System.Convert.DBNull
- End Sub
-
_
Public Function IsADDED_WHENNull() As Boolean
@@ -12420,6 +12460,18 @@ Partial Public Class MyDataset
Me(Me.tableTBDD_USER.CHANGED_WHENColumn) = Global.System.Convert.DBNull
End Sub
+ _
+ Public Function IsSHORTNAMENull() As Boolean
+ Return Me.IsNull(Me.tableTBDD_USER.SHORTNAMEColumn)
+ End Function
+
+ _
+ Public Sub SetSHORTNAMENull()
+ Me(Me.tableTBDD_USER.SHORTNAMEColumn) = Global.System.Convert.DBNull
+ End Sub
+
_
Public Function GetTBDD_GROUPS_USERRows() As TBDD_GROUPS_USERRow()
@@ -18961,6 +19013,8 @@ Namespace MyDatasetTableAdapters
tableMapping.ColumnMappings.Add("ADDED_WHEN", "ADDED_WHEN")
tableMapping.ColumnMappings.Add("CHANGED_WHO", "CHANGED_WHO")
tableMapping.ColumnMappings.Add("CHANGED_WHEN", "CHANGED_WHEN")
+ tableMapping.ColumnMappings.Add("SHORTNAME", "SHORTNAME")
+ tableMapping.ColumnMappings.Add("LANGUAGE", "LANGUAGE")
Me._adapter.TableMappings.Add(tableMapping)
Me._adapter.DeleteCommand = New Global.System.Data.SqlClient.SqlCommand()
Me._adapter.DeleteCommand.Connection = Me.Connection
@@ -18970,10 +19024,11 @@ Namespace MyDatasetTableAdapters
Me._adapter.InsertCommand = New Global.System.Data.SqlClient.SqlCommand()
Me._adapter.InsertCommand.Connection = Me.Connection
Me._adapter.InsertCommand.CommandText = "INSERT INTO TBDD_USER"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" (PRENAME, NAME, USERNAME, EMAIL, "& _
- "GI_ADMIN, ADDED_WHO, MODULE_GI)"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"VALUES (@PRENAME,@NAME,@USERNAME,@EMAIL,"& _
- "@GI_ADMIN,@ADDED_WHO, 1); "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED"& _
- "_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, C"& _
- "HANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = SCOPE_IDENTITY())"
+ "GI_ADMIN, ADDED_WHO, MODULE_GI, LANGUAGE, SHORTNAME)"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"VALUES (@PRENAME,@N"& _
+ "AME,@USERNAME,@EMAIL,@GI_ADMIN,@ADDED_WHO, 1,@LANGUAGE,@SHORTNAME); "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT G"& _
+ "UID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_O"& _
+ "UT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_US"& _
+ "ER WHERE (GUID = SCOPE_IDENTITY())"
Me._adapter.InsertCommand.CommandType = Global.System.Data.CommandType.Text
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@PRENAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "PRENAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@NAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "NAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
@@ -18981,13 +19036,16 @@ Namespace MyDatasetTableAdapters
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@EMAIL", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "EMAIL", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GI_ADMIN", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "GI_ADMIN", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ADDED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "ADDED_WHO", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAGE", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SHORTNAME", Global.System.Data.SqlDbType.VarChar, 30, Global.System.Data.ParameterDirection.Input, 0, 0, "SHORTNAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.UpdateCommand = New Global.System.Data.SqlClient.SqlCommand()
Me._adapter.UpdateCommand.Connection = Me.Connection
Me._adapter.UpdateCommand.CommandText = "UPDATE TBDD_USER"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SET PRENAME = @PRENAME, NAME = @NAME, USER"& _
"NAME = @USERNAME, EMAIL = @EMAIL, GI_ADMIN = @GI_ADMIN, CHANGED_WHO = @CHANGED_W"& _
- "HO"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (GUID = @Original_GUID); "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT GUID, PRENAME, NAME, USERNAM"& _
- "E, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WH"& _
- "O, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = @GUID)"
+ "HO, LANGUAGE = @LANGUAGE, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" SHORTNAME = @SHORTNAME"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHE"& _
+ "RE (GUID = @Original_GUID); "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT GUID, PRENAME, NAME, USERNAME, EMA"& _
+ "IL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADD"& _
+ "ED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = @GUID)"
Me._adapter.UpdateCommand.CommandType = Global.System.Data.CommandType.Text
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@PRENAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "PRENAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@NAME", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "NAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
@@ -18995,6 +19053,8 @@ Namespace MyDatasetTableAdapters
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@EMAIL", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "EMAIL", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GI_ADMIN", Global.System.Data.SqlDbType.Bit, 1, Global.System.Data.ParameterDirection.Input, 0, 0, "GI_ADMIN", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHO", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHO", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@LANGUAGE", Global.System.Data.SqlDbType.VarChar, 5, Global.System.Data.ParameterDirection.Input, 0, 0, "LANGUAGE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
+ Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SHORTNAME", Global.System.Data.SqlDbType.VarChar, 30, Global.System.Data.ParameterDirection.Input, 0, 0, "SHORTNAME", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@Original_GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@GUID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "GUID", Global.System.Data.DataRowVersion.Original, false, Nothing, "", "", ""))
End Sub
@@ -19014,13 +19074,14 @@ Namespace MyDatasetTableAdapters
Me._commandCollection(0).Connection = Me.Connection
Me._commandCollection(0).CommandText = "SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_"& _
"IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHE"& _
- "N"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBDD_USER"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (MODULE_GI = 1)"
+ "N, SHORTNAME, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" LANGUAGE"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBDD_USER"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WH"& _
+ "ERE (MODULE_GI = 1)"
Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text
Me._commandCollection(1) = New Global.System.Data.SqlClient.SqlCommand()
Me._commandCollection(1).Connection = Me.Connection
Me._commandCollection(1).CommandText = "SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_"& _
"IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHE"& _
- "N"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBDD_USER"
+ "N, LANGUAGE, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" SHORTNAME"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBDD_USER"
Me._commandCollection(1).CommandType = Global.System.Data.CommandType.Text
End Sub
@@ -19125,7 +19186,7 @@ Namespace MyDatasetTableAdapters
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.Insert, true)> _
- Public Overloads Overridable Function Insert(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal GI_ADMIN As Boolean, ByVal ADDED_WHO As String) As Integer
+ Public Overloads Overridable Function Insert(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal GI_ADMIN As Boolean, ByVal ADDED_WHO As String, ByVal LANGUAGE As String, ByVal SHORTNAME As String) As Integer
If (PRENAME Is Nothing) Then
Me.Adapter.InsertCommand.Parameters(0).Value = Global.System.DBNull.Value
Else
@@ -19148,10 +19209,20 @@ Namespace MyDatasetTableAdapters
End If
Me.Adapter.InsertCommand.Parameters(4).Value = CType(GI_ADMIN,Boolean)
If (ADDED_WHO Is Nothing) Then
- Me.Adapter.InsertCommand.Parameters(5).Value = Global.System.DBNull.Value
+ Throw New Global.System.ArgumentNullException("ADDED_WHO")
Else
Me.Adapter.InsertCommand.Parameters(5).Value = CType(ADDED_WHO,String)
End If
+ If (LANGUAGE Is Nothing) Then
+ Throw New Global.System.ArgumentNullException("LANGUAGE")
+ Else
+ Me.Adapter.InsertCommand.Parameters(6).Value = CType(LANGUAGE,String)
+ End If
+ If (SHORTNAME Is Nothing) Then
+ Me.Adapter.InsertCommand.Parameters(7).Value = Global.System.DBNull.Value
+ Else
+ Me.Adapter.InsertCommand.Parameters(7).Value = CType(SHORTNAME,String)
+ End If
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.InsertCommand.Connection.State
If ((Me.Adapter.InsertCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
<> Global.System.Data.ConnectionState.Open) Then
@@ -19171,7 +19242,7 @@ Namespace MyDatasetTableAdapters
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0"), _
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.Update, true)> _
- Public Overloads Overridable Function Update(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal GI_ADMIN As Boolean, ByVal CHANGED_WHO As String, ByVal Original_GUID As Integer, ByVal GUID As Integer) As Integer
+ Public Overloads Overridable Function Update(ByVal PRENAME As String, ByVal NAME As String, ByVal USERNAME As String, ByVal EMAIL As String, ByVal GI_ADMIN As Boolean, ByVal CHANGED_WHO As String, ByVal LANGUAGE As String, ByVal SHORTNAME As String, ByVal Original_GUID As Integer, ByVal GUID As Integer) As Integer
If (PRENAME Is Nothing) Then
Me.Adapter.UpdateCommand.Parameters(0).Value = Global.System.DBNull.Value
Else
@@ -19198,8 +19269,18 @@ Namespace MyDatasetTableAdapters
Else
Me.Adapter.UpdateCommand.Parameters(5).Value = CType(CHANGED_WHO,String)
End If
- Me.Adapter.UpdateCommand.Parameters(6).Value = CType(Original_GUID,Integer)
- Me.Adapter.UpdateCommand.Parameters(7).Value = CType(GUID,Integer)
+ If (LANGUAGE Is Nothing) Then
+ Throw New Global.System.ArgumentNullException("LANGUAGE")
+ Else
+ Me.Adapter.UpdateCommand.Parameters(6).Value = CType(LANGUAGE,String)
+ End If
+ If (SHORTNAME Is Nothing) Then
+ Me.Adapter.UpdateCommand.Parameters(7).Value = Global.System.DBNull.Value
+ Else
+ Me.Adapter.UpdateCommand.Parameters(7).Value = CType(SHORTNAME,String)
+ End If
+ Me.Adapter.UpdateCommand.Parameters(8).Value = CType(Original_GUID,Integer)
+ Me.Adapter.UpdateCommand.Parameters(9).Value = CType(GUID,Integer)
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.UpdateCommand.Connection.State
If ((Me.Adapter.UpdateCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
<> Global.System.Data.ConnectionState.Open) Then
diff --git a/Global_Indexer/MyDataset.xsc b/Global_Indexer/MyDataset.xsc
index c904bdf..551d5be 100644
--- a/Global_Indexer/MyDataset.xsc
+++ b/Global_Indexer/MyDataset.xsc
@@ -9,24 +9,39 @@
-
+
+
-
+
+
-
+
+
-
+
+
-
+
+
-
+
+
-
+
+
-
+
+
+
+
+
+
+
+
+
diff --git a/Global_Indexer/MyDataset.xsd b/Global_Indexer/MyDataset.xsd
index f993208..afa2eb7 100644
--- a/Global_Indexer/MyDataset.xsd
+++ b/Global_Indexer/MyDataset.xsd
@@ -11,19 +11,19 @@
-
+
DELETE FROM TBDD_USER
WHERE (GUID = @Original_GUID)
-
+
INSERT INTO TBDD_USER
- (PRENAME, NAME, USERNAME, EMAIL, GI_ADMIN, ADDED_WHO, MODULE_GI)
-VALUES (@PRENAME,@NAME,@USERNAME,@EMAIL,@GI_ADMIN,@ADDED_WHO, 1);
+ (PRENAME, NAME, USERNAME, EMAIL, GI_ADMIN, ADDED_WHO, MODULE_GI, LANGUAGE, SHORTNAME)
+VALUES (@PRENAME,@NAME,@USERNAME,@EMAIL,@GI_ADMIN,@ADDED_WHO, 1,@LANGUAGE,@SHORTNAME);
SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = SCOPE_IDENTITY())
@@ -31,13 +31,16 @@ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHE
-
+
+
+
-
- SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
+
+ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, SHORTNAME,
+ LANGUAGE
FROM TBDD_USER
WHERE (MODULE_GI = 1)
@@ -46,8 +49,9 @@ WHERE (MODULE_GI = 1)
UPDATE TBDD_USER
-SET PRENAME = @PRENAME, NAME = @NAME, USERNAME = @USERNAME, EMAIL = @EMAIL, GI_ADMIN = @GI_ADMIN, CHANGED_WHO = @CHANGED_WHO
-WHERE (GUID = @Original_GUID);
+SET PRENAME = @PRENAME, NAME = @NAME, USERNAME = @USERNAME, EMAIL = @EMAIL, GI_ADMIN = @GI_ADMIN, CHANGED_WHO = @CHANGED_WHO, LANGUAGE = @LANGUAGE,
+ SHORTNAME = @SHORTNAME
+WHERE (GUID = @Original_GUID);
SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_USER WHERE (GUID = @GUID)
@@ -56,6 +60,8 @@ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHE
+
+
@@ -78,12 +84,15 @@ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHE
+
+
- SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
+ SELECT GUID, PRENAME, NAME, USERNAME, EMAIL, LOGGED_IN, LOGGED_WHERE, LOG_IN_WHEN, LOG_OUT_WHEN, GI_ADMIN, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN, LANGUAGE,
+ SHORTNAME
FROM TBDD_USER
@@ -1699,7 +1708,7 @@ ORDER BY GUID DESC
-
+
@@ -1742,7 +1751,7 @@ ORDER BY GUID DESC
-
+
@@ -1758,10 +1767,24 @@ ORDER BY GUID DESC
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
+
@@ -1837,7 +1860,7 @@ ORDER BY GUID DESC
-
+
@@ -1874,7 +1897,7 @@ ORDER BY GUID DESC
-
+
@@ -1888,7 +1911,7 @@ ORDER BY GUID DESC
-
+
@@ -1902,7 +1925,7 @@ ORDER BY GUID DESC
-
+
@@ -1980,7 +2003,7 @@ ORDER BY GUID DESC
-
+
@@ -2053,7 +2076,7 @@ ORDER BY GUID DESC
-
+
@@ -2165,7 +2188,7 @@ ORDER BY GUID DESC
-
+
@@ -2261,7 +2284,7 @@ ORDER BY GUID DESC
-
+
@@ -2316,7 +2339,7 @@ ORDER BY GUID DESC
-
+
@@ -2324,7 +2347,7 @@ ORDER BY GUID DESC
-
+
@@ -2374,7 +2397,7 @@ ORDER BY GUID DESC
-
+
@@ -2446,7 +2469,7 @@ ORDER BY GUID DESC
-
+
@@ -2527,7 +2550,7 @@ ORDER BY GUID DESC
-
+
@@ -2541,7 +2564,7 @@ ORDER BY GUID DESC
-
+
@@ -2550,7 +2573,7 @@ ORDER BY GUID DESC
-
+
@@ -2580,7 +2603,7 @@ ORDER BY GUID DESC
-
+
@@ -2605,7 +2628,7 @@ ORDER BY GUID DESC
-
+
@@ -2644,7 +2667,7 @@ ORDER BY GUID DESC
-
+
@@ -2676,7 +2699,7 @@ ORDER BY GUID DESC
-
+
@@ -2748,7 +2771,7 @@ ORDER BY GUID DESC
-
+
@@ -2787,7 +2810,7 @@ ORDER BY GUID DESC
-
+
@@ -2801,7 +2824,7 @@ ORDER BY GUID DESC
-
+
@@ -2847,7 +2870,7 @@ ORDER BY GUID DESC
-
+
@@ -2907,7 +2930,7 @@ ORDER BY GUID DESC
-
+
@@ -2939,7 +2962,7 @@ ORDER BY GUID DESC
-
+
@@ -2977,7 +3000,7 @@ ORDER BY GUID DESC
-
+
@@ -3108,21 +3131,21 @@ ORDER BY GUID DESC
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Global_Indexer/Resources/Close_16xLG.png b/Global_Indexer/Resources/Close_16xLG.png
new file mode 100644
index 0000000..a9ae49f
Binary files /dev/null and b/Global_Indexer/Resources/Close_16xLG.png differ
diff --git a/Global_Indexer/Resources/Close_16xMD.png b/Global_Indexer/Resources/Close_16xMD.png
new file mode 100644
index 0000000..c9a30bd
Binary files /dev/null and b/Global_Indexer/Resources/Close_16xMD.png differ
diff --git a/Global_Indexer/frmAdministration.Designer.vb b/Global_Indexer/frmAdministration.Designer.vb
index 31bedaa..64ca74b 100644
--- a/Global_Indexer/frmAdministration.Designer.vb
+++ b/Global_Indexer/frmAdministration.Designer.vb
@@ -24,6 +24,7 @@ Partial Class frmAdministration
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim GUIDLabel As System.Windows.Forms.Label
+ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAdministration))
Dim BEZEICHNUNGLabel As System.Windows.Forms.Label
Dim EINGANGSART_IDLabel As System.Windows.Forms.Label
Dim KURZNAMELabel As System.Windows.Forms.Label
@@ -93,7 +94,8 @@ Partial Class frmAdministration
Dim SEQUENCELabel3 As System.Windows.Forms.Label
Dim VARIANTLabel As System.Windows.Forms.Label
Dim Label9 As System.Windows.Forms.Label
- Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAdministration))
+ Dim LANGUAGELabel As System.Windows.Forms.Label
+ Dim SHORTNAMELabel As System.Windows.Forms.Label
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
Me.XtraTabControl1 = New DevExpress.XtraTab.XtraTabControl()
Me.XtraTabPage1 = New DevExpress.XtraTab.XtraTabPage()
@@ -386,6 +388,8 @@ Partial Class frmAdministration
Me.TBDD_GROUPS_USERBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.TBDD_GROUPS_USERTableAdapter = New Global_Indexer.MyDatasetTableAdapters.TBDD_GROUPS_USERTableAdapter()
Me.VWGI_DOCTYPE_GROUPTableAdapter = New Global_Indexer.MyDatasetTableAdapters.VWGI_DOCTYPE_GROUPTableAdapter()
+ Me.LANGUAGEComboBox = New System.Windows.Forms.ComboBox()
+ Me.SHORTNAMETextBox = New System.Windows.Forms.TextBox()
GUIDLabel = New System.Windows.Forms.Label()
BEZEICHNUNGLabel = New System.Windows.Forms.Label()
EINGANGSART_IDLabel = New System.Windows.Forms.Label()
@@ -456,6 +460,8 @@ Partial Class frmAdministration
SEQUENCELabel3 = New System.Windows.Forms.Label()
VARIANTLabel = New System.Windows.Forms.Label()
Label9 = New System.Windows.Forms.Label()
+ LANGUAGELabel = New System.Windows.Forms.Label()
+ SHORTNAMELabel = New System.Windows.Forms.Label()
CType(Me.XtraTabControl1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.XtraTabControl1.SuspendLayout()
Me.XtraTabPage1.SuspendLayout()
@@ -511,717 +517,374 @@ Partial Class frmAdministration
'
'GUIDLabel
'
- GUIDLabel.AutoSize = True
- GUIDLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel.Location = New System.Drawing.Point(263, 28)
+ resources.ApplyResources(GUIDLabel, "GUIDLabel")
GUIDLabel.Name = "GUIDLabel"
- GUIDLabel.Size = New System.Drawing.Size(22, 15)
- GUIDLabel.TabIndex = 0
- GUIDLabel.Text = "ID:"
'
'BEZEICHNUNGLabel
'
- BEZEICHNUNGLabel.AutoSize = True
- BEZEICHNUNGLabel.Location = New System.Drawing.Point(411, 29)
+ resources.ApplyResources(BEZEICHNUNGLabel, "BEZEICHNUNGLabel")
BEZEICHNUNGLabel.Name = "BEZEICHNUNGLabel"
- BEZEICHNUNGLabel.Size = New System.Drawing.Size(71, 13)
- BEZEICHNUNGLabel.TabIndex = 2
- BEZEICHNUNGLabel.Text = "Bezeichnung:"
'
'EINGANGSART_IDLabel
'
- EINGANGSART_IDLabel.AutoSize = True
- EINGANGSART_IDLabel.Location = New System.Drawing.Point(706, 28)
+ resources.ApplyResources(EINGANGSART_IDLabel, "EINGANGSART_IDLabel")
EINGANGSART_IDLabel.Name = "EINGANGSART_IDLabel"
- EINGANGSART_IDLabel.Size = New System.Drawing.Size(68, 13)
- EINGANGSART_IDLabel.TabIndex = 4
- EINGANGSART_IDLabel.Text = "Eingangsart:"
'
'KURZNAMELabel
'
- KURZNAMELabel.AutoSize = True
- KURZNAMELabel.Location = New System.Drawing.Point(976, 28)
+ resources.ApplyResources(KURZNAMELabel, "KURZNAMELabel")
KURZNAMELabel.Name = "KURZNAMELabel"
- KURZNAMELabel.Size = New System.Drawing.Size(58, 13)
- KURZNAMELabel.TabIndex = 6
- KURZNAMELabel.Text = "Kurzname:"
'
'ZIEL_PFADLabel
'
- ZIEL_PFADLabel.AutoSize = True
- ZIEL_PFADLabel.Location = New System.Drawing.Point(263, 120)
+ resources.ApplyResources(ZIEL_PFADLabel, "ZIEL_PFADLabel")
ZIEL_PFADLabel.Name = "ZIEL_PFADLabel"
- ZIEL_PFADLabel.Size = New System.Drawing.Size(49, 13)
- ZIEL_PFADLabel.TabIndex = 8
- ZIEL_PFADLabel.Text = "Zielpfad:"
'
'BESCHREIBUNGLabel
'
- BESCHREIBUNGLabel.AutoSize = True
- BESCHREIBUNGLabel.Location = New System.Drawing.Point(264, 160)
+ resources.ApplyResources(BESCHREIBUNGLabel, "BESCHREIBUNGLabel")
BESCHREIBUNGLabel.Name = "BESCHREIBUNGLabel"
- BESCHREIBUNGLabel.Size = New System.Drawing.Size(75, 13)
- BESCHREIBUNGLabel.TabIndex = 10
- BESCHREIBUNGLabel.Text = "Beschreibung:"
'
'NAMENKONVENTIONLabel
'
- NAMENKONVENTIONLabel.AutoSize = True
- NAMENKONVENTIONLabel.Location = New System.Drawing.Point(263, 200)
+ resources.ApplyResources(NAMENKONVENTIONLabel, "NAMENKONVENTIONLabel")
NAMENKONVENTIONLabel.Name = "NAMENKONVENTIONLabel"
- NAMENKONVENTIONLabel.Size = New System.Drawing.Size(97, 13)
- NAMENKONVENTIONLabel.TabIndex = 14
- NAMENKONVENTIONLabel.Text = "Namenkonvention:"
'
'ERSTELLTWERLabel
'
- ERSTELLTWERLabel.AutoSize = True
- ERSTELLTWERLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ERSTELLTWERLabel.Location = New System.Drawing.Point(265, 244)
+ resources.ApplyResources(ERSTELLTWERLabel, "ERSTELLTWERLabel")
ERSTELLTWERLabel.Name = "ERSTELLTWERLabel"
- ERSTELLTWERLabel.Size = New System.Drawing.Size(67, 15)
- ERSTELLTWERLabel.TabIndex = 16
- ERSTELLTWERLabel.Text = "Erstellt wer:"
'
'ERSTELLTWANNLabel
'
- ERSTELLTWANNLabel.AutoSize = True
- ERSTELLTWANNLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ERSTELLTWANNLabel.Location = New System.Drawing.Point(426, 244)
+ resources.ApplyResources(ERSTELLTWANNLabel, "ERSTELLTWANNLabel")
ERSTELLTWANNLabel.Name = "ERSTELLTWANNLabel"
- ERSTELLTWANNLabel.Size = New System.Drawing.Size(78, 15)
- ERSTELLTWANNLabel.TabIndex = 18
- ERSTELLTWANNLabel.Text = "Erstellt wann:"
'
'GEANDERTWERLabel
'
- GEANDERTWERLabel.AutoSize = True
- GEANDERTWERLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GEANDERTWERLabel.Location = New System.Drawing.Point(589, 244)
+ resources.ApplyResources(GEANDERTWERLabel, "GEANDERTWERLabel")
GEANDERTWERLabel.Name = "GEANDERTWERLabel"
- GEANDERTWERLabel.Size = New System.Drawing.Size(81, 15)
- GEANDERTWERLabel.TabIndex = 20
- GEANDERTWERLabel.Text = "Geändert wer:"
'
'GEAENDERTWANNLabel
'
- GEAENDERTWANNLabel.AutoSize = True
- GEAENDERTWANNLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GEAENDERTWANNLabel.Location = New System.Drawing.Point(759, 244)
+ resources.ApplyResources(GEAENDERTWANNLabel, "GEAENDERTWANNLabel")
GEAENDERTWANNLabel.Name = "GEAENDERTWANNLabel"
- GEAENDERTWANNLabel.Size = New System.Drawing.Size(92, 15)
- GEAENDERTWANNLabel.TabIndex = 22
- GEAENDERTWANNLabel.Text = "Geändert wann:"
'
'GUIDLabel1
'
- GUIDLabel1.AutoSize = True
- GUIDLabel1.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel1.Location = New System.Drawing.Point(6, 30)
+ resources.ApplyResources(GUIDLabel1, "GUIDLabel1")
GUIDLabel1.Name = "GUIDLabel1"
- GUIDLabel1.Size = New System.Drawing.Size(22, 15)
- GUIDLabel1.TabIndex = 0
- GUIDLabel1.Text = "ID:"
'
'NAMELabel
'
- NAMELabel.AutoSize = True
- NAMELabel.Location = New System.Drawing.Point(159, 30)
+ resources.ApplyResources(NAMELabel, "NAMELabel")
NAMELabel.Name = "NAMELabel"
- NAMELabel.Size = New System.Drawing.Size(71, 13)
- NAMELabel.TabIndex = 3
- NAMELabel.Text = "Bezeichnung:"
'
'COMMENTLabel
'
- COMMENTLabel.AutoSize = True
- COMMENTLabel.Location = New System.Drawing.Point(159, 74)
+ resources.ApplyResources(COMMENTLabel, "COMMENTLabel")
COMMENTLabel.Name = "COMMENTLabel"
- COMMENTLabel.Size = New System.Drawing.Size(47, 13)
- COMMENTLabel.TabIndex = 7
- COMMENTLabel.Text = "Hinweis:"
'
'DATATYPELabel
'
- DATATYPELabel.AutoSize = True
- DATATYPELabel.Location = New System.Drawing.Point(159, 118)
+ resources.ApplyResources(DATATYPELabel, "DATATYPELabel")
DATATYPELabel.Name = "DATATYPELabel"
- DATATYPELabel.Size = New System.Drawing.Size(56, 13)
- DATATYPELabel.TabIndex = 9
- DATATYPELabel.Text = "Datentyp:"
'
'DEFAULT_VALUELabel
'
- DEFAULT_VALUELabel.AutoSize = True
- DEFAULT_VALUELabel.Location = New System.Drawing.Point(159, 162)
+ resources.ApplyResources(DEFAULT_VALUELabel, "DEFAULT_VALUELabel")
DEFAULT_VALUELabel.Name = "DEFAULT_VALUELabel"
- DEFAULT_VALUELabel.Size = New System.Drawing.Size(74, 13)
- DEFAULT_VALUELabel.TabIndex = 12
- DEFAULT_VALUELabel.Text = "Default-Wert:"
'
'SEQUENCELabel
'
- SEQUENCELabel.AutoSize = True
- SEQUENCELabel.Location = New System.Drawing.Point(674, 30)
+ resources.ApplyResources(SEQUENCELabel, "SEQUENCELabel")
SEQUENCELabel.Name = "SEQUENCELabel"
- SEQUENCELabel.Size = New System.Drawing.Size(68, 13)
- SEQUENCELabel.TabIndex = 16
- SEQUENCELabel.Text = "Reihenfolge:"
'
'ADDED_WHOLabel
'
- ADDED_WHOLabel.AutoSize = True
- ADDED_WHOLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHOLabel.Location = New System.Drawing.Point(159, 207)
+ resources.ApplyResources(ADDED_WHOLabel, "ADDED_WHOLabel")
ADDED_WHOLabel.Name = "ADDED_WHOLabel"
- ADDED_WHOLabel.Size = New System.Drawing.Size(67, 15)
- ADDED_WHOLabel.TabIndex = 19
- ADDED_WHOLabel.Text = "Erstellt wer:"
'
'ADDED_WHENLabel
'
- ADDED_WHENLabel.AutoSize = True
- ADDED_WHENLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHENLabel.Location = New System.Drawing.Point(321, 207)
+ resources.ApplyResources(ADDED_WHENLabel, "ADDED_WHENLabel")
ADDED_WHENLabel.Name = "ADDED_WHENLabel"
- ADDED_WHENLabel.Size = New System.Drawing.Size(78, 15)
- ADDED_WHENLabel.TabIndex = 21
- ADDED_WHENLabel.Text = "Erstellt wann:"
'
'CHANGED_WHOLabel
'
- CHANGED_WHOLabel.AutoSize = True
- CHANGED_WHOLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHOLabel.Location = New System.Drawing.Point(504, 207)
+ resources.ApplyResources(CHANGED_WHOLabel, "CHANGED_WHOLabel")
CHANGED_WHOLabel.Name = "CHANGED_WHOLabel"
- CHANGED_WHOLabel.Size = New System.Drawing.Size(81, 15)
- CHANGED_WHOLabel.TabIndex = 23
- CHANGED_WHOLabel.Text = "Geändert wer:"
'
'CHANGED_WHENLabel
'
- CHANGED_WHENLabel.AutoSize = True
- CHANGED_WHENLabel.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHENLabel.Location = New System.Drawing.Point(674, 207)
+ resources.ApplyResources(CHANGED_WHENLabel, "CHANGED_WHENLabel")
CHANGED_WHENLabel.Name = "CHANGED_WHENLabel"
- CHANGED_WHENLabel.Size = New System.Drawing.Size(92, 15)
- CHANGED_WHENLabel.TabIndex = 25
- CHANGED_WHENLabel.Text = "Geändert wann:"
'
'GUIDLabel2
'
- GUIDLabel2.AutoSize = True
- GUIDLabel2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel2.Location = New System.Drawing.Point(11, 35)
+ resources.ApplyResources(GUIDLabel2, "GUIDLabel2")
GUIDLabel2.Name = "GUIDLabel2"
- GUIDLabel2.Size = New System.Drawing.Size(20, 13)
- GUIDLabel2.TabIndex = 3
- GUIDLabel2.Text = "ID:"
'
'PRENAMELabel
'
- PRENAMELabel.AutoSize = True
- PRENAMELabel.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- PRENAMELabel.Location = New System.Drawing.Point(87, 35)
+ resources.ApplyResources(PRENAMELabel, "PRENAMELabel")
PRENAMELabel.Name = "PRENAMELabel"
- PRENAMELabel.Size = New System.Drawing.Size(56, 13)
- PRENAMELabel.TabIndex = 5
- PRENAMELabel.Text = "Vorname:"
'
'NAMELabel1
'
- NAMELabel1.AutoSize = True
- NAMELabel1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- NAMELabel1.Location = New System.Drawing.Point(296, 35)
+ resources.ApplyResources(NAMELabel1, "NAMELabel1")
NAMELabel1.Name = "NAMELabel1"
- NAMELabel1.Size = New System.Drawing.Size(64, 13)
- NAMELabel1.TabIndex = 7
- NAMELabel1.Text = "Nachname:"
'
'USERNAMELabel
'
- USERNAMELabel.AutoSize = True
- USERNAMELabel.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- USERNAMELabel.Location = New System.Drawing.Point(559, 35)
+ resources.ApplyResources(USERNAMELabel, "USERNAMELabel")
USERNAMELabel.Name = "USERNAMELabel"
- USERNAMELabel.Size = New System.Drawing.Size(61, 13)
- USERNAMELabel.TabIndex = 9
- USERNAMELabel.Text = "Username:"
'
'EMAILLabel
'
- EMAILLabel.AutoSize = True
- EMAILLabel.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- EMAILLabel.Location = New System.Drawing.Point(87, 76)
+ resources.ApplyResources(EMAILLabel, "EMAILLabel")
EMAILLabel.Name = "EMAILLabel"
- EMAILLabel.Size = New System.Drawing.Size(37, 13)
- EMAILLabel.TabIndex = 11
- EMAILLabel.Text = "Email:"
'
'LOGGED_WHERELabel
'
- LOGGED_WHERELabel.AutoSize = True
- LOGGED_WHERELabel.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- LOGGED_WHERELabel.Location = New System.Drawing.Point(200, 117)
+ resources.ApplyResources(LOGGED_WHERELabel, "LOGGED_WHERELabel")
LOGGED_WHERELabel.Name = "LOGGED_WHERELabel"
- LOGGED_WHERELabel.Size = New System.Drawing.Size(58, 13)
- LOGGED_WHERELabel.TabIndex = 15
- LOGGED_WHERELabel.Text = "logged wo:"
'
'LOG_IN_WHENLabel
'
- LOG_IN_WHENLabel.AutoSize = True
- LOG_IN_WHENLabel.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- LOG_IN_WHENLabel.Location = New System.Drawing.Point(362, 117)
+ resources.ApplyResources(LOG_IN_WHENLabel, "LOG_IN_WHENLabel")
LOG_IN_WHENLabel.Name = "LOG_IN_WHENLabel"
- LOG_IN_WHENLabel.Size = New System.Drawing.Size(62, 13)
- LOG_IN_WHENLabel.TabIndex = 17
- LOG_IN_WHENLabel.Text = "login wann:"
'
'LOG_OUT_WHENLabel
'
- LOG_OUT_WHENLabel.AutoSize = True
- LOG_OUT_WHENLabel.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- LOG_OUT_WHENLabel.Location = New System.Drawing.Point(559, 117)
+ resources.ApplyResources(LOG_OUT_WHENLabel, "LOG_OUT_WHENLabel")
LOG_OUT_WHENLabel.Name = "LOG_OUT_WHENLabel"
- LOG_OUT_WHENLabel.Size = New System.Drawing.Size(69, 13)
- LOG_OUT_WHENLabel.TabIndex = 19
- LOG_OUT_WHENLabel.Text = "logout wann:"
'
'ADDED_WHOLabel1
'
- ADDED_WHOLabel1.AutoSize = True
- ADDED_WHOLabel1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHOLabel1.Location = New System.Drawing.Point(87, 158)
+ resources.ApplyResources(ADDED_WHOLabel1, "ADDED_WHOLabel1")
ADDED_WHOLabel1.Name = "ADDED_WHOLabel1"
- ADDED_WHOLabel1.Size = New System.Drawing.Size(61, 13)
- ADDED_WHOLabel1.TabIndex = 23
- ADDED_WHOLabel1.Text = "Erstellt wer:"
'
'ADDED_WHENLabel1
'
- ADDED_WHENLabel1.AutoSize = True
- ADDED_WHENLabel1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHENLabel1.Location = New System.Drawing.Point(200, 158)
+ resources.ApplyResources(ADDED_WHENLabel1, "ADDED_WHENLabel1")
ADDED_WHENLabel1.Name = "ADDED_WHENLabel1"
- ADDED_WHENLabel1.Size = New System.Drawing.Size(70, 13)
- ADDED_WHENLabel1.TabIndex = 25
- ADDED_WHENLabel1.Text = "Erstellt wann:"
'
'CHANGED_WHOLabel1
'
- CHANGED_WHOLabel1.AutoSize = True
- CHANGED_WHOLabel1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHOLabel1.Location = New System.Drawing.Point(362, 158)
+ resources.ApplyResources(CHANGED_WHOLabel1, "CHANGED_WHOLabel1")
CHANGED_WHOLabel1.Name = "CHANGED_WHOLabel1"
- CHANGED_WHOLabel1.Size = New System.Drawing.Size(73, 13)
- CHANGED_WHOLabel1.TabIndex = 27
- CHANGED_WHOLabel1.Text = "Geändert wer:"
'
'CHANGED_WHENLabel1
'
- CHANGED_WHENLabel1.AutoSize = True
- CHANGED_WHENLabel1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHENLabel1.Location = New System.Drawing.Point(559, 158)
+ resources.ApplyResources(CHANGED_WHENLabel1, "CHANGED_WHENLabel1")
CHANGED_WHENLabel1.Name = "CHANGED_WHENLabel1"
- CHANGED_WHENLabel1.Size = New System.Drawing.Size(82, 13)
- CHANGED_WHENLabel1.TabIndex = 29
- CHANGED_WHENLabel1.Text = "Geändert wann:"
'
'GUIDLabel3
'
- GUIDLabel3.AutoSize = True
- GUIDLabel3.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel3.Location = New System.Drawing.Point(3, 2)
+ resources.ApplyResources(GUIDLabel3, "GUIDLabel3")
GUIDLabel3.Name = "GUIDLabel3"
- GUIDLabel3.Size = New System.Drawing.Size(23, 17)
- GUIDLabel3.TabIndex = 1
- GUIDLabel3.Text = "ID:"
'
'OBJECTTYPELabel
'
- OBJECTTYPELabel.AutoSize = True
- OBJECTTYPELabel.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- OBJECTTYPELabel.Location = New System.Drawing.Point(94, 2)
+ resources.ApplyResources(OBJECTTYPELabel, "OBJECTTYPELabel")
OBJECTTYPELabel.Name = "OBJECTTYPELabel"
- OBJECTTYPELabel.Size = New System.Drawing.Size(67, 17)
- OBJECTTYPELabel.TabIndex = 3
- OBJECTTYPELabel.Text = "Objekttyp:"
'
'IDX_EMAIL_IDLabel
'
- IDX_EMAIL_IDLabel.AutoSize = True
- IDX_EMAIL_IDLabel.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- IDX_EMAIL_IDLabel.Location = New System.Drawing.Point(3, 50)
+ resources.ApplyResources(IDX_EMAIL_IDLabel, "IDX_EMAIL_IDLabel")
IDX_EMAIL_IDLabel.Name = "IDX_EMAIL_IDLabel"
- IDX_EMAIL_IDLabel.Size = New System.Drawing.Size(136, 17)
- IDX_EMAIL_IDLabel.TabIndex = 5
- IDX_EMAIL_IDLabel.Text = "Index für Message-ID:"
'
'IDX_EMAIL_FROMLabel
'
- IDX_EMAIL_FROMLabel.AutoSize = True
- IDX_EMAIL_FROMLabel.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- IDX_EMAIL_FROMLabel.Location = New System.Drawing.Point(200, 50)
+ resources.ApplyResources(IDX_EMAIL_FROMLabel, "IDX_EMAIL_FROMLabel")
IDX_EMAIL_FROMLabel.Name = "IDX_EMAIL_FROMLabel"
- IDX_EMAIL_FROMLabel.Size = New System.Drawing.Size(135, 17)
- IDX_EMAIL_FROMLabel.TabIndex = 7
- IDX_EMAIL_FROMLabel.Text = "Indexname Mail from:"
'
'IDX_EMAIL_TOLabel
'
- IDX_EMAIL_TOLabel.AutoSize = True
- IDX_EMAIL_TOLabel.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- IDX_EMAIL_TOLabel.Location = New System.Drawing.Point(3, 98)
+ resources.ApplyResources(IDX_EMAIL_TOLabel, "IDX_EMAIL_TOLabel")
IDX_EMAIL_TOLabel.Name = "IDX_EMAIL_TOLabel"
- IDX_EMAIL_TOLabel.Size = New System.Drawing.Size(122, 17)
- IDX_EMAIL_TOLabel.TabIndex = 9
- IDX_EMAIL_TOLabel.Text = "Indexname Mail To:"
'
'IDX_EMAIL_SUBJECTLabel
'
- IDX_EMAIL_SUBJECTLabel.AutoSize = True
- IDX_EMAIL_SUBJECTLabel.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- IDX_EMAIL_SUBJECTLabel.Location = New System.Drawing.Point(200, 98)
+ resources.ApplyResources(IDX_EMAIL_SUBJECTLabel, "IDX_EMAIL_SUBJECTLabel")
IDX_EMAIL_SUBJECTLabel.Name = "IDX_EMAIL_SUBJECTLabel"
- IDX_EMAIL_SUBJECTLabel.Size = New System.Drawing.Size(149, 17)
- IDX_EMAIL_SUBJECTLabel.TabIndex = 11
- IDX_EMAIL_SUBJECTLabel.Text = "Indexname Mail Subject:"
'
'IDX_EMAIL_DATE_INLabel
'
- IDX_EMAIL_DATE_INLabel.AutoSize = True
- IDX_EMAIL_DATE_INLabel.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- IDX_EMAIL_DATE_INLabel.Location = New System.Drawing.Point(3, 144)
+ resources.ApplyResources(IDX_EMAIL_DATE_INLabel, "IDX_EMAIL_DATE_INLabel")
IDX_EMAIL_DATE_INLabel.Name = "IDX_EMAIL_DATE_INLabel"
- IDX_EMAIL_DATE_INLabel.Size = New System.Drawing.Size(119, 17)
- IDX_EMAIL_DATE_INLabel.TabIndex = 13
- IDX_EMAIL_DATE_INLabel.Text = "Indexname Date In:"
'
'ADDED_WHOLabel2
'
- ADDED_WHOLabel2.AutoSize = True
- ADDED_WHOLabel2.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHOLabel2.Location = New System.Drawing.Point(3, 192)
+ resources.ApplyResources(ADDED_WHOLabel2, "ADDED_WHOLabel2")
ADDED_WHOLabel2.Name = "ADDED_WHOLabel2"
- ADDED_WHOLabel2.Size = New System.Drawing.Size(74, 17)
- ADDED_WHOLabel2.TabIndex = 15
- ADDED_WHOLabel2.Text = "Erstellt Wer:"
'
'ADDED_WHENLabel2
'
- ADDED_WHENLabel2.AutoSize = True
- ADDED_WHENLabel2.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHENLabel2.Location = New System.Drawing.Point(200, 192)
+ resources.ApplyResources(ADDED_WHENLabel2, "ADDED_WHENLabel2")
ADDED_WHENLabel2.Name = "ADDED_WHENLabel2"
- ADDED_WHENLabel2.Size = New System.Drawing.Size(81, 17)
- ADDED_WHENLabel2.TabIndex = 17
- ADDED_WHENLabel2.Text = "Erstellt wann:"
'
'CHANGED_WHOLabel2
'
- CHANGED_WHOLabel2.AutoSize = True
- CHANGED_WHOLabel2.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHOLabel2.Location = New System.Drawing.Point(3, 240)
+ resources.ApplyResources(CHANGED_WHOLabel2, "CHANGED_WHOLabel2")
CHANGED_WHOLabel2.Name = "CHANGED_WHOLabel2"
- CHANGED_WHOLabel2.Size = New System.Drawing.Size(89, 17)
- CHANGED_WHOLabel2.TabIndex = 19
- CHANGED_WHOLabel2.Text = "Geändert Wer:"
'
'CHANGED_WHENLabel2
'
- CHANGED_WHENLabel2.AutoSize = True
- CHANGED_WHENLabel2.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHENLabel2.Location = New System.Drawing.Point(200, 240)
+ resources.ApplyResources(CHANGED_WHENLabel2, "CHANGED_WHENLabel2")
CHANGED_WHENLabel2.Name = "CHANGED_WHENLabel2"
- CHANGED_WHENLabel2.Size = New System.Drawing.Size(96, 17)
- CHANGED_WHENLabel2.TabIndex = 21
- CHANGED_WHENLabel2.Text = "Geändert wann:"
'
'IDX_CHECK_ATTACHMENTLabel
'
- IDX_CHECK_ATTACHMENTLabel.AutoSize = True
- IDX_CHECK_ATTACHMENTLabel.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- IDX_CHECK_ATTACHMENTLabel.Location = New System.Drawing.Point(200, 144)
+ resources.ApplyResources(IDX_CHECK_ATTACHMENTLabel, "IDX_CHECK_ATTACHMENTLabel")
IDX_CHECK_ATTACHMENTLabel.Name = "IDX_CHECK_ATTACHMENTLabel"
- IDX_CHECK_ATTACHMENTLabel.Size = New System.Drawing.Size(304, 17)
- IDX_CHECK_ATTACHMENTLabel.TabIndex = 80
- IDX_CHECK_ATTACHMENTLabel.Text = "Indexname für die Markierung: Attachment Ja/Nein"
'
'GUIDLabel4
'
- GUIDLabel4.AutoSize = True
- GUIDLabel4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel4.Location = New System.Drawing.Point(4, 60)
+ resources.ApplyResources(GUIDLabel4, "GUIDLabel4")
GUIDLabel4.Name = "GUIDLabel4"
- GUIDLabel4.Size = New System.Drawing.Size(22, 15)
- GUIDLabel4.TabIndex = 4
- GUIDLabel4.Text = "ID:"
'
'INDEXNAMELabel
'
- INDEXNAMELabel.AutoSize = True
- INDEXNAMELabel.Location = New System.Drawing.Point(164, 61)
+ resources.ApplyResources(INDEXNAMELabel, "INDEXNAMELabel")
INDEXNAMELabel.Name = "INDEXNAMELabel"
- INDEXNAMELabel.Size = New System.Drawing.Size(65, 13)
- INDEXNAMELabel.TabIndex = 8
- INDEXNAMELabel.Text = "Indexname:"
'
'COMMENTLabel1
'
- COMMENTLabel1.AutoSize = True
- COMMENTLabel1.Location = New System.Drawing.Point(163, 109)
+ resources.ApplyResources(COMMENTLabel1, "COMMENTLabel1")
COMMENTLabel1.Name = "COMMENTLabel1"
- COMMENTLabel1.Size = New System.Drawing.Size(75, 13)
- COMMENTLabel1.TabIndex = 14
- COMMENTLabel1.Text = "Beschreibung:"
'
'ADDED_WHOLabel3
'
- ADDED_WHOLabel3.AutoSize = True
- ADDED_WHOLabel3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHOLabel3.Location = New System.Drawing.Point(164, 209)
+ resources.ApplyResources(ADDED_WHOLabel3, "ADDED_WHOLabel3")
ADDED_WHOLabel3.Name = "ADDED_WHOLabel3"
- ADDED_WHOLabel3.Size = New System.Drawing.Size(67, 15)
- ADDED_WHOLabel3.TabIndex = 18
- ADDED_WHOLabel3.Text = "Erstellt wer:"
'
'ADDED_WHENLabel3
'
- ADDED_WHENLabel3.AutoSize = True
- ADDED_WHENLabel3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHENLabel3.Location = New System.Drawing.Point(354, 209)
+ resources.ApplyResources(ADDED_WHENLabel3, "ADDED_WHENLabel3")
ADDED_WHENLabel3.Name = "ADDED_WHENLabel3"
- ADDED_WHENLabel3.Size = New System.Drawing.Size(78, 15)
- ADDED_WHENLabel3.TabIndex = 20
- ADDED_WHENLabel3.Text = "Erstellt wann:"
'
'CHANGED_WHOLabel3
'
- CHANGED_WHOLabel3.AutoSize = True
- CHANGED_WHOLabel3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHOLabel3.Location = New System.Drawing.Point(531, 209)
+ resources.ApplyResources(CHANGED_WHOLabel3, "CHANGED_WHOLabel3")
CHANGED_WHOLabel3.Name = "CHANGED_WHOLabel3"
- CHANGED_WHOLabel3.Size = New System.Drawing.Size(81, 15)
- CHANGED_WHOLabel3.TabIndex = 22
- CHANGED_WHOLabel3.Text = "Geändert wer:"
'
'CHANGED_WHENLabel3
'
- CHANGED_WHENLabel3.AutoSize = True
- CHANGED_WHENLabel3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHENLabel3.Location = New System.Drawing.Point(691, 209)
+ resources.ApplyResources(CHANGED_WHENLabel3, "CHANGED_WHENLabel3")
CHANGED_WHENLabel3.Name = "CHANGED_WHENLabel3"
- CHANGED_WHENLabel3.Size = New System.Drawing.Size(92, 15)
- CHANGED_WHENLabel3.TabIndex = 24
- CHANGED_WHENLabel3.Text = "Geändert wann:"
'
'GUIDLabel5
'
- GUIDLabel5.AutoSize = True
- GUIDLabel5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel5.Location = New System.Drawing.Point(13, 36)
+ resources.ApplyResources(GUIDLabel5, "GUIDLabel5")
GUIDLabel5.Name = "GUIDLabel5"
- GUIDLabel5.Size = New System.Drawing.Size(22, 15)
- GUIDLabel5.TabIndex = 4
- GUIDLabel5.Text = "ID:"
'
'IDXMAN_IDLabel
'
- IDXMAN_IDLabel.AutoSize = True
- IDXMAN_IDLabel.Location = New System.Drawing.Point(68, 36)
+ resources.ApplyResources(IDXMAN_IDLabel, "IDXMAN_IDLabel")
IDXMAN_IDLabel.Name = "IDXMAN_IDLabel"
- IDXMAN_IDLabel.Size = New System.Drawing.Size(88, 13)
- IDXMAN_IDLabel.TabIndex = 5
- IDXMAN_IDLabel.Text = "Manueller Index:"
'
'COMMENTLabel2
'
- COMMENTLabel2.AutoSize = True
- COMMENTLabel2.Location = New System.Drawing.Point(381, 36)
+ resources.ApplyResources(COMMENTLabel2, "COMMENTLabel2")
COMMENTLabel2.Name = "COMMENTLabel2"
- COMMENTLabel2.Size = New System.Drawing.Size(65, 13)
- COMMENTLabel2.TabIndex = 6
- COMMENTLabel2.Text = "Kommentar:"
'
'TYPELabel
'
- TYPELabel.AutoSize = True
- TYPELabel.Location = New System.Drawing.Point(254, 35)
+ resources.ApplyResources(TYPELabel, "TYPELabel")
TYPELabel.Name = "TYPELabel"
- TYPELabel.Size = New System.Drawing.Size(35, 13)
- TYPELabel.TabIndex = 7
- TYPELabel.Text = "Type:"
'
'SEQUENCELabel1
'
- SEQUENCELabel1.AutoSize = True
- SEQUENCELabel1.Location = New System.Drawing.Point(13, 167)
+ resources.ApplyResources(SEQUENCELabel1, "SEQUENCELabel1")
SEQUENCELabel1.Name = "SEQUENCELabel1"
- SEQUENCELabel1.Size = New System.Drawing.Size(68, 13)
- SEQUENCELabel1.TabIndex = 19
- SEQUENCELabel1.Text = "Reihenfolge:"
'
'ADDED_WHOLabel4
'
- ADDED_WHOLabel4.AutoSize = True
- ADDED_WHOLabel4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHOLabel4.Location = New System.Drawing.Point(13, 211)
+ resources.ApplyResources(ADDED_WHOLabel4, "ADDED_WHOLabel4")
ADDED_WHOLabel4.Name = "ADDED_WHOLabel4"
- ADDED_WHOLabel4.Size = New System.Drawing.Size(67, 15)
- ADDED_WHOLabel4.TabIndex = 21
- ADDED_WHOLabel4.Text = "Erstellt wer:"
'
'ADDED_WHENLabel4
'
- ADDED_WHENLabel4.AutoSize = True
- ADDED_WHENLabel4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHENLabel4.Location = New System.Drawing.Point(184, 211)
+ resources.ApplyResources(ADDED_WHENLabel4, "ADDED_WHENLabel4")
ADDED_WHENLabel4.Name = "ADDED_WHENLabel4"
- ADDED_WHENLabel4.Size = New System.Drawing.Size(78, 15)
- ADDED_WHENLabel4.TabIndex = 23
- ADDED_WHENLabel4.Text = "Erstellt wann:"
'
'CHANGED_WHOLabel4
'
- CHANGED_WHOLabel4.AutoSize = True
- CHANGED_WHOLabel4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHOLabel4.Location = New System.Drawing.Point(384, 211)
+ resources.ApplyResources(CHANGED_WHOLabel4, "CHANGED_WHOLabel4")
CHANGED_WHOLabel4.Name = "CHANGED_WHOLabel4"
- CHANGED_WHOLabel4.Size = New System.Drawing.Size(81, 15)
- CHANGED_WHOLabel4.TabIndex = 25
- CHANGED_WHOLabel4.Text = "Geändert wer:"
'
'CHANGED_WHENLabel4
'
- CHANGED_WHENLabel4.AutoSize = True
- CHANGED_WHENLabel4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHENLabel4.Location = New System.Drawing.Point(562, 211)
+ resources.ApplyResources(CHANGED_WHENLabel4, "CHANGED_WHENLabel4")
CHANGED_WHENLabel4.Name = "CHANGED_WHENLabel4"
- CHANGED_WHENLabel4.Size = New System.Drawing.Size(92, 15)
- CHANGED_WHENLabel4.TabIndex = 27
- CHANGED_WHENLabel4.Text = "Geändert wann:"
'
'GUIDLabel6
'
- GUIDLabel6.AutoSize = True
- GUIDLabel6.Enabled = False
- GUIDLabel6.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel6.Location = New System.Drawing.Point(195, 32)
+ resources.ApplyResources(GUIDLabel6, "GUIDLabel6")
GUIDLabel6.Name = "GUIDLabel6"
- GUIDLabel6.Size = New System.Drawing.Size(22, 15)
- GUIDLabel6.TabIndex = 4
- GUIDLabel6.Text = "ID:"
'
'NAMELabel2
'
- NAMELabel2.AutoSize = True
- NAMELabel2.Location = New System.Drawing.Point(290, 32)
+ resources.ApplyResources(NAMELabel2, "NAMELabel2")
NAMELabel2.Name = "NAMELabel2"
- NAMELabel2.Size = New System.Drawing.Size(78, 13)
- NAMELabel2.TabIndex = 6
- NAMELabel2.Text = "Gruppenname:"
'
'ADDED_WHOLabel5
'
- ADDED_WHOLabel5.AutoSize = True
- ADDED_WHOLabel5.Enabled = False
- ADDED_WHOLabel5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHOLabel5.Location = New System.Drawing.Point(195, 80)
+ resources.ApplyResources(ADDED_WHOLabel5, "ADDED_WHOLabel5")
ADDED_WHOLabel5.Name = "ADDED_WHOLabel5"
- ADDED_WHOLabel5.Size = New System.Drawing.Size(67, 15)
- ADDED_WHOLabel5.TabIndex = 8
- ADDED_WHOLabel5.Text = "Erstellt wer:"
'
'ADDED_WHENLabel5
'
- ADDED_WHENLabel5.AutoSize = True
- ADDED_WHENLabel5.Enabled = False
- ADDED_WHENLabel5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHENLabel5.Location = New System.Drawing.Point(376, 80)
+ resources.ApplyResources(ADDED_WHENLabel5, "ADDED_WHENLabel5")
ADDED_WHENLabel5.Name = "ADDED_WHENLabel5"
- ADDED_WHENLabel5.Size = New System.Drawing.Size(78, 15)
- ADDED_WHENLabel5.TabIndex = 10
- ADDED_WHENLabel5.Text = "Erstellt wann:"
'
'CHANGED_WHOLabel5
'
- CHANGED_WHOLabel5.AutoSize = True
- CHANGED_WHOLabel5.Enabled = False
- CHANGED_WHOLabel5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHOLabel5.Location = New System.Drawing.Point(195, 124)
+ resources.ApplyResources(CHANGED_WHOLabel5, "CHANGED_WHOLabel5")
CHANGED_WHOLabel5.Name = "CHANGED_WHOLabel5"
- CHANGED_WHOLabel5.Size = New System.Drawing.Size(81, 15)
- CHANGED_WHOLabel5.TabIndex = 12
- CHANGED_WHOLabel5.Text = "Geändert wer:"
'
'CHANGED_WHENLabel5
'
- CHANGED_WHENLabel5.AutoSize = True
- CHANGED_WHENLabel5.Enabled = False
- CHANGED_WHENLabel5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHENLabel5.Location = New System.Drawing.Point(376, 124)
+ resources.ApplyResources(CHANGED_WHENLabel5, "CHANGED_WHENLabel5")
CHANGED_WHENLabel5.Name = "CHANGED_WHENLabel5"
- CHANGED_WHENLabel5.Size = New System.Drawing.Size(92, 15)
- CHANGED_WHENLabel5.TabIndex = 14
- CHANGED_WHENLabel5.Text = "Geändert wann:"
'
'SEQUENCELabel3
'
- SEQUENCELabel3.AutoSize = True
- SEQUENCELabel3.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- SEQUENCELabel3.Location = New System.Drawing.Point(1073, 28)
+ resources.ApplyResources(SEQUENCELabel3, "SEQUENCELabel3")
SEQUENCELabel3.Name = "SEQUENCELabel3"
- SEQUENCELabel3.Size = New System.Drawing.Size(73, 15)
- SEQUENCELabel3.TabIndex = 90
- SEQUENCELabel3.Text = "Reihenfolge:"
'
'VARIANTLabel
'
- VARIANTLabel.AutoSize = True
- VARIANTLabel.Location = New System.Drawing.Point(556, 81)
+ resources.ApplyResources(VARIANTLabel, "VARIANTLabel")
VARIANTLabel.Name = "VARIANTLabel"
- VARIANTLabel.Size = New System.Drawing.Size(113, 13)
- VARIANTLabel.TabIndex = 80
- VARIANTLabel.Text = "Anwendungsvariante:"
'
'Label9
'
- Label9.AutoSize = True
- Label9.Location = New System.Drawing.Point(858, 222)
+ resources.ApplyResources(Label9, "Label9")
Label9.Name = "Label9"
- Label9.Size = New System.Drawing.Size(72, 13)
- Label9.TabIndex = 92
- Label9.Text = ".Dateiendung"
'
'StatusStrip1
'
- Me.StatusStrip1.Location = New System.Drawing.Point(0, 631)
+ resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
Me.StatusStrip1.Name = "StatusStrip1"
- Me.StatusStrip1.Padding = New System.Windows.Forms.Padding(1, 0, 16, 0)
- Me.StatusStrip1.Size = New System.Drawing.Size(1261, 22)
- Me.StatusStrip1.TabIndex = 0
- Me.StatusStrip1.Text = "StatusStrip1"
'
'XtraTabControl1
'
- Me.XtraTabControl1.AppearancePage.HeaderHotTracked.BackColor = System.Drawing.Color.Fuchsia
- Me.XtraTabControl1.AppearancePage.HeaderHotTracked.BackColor2 = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.XtraTabControl1.AppearancePage.HeaderHotTracked.Font = New System.Drawing.Font("Tahoma", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ Me.XtraTabControl1.AppearancePage.HeaderHotTracked.BackColor = CType(resources.GetObject("XtraTabControl1.AppearancePage.HeaderHotTracked.BackColor"), System.Drawing.Color)
+ Me.XtraTabControl1.AppearancePage.HeaderHotTracked.BackColor2 = CType(resources.GetObject("XtraTabControl1.AppearancePage.HeaderHotTracked.BackColor2"), System.Drawing.Color)
+ Me.XtraTabControl1.AppearancePage.HeaderHotTracked.Font = CType(resources.GetObject("XtraTabControl1.AppearancePage.HeaderHotTracked.Font"), System.Drawing.Font)
Me.XtraTabControl1.AppearancePage.HeaderHotTracked.Options.UseBackColor = True
Me.XtraTabControl1.AppearancePage.HeaderHotTracked.Options.UseFont = True
- Me.XtraTabControl1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.XtraTabControl1.Location = New System.Drawing.Point(0, 0)
- Me.XtraTabControl1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
+ resources.ApplyResources(Me.XtraTabControl1, "XtraTabControl1")
Me.XtraTabControl1.Name = "XtraTabControl1"
Me.XtraTabControl1.SelectedTabPage = Me.XtraTabPage1
- Me.XtraTabControl1.Size = New System.Drawing.Size(1261, 631)
- Me.XtraTabControl1.TabIndex = 1
Me.XtraTabControl1.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage1, Me.XtraTabPage2, Me.XtraTabPage5})
'
'XtraTabPage1
'
- Me.XtraTabPage1.AutoScroll = True
+ resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
Me.XtraTabPage1.Controls.Add(Label9)
Me.XtraTabPage1.Controls.Add(SEQUENCELabel3)
Me.XtraTabPage1.Controls.Add(Me.SEQUENCENumericUpDown)
@@ -1263,20 +926,13 @@ Partial Class frmAdministration
Me.XtraTabPage1.Controls.Add(GEAENDERTWANNLabel)
Me.XtraTabPage1.Controls.Add(Me.GEAENDERTWANNTextBox)
Me.XtraTabPage1.Controls.Add(Me.OBJEKTTYPComboBox)
- Me.XtraTabPage1.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.XtraTabPage1.Name = "XtraTabPage1"
- Me.XtraTabPage1.Size = New System.Drawing.Size(1255, 603)
- Me.XtraTabPage1.Text = "Dokumentarten"
'
'SEQUENCENumericUpDown
'
Me.SEQUENCENumericUpDown.DataBindings.Add(New System.Windows.Forms.Binding("Value", Me.TBDD_DOKUMENTARTBindingSource, "SEQUENCE", True))
- Me.SEQUENCENumericUpDown.Enabled = False
- Me.SEQUENCENumericUpDown.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.SEQUENCENumericUpDown.Location = New System.Drawing.Point(1079, 45)
+ resources.ApplyResources(Me.SEQUENCENumericUpDown, "SEQUENCENumericUpDown")
Me.SEQUENCENumericUpDown.Name = "SEQUENCENumericUpDown"
- Me.SEQUENCENumericUpDown.Size = New System.Drawing.Size(67, 24)
- Me.SEQUENCENumericUpDown.TabIndex = 91
'
'TBDD_DOKUMENTARTBindingSource
'
@@ -1291,55 +947,38 @@ Partial Class frmAdministration
'WINDREAM_DIRECTCheckBox
'
Me.WINDREAM_DIRECTCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_DOKUMENTARTBindingSource, "WINDREAM_DIRECT", True))
- Me.WINDREAM_DIRECTCheckBox.Enabled = False
- Me.WINDREAM_DIRECTCheckBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.WINDREAM_DIRECTCheckBox.Location = New System.Drawing.Point(266, 93)
+ resources.ApplyResources(Me.WINDREAM_DIRECTCheckBox, "WINDREAM_DIRECTCheckBox")
Me.WINDREAM_DIRECTCheckBox.Name = "WINDREAM_DIRECTCheckBox"
- Me.WINDREAM_DIRECTCheckBox.Size = New System.Drawing.Size(130, 24)
- Me.WINDREAM_DIRECTCheckBox.TabIndex = 89
- Me.WINDREAM_DIRECTCheckBox.Text = "Windream direkt"
Me.WINDREAM_DIRECTCheckBox.UseVisualStyleBackColor = True
'
'btndeleteZuordnung
'
Me.btndeleteZuordnung.Image = Global.Global_Indexer.My.Resources.Resources.delete_12x12
- Me.btndeleteZuordnung.Location = New System.Drawing.Point(212, 340)
+ resources.ApplyResources(Me.btndeleteZuordnung, "btndeleteZuordnung")
Me.btndeleteZuordnung.Name = "btndeleteZuordnung"
- Me.btndeleteZuordnung.Size = New System.Drawing.Size(28, 26)
- Me.btndeleteZuordnung.TabIndex = 88
Me.btndeleteZuordnung.UseVisualStyleBackColor = True
'
'lblObjekttyp
'
- Me.lblObjekttyp.AutoSize = True
- Me.lblObjekttyp.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblObjekttyp.Location = New System.Drawing.Point(411, 76)
+ resources.ApplyResources(Me.lblObjekttyp, "lblObjekttyp")
Me.lblObjekttyp.Name = "lblObjekttyp"
- Me.lblObjekttyp.Size = New System.Drawing.Size(66, 15)
- Me.lblObjekttyp.TabIndex = 87
- Me.lblObjekttyp.Text = "Objekttyp:"
'
'XtraTabControl2
'
- Me.XtraTabControl2.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.XtraTabControl2.AppearancePage.HeaderHotTracked.BackColor = System.Drawing.Color.Fuchsia
- Me.XtraTabControl2.AppearancePage.HeaderHotTracked.BackColor2 = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(192, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.XtraTabControl2.AppearancePage.HeaderHotTracked.Font = New System.Drawing.Font("Tahoma", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.XtraTabControl2.AppearancePage.HeaderHotTracked.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical
+ resources.ApplyResources(Me.XtraTabControl2, "XtraTabControl2")
+ Me.XtraTabControl2.AppearancePage.HeaderHotTracked.BackColor = CType(resources.GetObject("XtraTabControl2.AppearancePage.HeaderHotTracked.BackColor"), System.Drawing.Color)
+ Me.XtraTabControl2.AppearancePage.HeaderHotTracked.BackColor2 = CType(resources.GetObject("XtraTabControl2.AppearancePage.HeaderHotTracked.BackColor2"), System.Drawing.Color)
+ Me.XtraTabControl2.AppearancePage.HeaderHotTracked.Font = CType(resources.GetObject("XtraTabControl2.AppearancePage.HeaderHotTracked.Font"), System.Drawing.Font)
+ Me.XtraTabControl2.AppearancePage.HeaderHotTracked.GradientMode = CType(resources.GetObject("XtraTabControl2.AppearancePage.HeaderHotTracked.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
Me.XtraTabControl2.AppearancePage.HeaderHotTracked.Options.UseBackColor = True
Me.XtraTabControl2.AppearancePage.HeaderHotTracked.Options.UseFont = True
- Me.XtraTabControl2.Location = New System.Drawing.Point(266, 315)
Me.XtraTabControl2.Name = "XtraTabControl2"
Me.XtraTabControl2.SelectedTabPage = Me.XtraTabPage3
- Me.XtraTabControl2.Size = New System.Drawing.Size(980, 285)
- Me.XtraTabControl2.TabIndex = 86
Me.XtraTabControl2.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage3, Me.XtraTabPage6, Me.XtraTabPage4, Me.XtraTabPage9, Me.XtraTabPage10})
'
'XtraTabPage3
'
- Me.XtraTabPage3.AutoScroll = True
+ resources.ApplyResources(Me.XtraTabPage3, "XtraTabPage3")
Me.XtraTabPage3.Controls.Add(Me.lblWDINDEX)
Me.XtraTabPage3.Controls.Add(Me.OPTIONALCheckBox)
Me.XtraTabPage3.Controls.Add(Me.ListBox5)
@@ -1370,27 +1009,17 @@ Partial Class frmAdministration
Me.XtraTabPage3.Controls.Add(GUIDLabel1)
Me.XtraTabPage3.Controls.Add(Me.GUIDTextBox1)
Me.XtraTabPage3.Name = "XtraTabPage3"
- Me.XtraTabPage3.Size = New System.Drawing.Size(974, 257)
- Me.XtraTabPage3.Text = "manuelle Indexe"
'
'lblWDINDEX
'
- Me.lblWDINDEX.AutoSize = True
- Me.lblWDINDEX.Location = New System.Drawing.Point(437, 30)
+ resources.ApplyResources(Me.lblWDINDEX, "lblWDINDEX")
Me.lblWDINDEX.Name = "lblWDINDEX"
- Me.lblWDINDEX.Size = New System.Drawing.Size(89, 13)
- Me.lblWDINDEX.TabIndex = 91
- Me.lblWDINDEX.Text = "windream-Index:"
'
'OPTIONALCheckBox
'
Me.OPTIONALCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_MANBindingSource, "OPTIONAL", True))
- Me.OPTIONALCheckBox.Enabled = False
- Me.OPTIONALCheckBox.Location = New System.Drawing.Point(677, 82)
+ resources.ApplyResources(Me.OPTIONALCheckBox, "OPTIONALCheckBox")
Me.OPTIONALCheckBox.Name = "OPTIONALCheckBox"
- Me.OPTIONALCheckBox.Size = New System.Drawing.Size(180, 41)
- Me.OPTIONALCheckBox.TabIndex = 90
- Me.OPTIONALCheckBox.Text = "Optional/Nur für Benennung" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "der Datei"
Me.OPTIONALCheckBox.UseVisualStyleBackColor = True
'
'TBDD_INDEX_MANBindingSource
@@ -1402,154 +1031,99 @@ Partial Class frmAdministration
'
Me.ListBox5.DataSource = Me.TBDD_INDEX_MANBindingSource
Me.ListBox5.DisplayMember = "NAME"
- Me.ListBox5.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ListBox5, "ListBox5")
Me.ListBox5.FormattingEnabled = True
- Me.ListBox5.ItemHeight = 15
- Me.ListBox5.Location = New System.Drawing.Point(9, 92)
Me.ListBox5.Name = "ListBox5"
- Me.ListBox5.Size = New System.Drawing.Size(146, 154)
- Me.ListBox5.TabIndex = 81
'
'btnSQLView
'
- Me.btnSQLView.Enabled = False
+ resources.ApplyResources(Me.btnSQLView, "btnSQLView")
Me.btnSQLView.Image = Global.Global_Indexer.My.Resources.Resources.database_go
- Me.btnSQLView.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnSQLView.Location = New System.Drawing.Point(507, 135)
Me.btnSQLView.Name = "btnSQLView"
- Me.btnSQLView.Size = New System.Drawing.Size(103, 23)
- Me.btnSQLView.TabIndex = 80
- Me.btnSQLView.Text = "Show Config"
- Me.btnSQLView.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnSQLView.UseVisualStyleBackColor = True
- Me.btnSQLView.Visible = False
'
'lblSaveIndexMan
'
- Me.lblSaveIndexMan.AutoSize = True
+ resources.ApplyResources(Me.lblSaveIndexMan, "lblSaveIndexMan")
Me.lblSaveIndexMan.BackColor = System.Drawing.Color.Yellow
- Me.lblSaveIndexMan.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSaveIndexMan.Location = New System.Drawing.Point(504, 181)
Me.lblSaveIndexMan.Name = "lblSaveIndexMan"
- Me.lblSaveIndexMan.Size = New System.Drawing.Size(192, 17)
- Me.lblSaveIndexMan.TabIndex = 79
- Me.lblSaveIndexMan.Text = "Index erfolgreich gespeichert!"
- Me.lblSaveIndexMan.Visible = False
'
'CHANGED_WHENTextBox
'
Me.CHANGED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHENTextBox.Location = New System.Drawing.Point(677, 225)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
Me.CHANGED_WHENTextBox.Name = "CHANGED_WHENTextBox"
- Me.CHANGED_WHENTextBox.Size = New System.Drawing.Size(137, 23)
- Me.CHANGED_WHENTextBox.TabIndex = 26
'
'CHANGED_WHOTextBox
'
Me.CHANGED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHOTextBox.Location = New System.Drawing.Point(507, 225)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
Me.CHANGED_WHOTextBox.Name = "CHANGED_WHOTextBox"
- Me.CHANGED_WHOTextBox.Size = New System.Drawing.Size(148, 23)
- Me.CHANGED_WHOTextBox.TabIndex = 24
'
'ADDED_WHENTextBox
'
Me.ADDED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHENTextBox.Location = New System.Drawing.Point(324, 225)
+ resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
Me.ADDED_WHENTextBox.Name = "ADDED_WHENTextBox"
- Me.ADDED_WHENTextBox.Size = New System.Drawing.Size(156, 23)
- Me.ADDED_WHENTextBox.TabIndex = 22
'
'ADDED_WHOTextBox
'
Me.ADDED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHOTextBox.Location = New System.Drawing.Point(162, 225)
+ resources.ApplyResources(Me.ADDED_WHOTextBox, "ADDED_WHOTextBox")
Me.ADDED_WHOTextBox.Name = "ADDED_WHOTextBox"
- Me.ADDED_WHOTextBox.Size = New System.Drawing.Size(156, 23)
- Me.ADDED_WHOTextBox.TabIndex = 20
'
'ACTIVECheckBox
'
Me.ACTIVECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_MANBindingSource, "ACTIVE", True))
- Me.ACTIVECheckBox.Enabled = False
- Me.ACTIVECheckBox.Location = New System.Drawing.Point(94, 47)
+ resources.ApplyResources(Me.ACTIVECheckBox, "ACTIVECheckBox")
Me.ACTIVECheckBox.Name = "ACTIVECheckBox"
- Me.ACTIVECheckBox.Size = New System.Drawing.Size(61, 24)
- Me.ACTIVECheckBox.TabIndex = 19
- Me.ACTIVECheckBox.Text = "Aktiv"
Me.ACTIVECheckBox.UseVisualStyleBackColor = True
'
'SEQUENCETextBox
'
Me.SEQUENCETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "SEQUENCE", True))
- Me.SEQUENCETextBox.Enabled = False
- Me.SEQUENCETextBox.Location = New System.Drawing.Point(677, 48)
+ resources.ApplyResources(Me.SEQUENCETextBox, "SEQUENCETextBox")
Me.SEQUENCETextBox.Name = "SEQUENCETextBox"
- Me.SEQUENCETextBox.Size = New System.Drawing.Size(70, 21)
- Me.SEQUENCETextBox.TabIndex = 17
'
'DEFAULT_VALUETextBox
'
Me.DEFAULT_VALUETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "DEFAULT_VALUE", True))
- Me.DEFAULT_VALUETextBox.Enabled = False
- Me.DEFAULT_VALUETextBox.Location = New System.Drawing.Point(162, 180)
+ resources.ApplyResources(Me.DEFAULT_VALUETextBox, "DEFAULT_VALUETextBox")
Me.DEFAULT_VALUETextBox.Name = "DEFAULT_VALUETextBox"
- Me.DEFAULT_VALUETextBox.Size = New System.Drawing.Size(318, 21)
- Me.DEFAULT_VALUETextBox.TabIndex = 13
'
'SUGGESTIONCheckBox
'
Me.SUGGESTIONCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_MANBindingSource, "SUGGESTION", True))
- Me.SUGGESTIONCheckBox.Enabled = False
- Me.SUGGESTIONCheckBox.Location = New System.Drawing.Point(338, 136)
+ resources.ApplyResources(Me.SUGGESTIONCheckBox, "SUGGESTIONCheckBox")
Me.SUGGESTIONCheckBox.Name = "SUGGESTIONCheckBox"
- Me.SUGGESTIONCheckBox.Size = New System.Drawing.Size(163, 24)
- Me.SUGGESTIONCheckBox.TabIndex = 12
- Me.SUGGESTIONCheckBox.Text = "Vorschlagsliste per SQL"
Me.SUGGESTIONCheckBox.UseVisualStyleBackColor = True
'
'DATATYPEComboBox
'
Me.DATATYPEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "DATATYPE", True))
- Me.DATATYPEComboBox.Enabled = False
+ resources.ApplyResources(Me.DATATYPEComboBox, "DATATYPEComboBox")
Me.DATATYPEComboBox.FormattingEnabled = True
- Me.DATATYPEComboBox.Items.AddRange(New Object() {"DATE", "INTEGER", "VARCHAR"})
- Me.DATATYPEComboBox.Location = New System.Drawing.Point(162, 136)
+ Me.DATATYPEComboBox.Items.AddRange(New Object() {resources.GetString("DATATYPEComboBox.Items"), resources.GetString("DATATYPEComboBox.Items1"), resources.GetString("DATATYPEComboBox.Items2")})
Me.DATATYPEComboBox.Name = "DATATYPEComboBox"
- Me.DATATYPEComboBox.Size = New System.Drawing.Size(145, 21)
- Me.DATATYPEComboBox.TabIndex = 10
'
'COMMENTTextBox
'
Me.COMMENTTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "COMMENT", True))
- Me.COMMENTTextBox.Enabled = False
- Me.COMMENTTextBox.Location = New System.Drawing.Point(162, 92)
+ resources.ApplyResources(Me.COMMENTTextBox, "COMMENTTextBox")
Me.COMMENTTextBox.Name = "COMMENTTextBox"
- Me.COMMENTTextBox.Size = New System.Drawing.Size(509, 21)
- Me.COMMENTTextBox.TabIndex = 8
'
'WD_INDEXComboBox
'
Me.WD_INDEXComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "WD_INDEX", True))
- Me.WD_INDEXComboBox.Enabled = False
+ resources.ApplyResources(Me.WD_INDEXComboBox, "WD_INDEXComboBox")
Me.WD_INDEXComboBox.FormattingEnabled = True
- Me.WD_INDEXComboBox.Location = New System.Drawing.Point(440, 47)
Me.WD_INDEXComboBox.Name = "WD_INDEXComboBox"
- Me.WD_INDEXComboBox.Size = New System.Drawing.Size(231, 21)
- Me.WD_INDEXComboBox.TabIndex = 6
'
'NAMETextBox
'
Me.NAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "NAME", True))
- Me.NAMETextBox.Enabled = False
- Me.NAMETextBox.Location = New System.Drawing.Point(162, 48)
+ resources.ApplyResources(Me.NAMETextBox, "NAMETextBox")
Me.NAMETextBox.Name = "NAMETextBox"
- Me.NAMETextBox.Size = New System.Drawing.Size(272, 21)
- Me.NAMETextBox.TabIndex = 4
'
'TBDD_INDEX_MANBindingNav
'
@@ -1559,133 +1133,97 @@ Partial Class frmAdministration
Me.TBDD_INDEX_MANBindingNav.CountItemFormat = "von {0} manuellen Indexen"
Me.TBDD_INDEX_MANBindingNav.DeleteItem = Me.ToolStripButton2
Me.TBDD_INDEX_MANBindingNav.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton3, Me.ToolStripButton4, Me.ToolStripSeparator1, Me.ToolStripTextBox1, Me.ToolStripLabel1, Me.ToolStripSeparator2, Me.ToolStripButton5, Me.ToolStripButton6, Me.ToolStripSeparator3, Me.ToolStripButton1, Me.ToolStripButton2, Me.ToolStripButton7, Me.ToolStripButton41})
- Me.TBDD_INDEX_MANBindingNav.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.TBDD_INDEX_MANBindingNav, "TBDD_INDEX_MANBindingNav")
Me.TBDD_INDEX_MANBindingNav.MoveFirstItem = Me.ToolStripButton3
Me.TBDD_INDEX_MANBindingNav.MoveLastItem = Me.ToolStripButton6
Me.TBDD_INDEX_MANBindingNav.MoveNextItem = Me.ToolStripButton5
Me.TBDD_INDEX_MANBindingNav.MovePreviousItem = Me.ToolStripButton4
Me.TBDD_INDEX_MANBindingNav.Name = "TBDD_INDEX_MANBindingNav"
Me.TBDD_INDEX_MANBindingNav.PositionItem = Me.ToolStripTextBox1
- Me.TBDD_INDEX_MANBindingNav.Size = New System.Drawing.Size(974, 25)
- Me.TBDD_INDEX_MANBindingNav.TabIndex = 3
- Me.TBDD_INDEX_MANBindingNav.Text = "BindingNavigator1"
'
'ToolStripButton1
'
Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton1.Image = CType(resources.GetObject("ToolStripButton1.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton1, "ToolStripButton1")
Me.ToolStripButton1.Name = "ToolStripButton1"
- Me.ToolStripButton1.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton1.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton1.Text = "Neu hinzufügen"
'
'ToolStripLabel1
'
- Me.ToolStripLabel1.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ToolStripLabel1, "ToolStripLabel1")
Me.ToolStripLabel1.Name = "ToolStripLabel1"
- Me.ToolStripLabel1.Size = New System.Drawing.Size(154, 22)
- Me.ToolStripLabel1.Text = "von {0} manuellen Indexen"
- Me.ToolStripLabel1.ToolTipText = "Die Gesamtanzahl der Elemente."
'
'ToolStripButton2
'
Me.ToolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton2.Image = CType(resources.GetObject("ToolStripButton2.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton2, "ToolStripButton2")
Me.ToolStripButton2.Name = "ToolStripButton2"
- Me.ToolStripButton2.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton2.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton2.Text = "Löschen"
'
'ToolStripButton3
'
Me.ToolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton3.Image = CType(resources.GetObject("ToolStripButton3.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton3, "ToolStripButton3")
Me.ToolStripButton3.Name = "ToolStripButton3"
- Me.ToolStripButton3.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton3.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton3.Text = "Erste verschieben"
'
'ToolStripButton4
'
Me.ToolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton4.Image = CType(resources.GetObject("ToolStripButton4.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton4, "ToolStripButton4")
Me.ToolStripButton4.Name = "ToolStripButton4"
- Me.ToolStripButton4.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton4.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton4.Text = "Vorherige verschieben"
'
'ToolStripSeparator1
'
Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
- Me.ToolStripSeparator1.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator1, "ToolStripSeparator1")
'
'ToolStripTextBox1
'
- Me.ToolStripTextBox1.AccessibleName = "Position"
- Me.ToolStripTextBox1.AutoSize = False
- Me.ToolStripTextBox1.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ToolStripTextBox1, "ToolStripTextBox1")
Me.ToolStripTextBox1.Name = "ToolStripTextBox1"
- Me.ToolStripTextBox1.Size = New System.Drawing.Size(50, 23)
- Me.ToolStripTextBox1.Text = "0"
- Me.ToolStripTextBox1.ToolTipText = "Aktuelle Position"
'
'ToolStripSeparator2
'
Me.ToolStripSeparator2.Name = "ToolStripSeparator2"
- Me.ToolStripSeparator2.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator2, "ToolStripSeparator2")
'
'ToolStripButton5
'
Me.ToolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton5.Image = CType(resources.GetObject("ToolStripButton5.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton5, "ToolStripButton5")
Me.ToolStripButton5.Name = "ToolStripButton5"
- Me.ToolStripButton5.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton5.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton5.Text = "Nächste verschieben"
'
'ToolStripButton6
'
Me.ToolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton6.Image = CType(resources.GetObject("ToolStripButton6.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton6, "ToolStripButton6")
Me.ToolStripButton6.Name = "ToolStripButton6"
- Me.ToolStripButton6.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton6.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton6.Text = "Letzte verschieben"
'
'ToolStripSeparator3
'
Me.ToolStripSeparator3.Name = "ToolStripSeparator3"
- Me.ToolStripSeparator3.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator3, "ToolStripSeparator3")
'
'ToolStripButton7
'
Me.ToolStripButton7.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton7.Image = CType(resources.GetObject("ToolStripButton7.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton7, "ToolStripButton7")
Me.ToolStripButton7.Name = "ToolStripButton7"
- Me.ToolStripButton7.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton7.Text = "Daten speichern"
'
'ToolStripButton41
'
Me.ToolStripButton41.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton41.Image = Global.Global_Indexer.My.Resources.Resources.refresh_16xLG
- Me.ToolStripButton41.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton41, "ToolStripButton41")
Me.ToolStripButton41.Name = "ToolStripButton41"
- Me.ToolStripButton41.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton41.Text = "Refresh"
'
'GUIDTextBox1
'
Me.GUIDTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MANBindingSource, "GUID", True))
- Me.GUIDTextBox1.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GUIDTextBox1.Location = New System.Drawing.Point(9, 48)
+ resources.ApplyResources(Me.GUIDTextBox1, "GUIDTextBox1")
Me.GUIDTextBox1.Name = "GUIDTextBox1"
- Me.GUIDTextBox1.Size = New System.Drawing.Size(70, 23)
- Me.GUIDTextBox1.TabIndex = 1
'
'XtraTabPage6
'
- Me.XtraTabPage6.AutoScroll = True
+ resources.ApplyResources(Me.XtraTabPage6, "XtraTabPage6")
Me.XtraTabPage6.Controls.Add(VARIANTLabel)
Me.XtraTabPage6.Controls.Add(Me.VARIANTComboBox)
Me.XtraTabPage6.Controls.Add(Me.lblsavePostProcess)
@@ -1719,19 +1257,14 @@ Partial Class frmAdministration
Me.XtraTabPage6.Controls.Add(Me.GUIDTextBox4)
Me.XtraTabPage6.Controls.Add(Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator)
Me.XtraTabPage6.Name = "XtraTabPage6"
- Me.XtraTabPage6.Size = New System.Drawing.Size(974, 257)
- Me.XtraTabPage6.Text = "Nachbearbeitungsfunktionen manueller Index"
'
'VARIANTComboBox
'
Me.VARIANTComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "VARIANT", True))
- Me.VARIANTComboBox.Enabled = False
+ resources.ApplyResources(Me.VARIANTComboBox, "VARIANTComboBox")
Me.VARIANTComboBox.FormattingEnabled = True
- Me.VARIANTComboBox.Items.AddRange(New Object() {"ONLY FILE/FOLDER", "FILE AND INDEX"})
- Me.VARIANTComboBox.Location = New System.Drawing.Point(559, 99)
+ Me.VARIANTComboBox.Items.AddRange(New Object() {resources.GetString("VARIANTComboBox.Items"), resources.GetString("VARIANTComboBox.Items1")})
Me.VARIANTComboBox.Name = "VARIANTComboBox"
- Me.VARIANTComboBox.Size = New System.Drawing.Size(202, 21)
- Me.VARIANTComboBox.TabIndex = 81
'
'TBDD_INDEX_MAN_POSTPROCESSINGBindingSource
'
@@ -1740,27 +1273,18 @@ Partial Class frmAdministration
'
'lblsavePostProcess
'
- Me.lblsavePostProcess.AutoSize = True
+ resources.ApplyResources(Me.lblsavePostProcess, "lblsavePostProcess")
Me.lblsavePostProcess.BackColor = System.Drawing.Color.Yellow
- Me.lblsavePostProcess.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblsavePostProcess.Location = New System.Drawing.Point(384, 191)
Me.lblsavePostProcess.Name = "lblsavePostProcess"
- Me.lblsavePostProcess.Size = New System.Drawing.Size(213, 17)
- Me.lblsavePostProcess.TabIndex = 80
- Me.lblsavePostProcess.Text = "Funktion erfolgreich gespeichert!"
- Me.lblsavePostProcess.Visible = False
'
'ComboBox2
'
Me.ComboBox2.DataBindings.Add(New System.Windows.Forms.Binding("SelectedValue", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "IDXMAN_ID", True))
Me.ComboBox2.DataSource = Me.TBWHDD_INDEX_MANBindingSource
Me.ComboBox2.DisplayMember = "NAME"
- Me.ComboBox2.Enabled = False
+ resources.ApplyResources(Me.ComboBox2, "ComboBox2")
Me.ComboBox2.FormattingEnabled = True
- Me.ComboBox2.Location = New System.Drawing.Point(71, 53)
Me.ComboBox2.Name = "ComboBox2"
- Me.ComboBox2.Size = New System.Drawing.Size(180, 21)
- Me.ComboBox2.TabIndex = 34
Me.ComboBox2.ValueMember = "GUID"
'
'TBWHDD_INDEX_MANBindingSource
@@ -1770,172 +1294,113 @@ Partial Class frmAdministration
'
'Function2Label
'
- Me.Function2Label.AutoSize = True
- Me.Function2Label.Location = New System.Drawing.Point(212, 166)
+ resources.ApplyResources(Me.Function2Label, "Function2Label")
Me.Function2Label.Name = "Function2Label"
- Me.Function2Label.Size = New System.Drawing.Size(13, 13)
- Me.Function2Label.TabIndex = 33
- Me.Function2Label.Text = "v"
'
'Function1Label
'
- Me.Function1Label.AutoSize = True
- Me.Function1Label.Location = New System.Drawing.Point(116, 166)
+ resources.ApplyResources(Me.Function1Label, "Function1Label")
Me.Function1Label.Name = "Function1Label"
- Me.Function1Label.Size = New System.Drawing.Size(13, 13)
- Me.Function1Label.TabIndex = 32
- Me.Function1Label.Text = "v"
'
'Text3Label
'
- Me.Text3Label.AutoSize = True
- Me.Text3Label.Location = New System.Drawing.Point(381, 81)
+ resources.ApplyResources(Me.Text3Label, "Text3Label")
Me.Text3Label.Name = "Text3Label"
- Me.Text3Label.Size = New System.Drawing.Size(38, 13)
- Me.Text3Label.TabIndex = 31
- Me.Text3Label.Text = "Label4"
'
'Text2Label
'
- Me.Text2Label.AutoSize = True
- Me.Text2Label.Location = New System.Drawing.Point(184, 81)
+ resources.ApplyResources(Me.Text2Label, "Text2Label")
Me.Text2Label.Name = "Text2Label"
- Me.Text2Label.Size = New System.Drawing.Size(38, 13)
- Me.Text2Label.TabIndex = 30
- Me.Text2Label.Text = "Label4"
'
'Text1Label
'
- Me.Text1Label.AutoSize = True
- Me.Text1Label.Location = New System.Drawing.Point(13, 81)
+ resources.ApplyResources(Me.Text1Label, "Text1Label")
Me.Text1Label.Name = "Text1Label"
- Me.Text1Label.Size = New System.Drawing.Size(38, 13)
- Me.Text1Label.TabIndex = 29
- Me.Text1Label.Text = "Label4"
'
'CHANGED_WHENTextBox4
'
Me.CHANGED_WHENTextBox4.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHENTextBox4.Location = New System.Drawing.Point(565, 227)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox4, "CHANGED_WHENTextBox4")
Me.CHANGED_WHENTextBox4.Name = "CHANGED_WHENTextBox4"
Me.CHANGED_WHENTextBox4.ReadOnly = True
- Me.CHANGED_WHENTextBox4.Size = New System.Drawing.Size(194, 23)
- Me.CHANGED_WHENTextBox4.TabIndex = 28
'
'CHANGED_WHOTextBox4
'
Me.CHANGED_WHOTextBox4.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHOTextBox4.Location = New System.Drawing.Point(387, 227)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox4, "CHANGED_WHOTextBox4")
Me.CHANGED_WHOTextBox4.Name = "CHANGED_WHOTextBox4"
Me.CHANGED_WHOTextBox4.ReadOnly = True
- Me.CHANGED_WHOTextBox4.Size = New System.Drawing.Size(172, 23)
- Me.CHANGED_WHOTextBox4.TabIndex = 26
'
'ADDED_WHENTextBox4
'
Me.ADDED_WHENTextBox4.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHENTextBox4.Location = New System.Drawing.Point(187, 227)
+ resources.ApplyResources(Me.ADDED_WHENTextBox4, "ADDED_WHENTextBox4")
Me.ADDED_WHENTextBox4.Name = "ADDED_WHENTextBox4"
Me.ADDED_WHENTextBox4.ReadOnly = True
- Me.ADDED_WHENTextBox4.Size = New System.Drawing.Size(152, 23)
- Me.ADDED_WHENTextBox4.TabIndex = 24
'
'ADDED_WHOTextBox4
'
Me.ADDED_WHOTextBox4.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHOTextBox4.Location = New System.Drawing.Point(16, 227)
+ resources.ApplyResources(Me.ADDED_WHOTextBox4, "ADDED_WHOTextBox4")
Me.ADDED_WHOTextBox4.Name = "ADDED_WHOTextBox4"
Me.ADDED_WHOTextBox4.ReadOnly = True
- Me.ADDED_WHOTextBox4.Size = New System.Drawing.Size(167, 23)
- Me.ADDED_WHOTextBox4.TabIndex = 22
'
'SEQUENCETextBox1
'
Me.SEQUENCETextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "SEQUENCE", True))
- Me.SEQUENCETextBox1.Enabled = False
- Me.SEQUENCETextBox1.Location = New System.Drawing.Point(16, 185)
+ resources.ApplyResources(Me.SEQUENCETextBox1, "SEQUENCETextBox1")
Me.SEQUENCETextBox1.Name = "SEQUENCETextBox1"
- Me.SEQUENCETextBox1.Size = New System.Drawing.Size(78, 21)
- Me.SEQUENCETextBox1.TabIndex = 20
'
'TEXT3TextBox
'
Me.TEXT3TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "TEXT3", True))
- Me.TEXT3TextBox.Enabled = False
- Me.TEXT3TextBox.Location = New System.Drawing.Point(384, 99)
+ resources.ApplyResources(Me.TEXT3TextBox, "TEXT3TextBox")
Me.TEXT3TextBox.Name = "TEXT3TextBox"
- Me.TEXT3TextBox.Size = New System.Drawing.Size(169, 21)
- Me.TEXT3TextBox.TabIndex = 18
'
'TEXT2TextBox
'
Me.TEXT2TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "TEXT2", True))
- Me.TEXT2TextBox.Enabled = False
- Me.TEXT2TextBox.Location = New System.Drawing.Point(187, 99)
+ resources.ApplyResources(Me.TEXT2TextBox, "TEXT2TextBox")
Me.TEXT2TextBox.Name = "TEXT2TextBox"
- Me.TEXT2TextBox.Size = New System.Drawing.Size(191, 21)
- Me.TEXT2TextBox.TabIndex = 16
'
'TEXT1TextBox
'
Me.TEXT1TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "TEXT1", True))
- Me.TEXT1TextBox.Enabled = False
- Me.TEXT1TextBox.Location = New System.Drawing.Point(16, 99)
+ resources.ApplyResources(Me.TEXT1TextBox, "TEXT1TextBox")
Me.TEXT1TextBox.Name = "TEXT1TextBox"
- Me.TEXT1TextBox.Size = New System.Drawing.Size(165, 21)
- Me.TEXT1TextBox.TabIndex = 14
'
'FUNCTION2TextBox
'
Me.FUNCTION2TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "FUNCTION2", True))
- Me.FUNCTION2TextBox.Enabled = False
- Me.FUNCTION2TextBox.Location = New System.Drawing.Point(211, 184)
+ resources.ApplyResources(Me.FUNCTION2TextBox, "FUNCTION2TextBox")
Me.FUNCTION2TextBox.Name = "FUNCTION2TextBox"
- Me.FUNCTION2TextBox.Size = New System.Drawing.Size(70, 21)
- Me.FUNCTION2TextBox.TabIndex = 12
'
'FUNCTION1TextBox
'
Me.FUNCTION1TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "FUNCTION1", True))
- Me.FUNCTION1TextBox.Enabled = False
- Me.FUNCTION1TextBox.Location = New System.Drawing.Point(119, 184)
+ resources.ApplyResources(Me.FUNCTION1TextBox, "FUNCTION1TextBox")
Me.FUNCTION1TextBox.Name = "FUNCTION1TextBox"
- Me.FUNCTION1TextBox.Size = New System.Drawing.Size(70, 21)
- Me.FUNCTION1TextBox.TabIndex = 10
'
'TYPEComboBox
'
Me.TYPEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "TYPE", True))
- Me.TYPEComboBox.Enabled = False
+ resources.ApplyResources(Me.TYPEComboBox, "TYPEComboBox")
Me.TYPEComboBox.FormattingEnabled = True
- Me.TYPEComboBox.Items.AddRange(New Object() {"VBREPLACE", "VBSPLIT", "REG. EXPRESSION"})
- Me.TYPEComboBox.Location = New System.Drawing.Point(257, 53)
+ Me.TYPEComboBox.Items.AddRange(New Object() {resources.GetString("TYPEComboBox.Items"), resources.GetString("TYPEComboBox.Items1"), resources.GetString("TYPEComboBox.Items2")})
Me.TYPEComboBox.Name = "TYPEComboBox"
- Me.TYPEComboBox.Size = New System.Drawing.Size(121, 21)
- Me.TYPEComboBox.TabIndex = 8
'
'COMMENTTextBox2
'
Me.COMMENTTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "COMMENT", True))
- Me.COMMENTTextBox2.Enabled = False
- Me.COMMENTTextBox2.Location = New System.Drawing.Point(384, 54)
+ resources.ApplyResources(Me.COMMENTTextBox2, "COMMENTTextBox2")
Me.COMMENTTextBox2.Name = "COMMENTTextBox2"
- Me.COMMENTTextBox2.Size = New System.Drawing.Size(381, 21)
- Me.COMMENTTextBox2.TabIndex = 7
'
'GUIDTextBox4
'
Me.GUIDTextBox4.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingSource, "GUID", True))
- Me.GUIDTextBox4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GUIDTextBox4.Location = New System.Drawing.Point(16, 53)
+ resources.ApplyResources(Me.GUIDTextBox4, "GUIDTextBox4")
Me.GUIDTextBox4.Name = "GUIDTextBox4"
Me.GUIDTextBox4.ReadOnly = True
- Me.GUIDTextBox4.Size = New System.Drawing.Size(49, 23)
- Me.GUIDTextBox4.TabIndex = 5
'
'TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator
'
@@ -1945,126 +1410,93 @@ Partial Class frmAdministration
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.CountItemFormat = "von {0} Nachbearbeitungsfunktionen"
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.DeleteItem = Me.ToolStripButton25
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton26, Me.ToolStripButton27, Me.ToolStripSeparator10, Me.ToolStripTextBox4, Me.ToolStripLabel4, Me.ToolStripSeparator11, Me.ToolStripButton28, Me.ToolStripButton29, Me.ToolStripSeparator12, Me.ToolStripButton24, Me.ToolStripButton25, Me.ToolStripButton30, Me.ToolStripButton31})
- Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator, "TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator")
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.MoveFirstItem = Me.ToolStripButton26
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.MoveLastItem = Me.ToolStripButton29
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.MoveNextItem = Me.ToolStripButton28
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.MovePreviousItem = Me.ToolStripButton27
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.Name = "TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator"
Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.PositionItem = Me.ToolStripTextBox4
- Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.Size = New System.Drawing.Size(974, 25)
- Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.TabIndex = 4
- Me.TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator.Text = "BindingNavigator1"
'
'ToolStripButton24
'
Me.ToolStripButton24.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton24.Image = CType(resources.GetObject("ToolStripButton24.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton24, "ToolStripButton24")
Me.ToolStripButton24.Name = "ToolStripButton24"
- Me.ToolStripButton24.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton24.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton24.Text = "Neu hinzufügen"
'
'ToolStripLabel4
'
- Me.ToolStripLabel4.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ToolStripLabel4, "ToolStripLabel4")
Me.ToolStripLabel4.Name = "ToolStripLabel4"
- Me.ToolStripLabel4.Size = New System.Drawing.Size(213, 22)
- Me.ToolStripLabel4.Text = "von {0} Nachbearbeitungsfunktionen"
- Me.ToolStripLabel4.ToolTipText = "Die Gesamtanzahl der Elemente."
'
'ToolStripButton25
'
Me.ToolStripButton25.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton25.Image = CType(resources.GetObject("ToolStripButton25.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton25, "ToolStripButton25")
Me.ToolStripButton25.Name = "ToolStripButton25"
- Me.ToolStripButton25.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton25.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton25.Text = "Löschen"
'
'ToolStripButton26
'
Me.ToolStripButton26.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton26.Image = CType(resources.GetObject("ToolStripButton26.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton26, "ToolStripButton26")
Me.ToolStripButton26.Name = "ToolStripButton26"
- Me.ToolStripButton26.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton26.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton26.Text = "Erste verschieben"
'
'ToolStripButton27
'
Me.ToolStripButton27.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton27.Image = CType(resources.GetObject("ToolStripButton27.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton27, "ToolStripButton27")
Me.ToolStripButton27.Name = "ToolStripButton27"
- Me.ToolStripButton27.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton27.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton27.Text = "Vorherige verschieben"
'
'ToolStripSeparator10
'
Me.ToolStripSeparator10.Name = "ToolStripSeparator10"
- Me.ToolStripSeparator10.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator10, "ToolStripSeparator10")
'
'ToolStripTextBox4
'
- Me.ToolStripTextBox4.AccessibleName = "Position"
- Me.ToolStripTextBox4.AutoSize = False
- Me.ToolStripTextBox4.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ToolStripTextBox4, "ToolStripTextBox4")
Me.ToolStripTextBox4.Name = "ToolStripTextBox4"
- Me.ToolStripTextBox4.Size = New System.Drawing.Size(50, 23)
- Me.ToolStripTextBox4.Text = "0"
- Me.ToolStripTextBox4.ToolTipText = "Aktuelle Position"
'
'ToolStripSeparator11
'
Me.ToolStripSeparator11.Name = "ToolStripSeparator11"
- Me.ToolStripSeparator11.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator11, "ToolStripSeparator11")
'
'ToolStripButton28
'
Me.ToolStripButton28.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton28.Image = CType(resources.GetObject("ToolStripButton28.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton28, "ToolStripButton28")
Me.ToolStripButton28.Name = "ToolStripButton28"
- Me.ToolStripButton28.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton28.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton28.Text = "Nächste verschieben"
'
'ToolStripButton29
'
Me.ToolStripButton29.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton29.Image = CType(resources.GetObject("ToolStripButton29.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton29, "ToolStripButton29")
Me.ToolStripButton29.Name = "ToolStripButton29"
- Me.ToolStripButton29.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton29.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton29.Text = "Letzte verschieben"
'
'ToolStripSeparator12
'
Me.ToolStripSeparator12.Name = "ToolStripSeparator12"
- Me.ToolStripSeparator12.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator12, "ToolStripSeparator12")
'
'ToolStripButton30
'
Me.ToolStripButton30.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton30.Image = CType(resources.GetObject("ToolStripButton30.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton30, "ToolStripButton30")
Me.ToolStripButton30.Name = "ToolStripButton30"
- Me.ToolStripButton30.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton30.Text = "Daten speichern"
'
'ToolStripButton31
'
Me.ToolStripButton31.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton31.Image = Global.Global_Indexer.My.Resources.Resources.refresh_16xLG
- Me.ToolStripButton31.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton31, "ToolStripButton31")
Me.ToolStripButton31.Name = "ToolStripButton31"
- Me.ToolStripButton31.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton31.Text = "Refresh"
'
'XtraTabPage4
'
- Me.XtraTabPage4.Appearance.Header.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical
- Me.XtraTabPage4.Appearance.HeaderActive.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.Vertical
- Me.XtraTabPage4.AutoScroll = True
+ Me.XtraTabPage4.Appearance.Header.GradientMode = CType(resources.GetObject("XtraTabPage4.Appearance.Header.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
+ Me.XtraTabPage4.Appearance.HeaderActive.GradientMode = CType(resources.GetObject("XtraTabPage4.Appearance.HeaderActive.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
+ resources.ApplyResources(Me.XtraTabPage4, "XtraTabPage4")
Me.XtraTabPage4.Controls.Add(Me.btnAddWindowsVariable)
Me.XtraTabPage4.Controls.Add(Me.lblWindowParameter)
Me.XtraTabPage4.Controls.Add(Me.lbFileparameter)
@@ -2093,48 +1525,33 @@ Partial Class frmAdministration
Me.XtraTabPage4.Controls.Add(Me.BindingNavigator2)
Me.XtraTabPage4.Controls.Add(Me.INDEXNAME_AutoIndexTXT)
Me.XtraTabPage4.Name = "XtraTabPage4"
- Me.XtraTabPage4.Size = New System.Drawing.Size(974, 257)
- Me.XtraTabPage4.Text = "automatische/feste Indexe"
'
'btnAddWindowsVariable
'
Me.btnAddWindowsVariable.Image = Global.Global_Indexer.My.Resources.Resources.arrow_previous_16xLG
- Me.btnAddWindowsVariable.Location = New System.Drawing.Point(591, 78)
+ resources.ApplyResources(Me.btnAddWindowsVariable, "btnAddWindowsVariable")
Me.btnAddWindowsVariable.Name = "btnAddWindowsVariable"
- Me.btnAddWindowsVariable.Size = New System.Drawing.Size(31, 22)
- Me.btnAddWindowsVariable.TabIndex = 89
Me.btnAddWindowsVariable.UseVisualStyleBackColor = True
'
'lblWindowParameter
'
- Me.lblWindowParameter.AutoSize = True
- Me.lblWindowParameter.Location = New System.Drawing.Point(626, 60)
+ resources.ApplyResources(Me.lblWindowParameter, "lblWindowParameter")
Me.lblWindowParameter.Name = "lblWindowParameter"
- Me.lblWindowParameter.Size = New System.Drawing.Size(108, 13)
- Me.lblWindowParameter.TabIndex = 88
- Me.lblWindowParameter.Text = "Windows-Parameter:"
'
'lbFileparameter
'
- Me.lbFileparameter.Enabled = False
+ resources.ApplyResources(Me.lbFileparameter, "lbFileparameter")
Me.lbFileparameter.FormattingEnabled = True
- Me.lbFileparameter.Items.AddRange(New Object() {"Dateiname (mit Endung)", "Dateiname (ohne Endung)", "Datei Erstelldatum", "Datei Erstellt wer", "Aktuelles Datum (DD.MM.YYYY)"})
- Me.lbFileparameter.Location = New System.Drawing.Point(629, 78)
+ 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")})
Me.lbFileparameter.Name = "lbFileparameter"
- Me.lbFileparameter.Size = New System.Drawing.Size(188, 82)
- Me.lbFileparameter.TabIndex = 87
'
'ListBox6
'
Me.ListBox6.DataSource = Me.TBDD_INDEX_AUTOMBindingSource
Me.ListBox6.DisplayMember = "INDEXNAME"
- Me.ListBox6.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ListBox6, "ListBox6")
Me.ListBox6.FormattingEnabled = True
- Me.ListBox6.ItemHeight = 15
- Me.ListBox6.Location = New System.Drawing.Point(6, 109)
Me.ListBox6.Name = "ListBox6"
- Me.ListBox6.Size = New System.Drawing.Size(155, 139)
- Me.ListBox6.TabIndex = 86
Me.ListBox6.ValueMember = "GUID"
'
'TBDD_INDEX_AUTOMBindingSource
@@ -2144,148 +1561,94 @@ Partial Class frmAdministration
'
'lblValue
'
- Me.lblValue.AutoSize = True
- Me.lblValue.Location = New System.Drawing.Point(374, 60)
+ resources.ApplyResources(Me.lblValue, "lblValue")
Me.lblValue.Name = "lblValue"
- Me.lblValue.Size = New System.Drawing.Size(166, 13)
- Me.lblValue.TabIndex = 85
- Me.lblValue.Text = "Fester oder Automatischer Wert:"
'
'INDEXNAME_AutoIndexCMB
'
Me.INDEXNAME_AutoIndexCMB.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "INDEXNAME", True))
- Me.INDEXNAME_AutoIndexCMB.Enabled = False
+ resources.ApplyResources(Me.INDEXNAME_AutoIndexCMB, "INDEXNAME_AutoIndexCMB")
Me.INDEXNAME_AutoIndexCMB.FormattingEnabled = True
- Me.INDEXNAME_AutoIndexCMB.Location = New System.Drawing.Point(167, 77)
Me.INDEXNAME_AutoIndexCMB.Name = "INDEXNAME_AutoIndexCMB"
- Me.INDEXNAME_AutoIndexCMB.Size = New System.Drawing.Size(198, 21)
- Me.INDEXNAME_AutoIndexCMB.TabIndex = 84
'
'Label6
'
- Me.Label6.AutoSize = True
- Me.Label6.Location = New System.Drawing.Point(3, 26)
+ resources.ApplyResources(Me.Label6, "Label6")
Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(487, 26)
- Me.Label6.TabIndex = 83
- Me.Label6.Text = "Automatische Indexe werden nach den manuellen Indizes OHNE USERINTERAKTION durchl" & _
- "aufen." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung de" & _
- "r Datei genutzt werden."
'
'lblsaveAutoIndex
'
- Me.lblsaveAutoIndex.AutoSize = True
+ resources.ApplyResources(Me.lblsaveAutoIndex, "lblsaveAutoIndex")
Me.lblsaveAutoIndex.BackColor = System.Drawing.Color.Yellow
- Me.lblsaveAutoIndex.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblsaveAutoIndex.Location = New System.Drawing.Point(531, 192)
Me.lblsaveAutoIndex.Name = "lblsaveAutoIndex"
- Me.lblsaveAutoIndex.Size = New System.Drawing.Size(192, 17)
- Me.lblsaveAutoIndex.TabIndex = 82
- Me.lblsaveAutoIndex.Text = "Index erfolgreich gespeichert!"
- Me.lblsaveAutoIndex.Visible = False
'
'btnSQLViewAuto
'
- Me.btnSQLViewAuto.Enabled = False
+ resources.ApplyResources(Me.btnSQLViewAuto, "btnSQLViewAuto")
Me.btnSQLViewAuto.Image = Global.Global_Indexer.My.Resources.Resources.database_go
- Me.btnSQLViewAuto.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnSQLViewAuto.Location = New System.Drawing.Point(377, 156)
Me.btnSQLViewAuto.Name = "btnSQLViewAuto"
- Me.btnSQLViewAuto.Size = New System.Drawing.Size(148, 24)
- Me.btnSQLViewAuto.TabIndex = 81
- Me.btnSQLViewAuto.Text = "Show SQL-Config"
- Me.btnSQLViewAuto.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnSQLViewAuto.UseVisualStyleBackColor = True
- Me.btnSQLViewAuto.Visible = False
'
'SQL_ACTIVECheckBox
'
Me.SQL_ACTIVECheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_AUTOMBindingSource, "SQL_ACTIVE", True))
- Me.SQL_ACTIVECheckBox.Enabled = False
- Me.SQL_ACTIVECheckBox.Location = New System.Drawing.Point(167, 156)
+ resources.ApplyResources(Me.SQL_ACTIVECheckBox, "SQL_ACTIVECheckBox")
Me.SQL_ACTIVECheckBox.Name = "SQL_ACTIVECheckBox"
- Me.SQL_ACTIVECheckBox.Size = New System.Drawing.Size(198, 24)
- Me.SQL_ACTIVECheckBox.TabIndex = 29
- Me.SQL_ACTIVECheckBox.Text = "Automatischer Index per SQL?"
Me.SQL_ACTIVECheckBox.UseVisualStyleBackColor = True
'
'GUIDAUTO_INDEXTextbox
'
Me.GUIDAUTO_INDEXTextbox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "GUID", True))
- Me.GUIDAUTO_INDEXTextbox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GUIDAUTO_INDEXTextbox.Location = New System.Drawing.Point(7, 77)
+ resources.ApplyResources(Me.GUIDAUTO_INDEXTextbox, "GUIDAUTO_INDEXTextbox")
Me.GUIDAUTO_INDEXTextbox.Name = "GUIDAUTO_INDEXTextbox"
Me.GUIDAUTO_INDEXTextbox.ReadOnly = True
- Me.GUIDAUTO_INDEXTextbox.Size = New System.Drawing.Size(53, 23)
- Me.GUIDAUTO_INDEXTextbox.TabIndex = 5
'
'VALUETextBox
'
Me.VALUETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "VALUE", True))
- Me.VALUETextBox.Enabled = False
- Me.VALUETextBox.Location = New System.Drawing.Point(377, 78)
+ resources.ApplyResources(Me.VALUETextBox, "VALUETextBox")
Me.VALUETextBox.Name = "VALUETextBox"
- Me.VALUETextBox.Size = New System.Drawing.Size(209, 21)
- Me.VALUETextBox.TabIndex = 11
'
'COMMENTTextBox1
'
Me.COMMENTTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "COMMENT", True))
- Me.COMMENTTextBox1.Enabled = False
- Me.COMMENTTextBox1.Location = New System.Drawing.Point(166, 127)
+ resources.ApplyResources(Me.COMMENTTextBox1, "COMMENTTextBox1")
Me.COMMENTTextBox1.Name = "COMMENTTextBox1"
- Me.COMMENTTextBox1.Size = New System.Drawing.Size(419, 21)
- Me.COMMENTTextBox1.TabIndex = 15
'
'ACTIVECheckBox1
'
Me.ACTIVECheckBox1.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_INDEX_AUTOMBindingSource, "ACTIVE", True))
- Me.ACTIVECheckBox1.Location = New System.Drawing.Point(102, 78)
+ resources.ApplyResources(Me.ACTIVECheckBox1, "ACTIVECheckBox1")
Me.ACTIVECheckBox1.Name = "ACTIVECheckBox1"
- Me.ACTIVECheckBox1.Size = New System.Drawing.Size(59, 21)
- Me.ACTIVECheckBox1.TabIndex = 17
- Me.ACTIVECheckBox1.Text = "Aktiv"
Me.ACTIVECheckBox1.UseVisualStyleBackColor = True
'
'ADDED_WHOTextBox3
'
Me.ADDED_WHOTextBox3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHOTextBox3.Location = New System.Drawing.Point(167, 225)
+ resources.ApplyResources(Me.ADDED_WHOTextBox3, "ADDED_WHOTextBox3")
Me.ADDED_WHOTextBox3.Name = "ADDED_WHOTextBox3"
Me.ADDED_WHOTextBox3.ReadOnly = True
- Me.ADDED_WHOTextBox3.Size = New System.Drawing.Size(155, 23)
- Me.ADDED_WHOTextBox3.TabIndex = 19
'
'ADDED_WHENTextBox3
'
Me.ADDED_WHENTextBox3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHENTextBox3.Location = New System.Drawing.Point(356, 225)
+ resources.ApplyResources(Me.ADDED_WHENTextBox3, "ADDED_WHENTextBox3")
Me.ADDED_WHENTextBox3.Name = "ADDED_WHENTextBox3"
Me.ADDED_WHENTextBox3.ReadOnly = True
- Me.ADDED_WHENTextBox3.Size = New System.Drawing.Size(155, 23)
- Me.ADDED_WHENTextBox3.TabIndex = 21
'
'CHANGED_WHOTextBox3
'
Me.CHANGED_WHOTextBox3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHOTextBox3.Location = New System.Drawing.Point(533, 225)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox3, "CHANGED_WHOTextBox3")
Me.CHANGED_WHOTextBox3.Name = "CHANGED_WHOTextBox3"
Me.CHANGED_WHOTextBox3.ReadOnly = True
- Me.CHANGED_WHOTextBox3.Size = New System.Drawing.Size(155, 23)
- Me.CHANGED_WHOTextBox3.TabIndex = 23
'
'CHANGED_WHENTextBox3
'
Me.CHANGED_WHENTextBox3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHENTextBox3.Location = New System.Drawing.Point(694, 225)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox3, "CHANGED_WHENTextBox3")
Me.CHANGED_WHENTextBox3.Name = "CHANGED_WHENTextBox3"
Me.CHANGED_WHENTextBox3.ReadOnly = True
- Me.CHANGED_WHENTextBox3.Size = New System.Drawing.Size(155, 23)
- Me.CHANGED_WHENTextBox3.TabIndex = 25
'
'BindingNavigator2
'
@@ -2294,122 +1657,87 @@ Partial Class frmAdministration
Me.BindingNavigator2.CountItem = Me.ToolStripLabel3
Me.BindingNavigator2.CountItemFormat = "von {0} automatischen Indexen"
Me.BindingNavigator2.DeleteItem = Me.ToolStripButton17
- Me.BindingNavigator2.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.BindingNavigator2, "BindingNavigator2")
Me.BindingNavigator2.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton18, Me.ToolStripButton19, Me.ToolStripSeparator7, Me.ToolStripTextBox3, Me.ToolStripLabel3, Me.ToolStripSeparator8, Me.ToolStripButton20, Me.ToolStripButton21, Me.ToolStripSeparator9, Me.ToolStripButton16, Me.ToolStripButton17, Me.ToolStripButton22})
- Me.BindingNavigator2.Location = New System.Drawing.Point(0, 0)
Me.BindingNavigator2.MoveFirstItem = Me.ToolStripButton18
Me.BindingNavigator2.MoveLastItem = Me.ToolStripButton21
Me.BindingNavigator2.MoveNextItem = Me.ToolStripButton20
Me.BindingNavigator2.MovePreviousItem = Me.ToolStripButton19
Me.BindingNavigator2.Name = "BindingNavigator2"
Me.BindingNavigator2.PositionItem = Me.ToolStripTextBox3
- Me.BindingNavigator2.Size = New System.Drawing.Size(974, 25)
- Me.BindingNavigator2.TabIndex = 4
- Me.BindingNavigator2.Text = "BindingNavigator1"
'
'ToolStripButton16
'
Me.ToolStripButton16.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton16.Image = CType(resources.GetObject("ToolStripButton16.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton16, "ToolStripButton16")
Me.ToolStripButton16.Name = "ToolStripButton16"
- Me.ToolStripButton16.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton16.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton16.Text = "Neu hinzufügen"
'
'ToolStripLabel3
'
- Me.ToolStripLabel3.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ToolStripLabel3, "ToolStripLabel3")
Me.ToolStripLabel3.Name = "ToolStripLabel3"
- Me.ToolStripLabel3.Size = New System.Drawing.Size(179, 22)
- Me.ToolStripLabel3.Text = "von {0} automatischen Indexen"
- Me.ToolStripLabel3.ToolTipText = "Die Gesamtanzahl der Elemente."
'
'ToolStripButton17
'
Me.ToolStripButton17.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton17.Image = CType(resources.GetObject("ToolStripButton17.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton17, "ToolStripButton17")
Me.ToolStripButton17.Name = "ToolStripButton17"
- Me.ToolStripButton17.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton17.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton17.Text = "Löschen"
'
'ToolStripButton18
'
Me.ToolStripButton18.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton18.Image = CType(resources.GetObject("ToolStripButton18.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton18, "ToolStripButton18")
Me.ToolStripButton18.Name = "ToolStripButton18"
- Me.ToolStripButton18.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton18.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton18.Text = "Erste verschieben"
'
'ToolStripButton19
'
Me.ToolStripButton19.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton19.Image = CType(resources.GetObject("ToolStripButton19.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton19, "ToolStripButton19")
Me.ToolStripButton19.Name = "ToolStripButton19"
- Me.ToolStripButton19.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton19.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton19.Text = "Vorherige verschieben"
'
'ToolStripSeparator7
'
Me.ToolStripSeparator7.Name = "ToolStripSeparator7"
- Me.ToolStripSeparator7.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator7, "ToolStripSeparator7")
'
'ToolStripTextBox3
'
- Me.ToolStripTextBox3.AccessibleName = "Position"
- Me.ToolStripTextBox3.AutoSize = False
- Me.ToolStripTextBox3.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ToolStripTextBox3, "ToolStripTextBox3")
Me.ToolStripTextBox3.Name = "ToolStripTextBox3"
- Me.ToolStripTextBox3.Size = New System.Drawing.Size(50, 23)
- Me.ToolStripTextBox3.Text = "0"
- Me.ToolStripTextBox3.ToolTipText = "Aktuelle Position"
'
'ToolStripSeparator8
'
Me.ToolStripSeparator8.Name = "ToolStripSeparator8"
- Me.ToolStripSeparator8.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator8, "ToolStripSeparator8")
'
'ToolStripButton20
'
Me.ToolStripButton20.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton20.Image = CType(resources.GetObject("ToolStripButton20.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton20, "ToolStripButton20")
Me.ToolStripButton20.Name = "ToolStripButton20"
- Me.ToolStripButton20.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton20.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton20.Text = "Nächste verschieben"
'
'ToolStripButton21
'
Me.ToolStripButton21.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton21.Image = CType(resources.GetObject("ToolStripButton21.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton21, "ToolStripButton21")
Me.ToolStripButton21.Name = "ToolStripButton21"
- Me.ToolStripButton21.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton21.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton21.Text = "Letzte verschieben"
'
'ToolStripSeparator9
'
Me.ToolStripSeparator9.Name = "ToolStripSeparator9"
- Me.ToolStripSeparator9.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator9, "ToolStripSeparator9")
'
'ToolStripButton22
'
Me.ToolStripButton22.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton22.Image = CType(resources.GetObject("ToolStripButton22.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton22, "ToolStripButton22")
Me.ToolStripButton22.Name = "ToolStripButton22"
- Me.ToolStripButton22.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton22.Text = "Daten speichern"
'
'INDEXNAME_AutoIndexTXT
'
Me.INDEXNAME_AutoIndexTXT.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_INDEX_AUTOMBindingSource, "INDEXNAME", True))
- Me.INDEXNAME_AutoIndexTXT.Enabled = False
- Me.INDEXNAME_AutoIndexTXT.Location = New System.Drawing.Point(167, 78)
+ resources.ApplyResources(Me.INDEXNAME_AutoIndexTXT, "INDEXNAME_AutoIndexTXT")
Me.INDEXNAME_AutoIndexTXT.Name = "INDEXNAME_AutoIndexTXT"
- Me.INDEXNAME_AutoIndexTXT.Size = New System.Drawing.Size(198, 21)
- Me.INDEXNAME_AutoIndexTXT.TabIndex = 28
'
'XtraTabPage9
'
@@ -2418,20 +1746,13 @@ Partial Class frmAdministration
Me.XtraTabPage9.Controls.Add(Me.Label8)
Me.XtraTabPage9.Controls.Add(Me.ListBoxDokartzuordnung)
Me.XtraTabPage9.Name = "XtraTabPage9"
- Me.XtraTabPage9.Size = New System.Drawing.Size(974, 257)
- Me.XtraTabPage9.Text = "Zuordnung Dokumentenart-Gruppe"
+ resources.ApplyResources(Me.XtraTabPage9, "XtraTabPage9")
'
'Button2
'
- Me.Button2.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.Button2, "Button2")
Me.Button2.Image = Global.Global_Indexer.My.Resources.Resources.delete_12x12
- Me.Button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.Button2.Location = New System.Drawing.Point(275, 152)
Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(75, 23)
- Me.Button2.TabIndex = 15
- Me.Button2.Text = "Löschen"
- Me.Button2.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.Button2.UseVisualStyleBackColor = True
'
'GroupBox3
@@ -2441,45 +1762,28 @@ Partial Class frmAdministration
Me.GroupBox3.Controls.Add(Me.Label7)
Me.GroupBox3.Controls.Add(Me.cmbGroup2Dokart)
Me.GroupBox3.Controls.Add(Me.btnAddDokartGroupRelation)
- Me.GroupBox3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox3.Location = New System.Drawing.Point(275, 28)
+ resources.ApplyResources(Me.GroupBox3, "GroupBox3")
Me.GroupBox3.Name = "GroupBox3"
- Me.GroupBox3.Size = New System.Drawing.Size(235, 118)
- Me.GroupBox3.TabIndex = 14
Me.GroupBox3.TabStop = False
- Me.GroupBox3.Text = "Neue Gruppenzuordnung:"
'
'lblnewDokartZuordnung
'
- Me.lblnewDokartZuordnung.AutoSize = True
+ resources.ApplyResources(Me.lblnewDokartZuordnung, "lblnewDokartZuordnung")
Me.lblnewDokartZuordnung.BackColor = System.Drawing.Color.Yellow
- Me.lblnewDokartZuordnung.Font = New System.Drawing.Font("Segoe UI Semibold", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblnewDokartZuordnung.Location = New System.Drawing.Point(13, 92)
Me.lblnewDokartZuordnung.Name = "lblnewDokartZuordnung"
- Me.lblnewDokartZuordnung.Size = New System.Drawing.Size(179, 13)
- Me.lblnewDokartZuordnung.TabIndex = 80
- Me.lblnewDokartZuordnung.Text = "Zuordnung erfolgreich gespeichert!"
- Me.lblnewDokartZuordnung.Visible = False
'
'Label7
'
- Me.Label7.AutoSize = True
- Me.Label7.Location = New System.Drawing.Point(8, 19)
+ resources.ApplyResources(Me.Label7, "Label7")
Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(108, 15)
- Me.Label7.TabIndex = 11
- Me.Label7.Text = "Gruppe auswählen:"
'
'cmbGroup2Dokart
'
Me.cmbGroup2Dokart.DataSource = Me.TBDD_USER_GROUPSBindingSource
Me.cmbGroup2Dokart.DisplayMember = "NAME"
- Me.cmbGroup2Dokart.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbGroup2Dokart, "cmbGroup2Dokart")
Me.cmbGroup2Dokart.FormattingEnabled = True
- Me.cmbGroup2Dokart.Location = New System.Drawing.Point(11, 37)
Me.cmbGroup2Dokart.Name = "cmbGroup2Dokart"
- Me.cmbGroup2Dokart.Size = New System.Drawing.Size(218, 23)
- Me.cmbGroup2Dokart.TabIndex = 8
Me.cmbGroup2Dokart.ValueMember = "GUID"
'
'TBDD_USER_GROUPSBindingSource
@@ -2489,35 +1793,23 @@ Partial Class frmAdministration
'
'btnAddDokartGroupRelation
'
- Me.btnAddDokartGroupRelation.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnAddDokartGroupRelation, "btnAddDokartGroupRelation")
Me.btnAddDokartGroupRelation.Image = Global.Global_Indexer.My.Resources.Resources.add
- Me.btnAddDokartGroupRelation.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnAddDokartGroupRelation.Location = New System.Drawing.Point(11, 66)
Me.btnAddDokartGroupRelation.Name = "btnAddDokartGroupRelation"
- Me.btnAddDokartGroupRelation.Size = New System.Drawing.Size(219, 23)
- Me.btnAddDokartGroupRelation.TabIndex = 9
- Me.btnAddDokartGroupRelation.Text = "Dokumentart zu Gruppe hinzufügen"
- Me.btnAddDokartGroupRelation.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnAddDokartGroupRelation.UseVisualStyleBackColor = True
'
'Label8
'
- Me.Label8.AutoSize = True
- Me.Label8.Location = New System.Drawing.Point(5, 8)
+ resources.ApplyResources(Me.Label8, "Label8")
Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(272, 13)
- Me.Label8.TabIndex = 13
- Me.Label8.Text = "Die Dokumentart ist zu folgenden Gruppen zugeordnet:"
'
'ListBoxDokartzuordnung
'
Me.ListBoxDokartzuordnung.DataSource = Me.VWGI_DOCTYPE_GROUPBindingSource
Me.ListBoxDokartzuordnung.DisplayMember = "GROUP"
Me.ListBoxDokartzuordnung.FormattingEnabled = True
- Me.ListBoxDokartzuordnung.Location = New System.Drawing.Point(8, 28)
+ resources.ApplyResources(Me.ListBoxDokartzuordnung, "ListBoxDokartzuordnung")
Me.ListBoxDokartzuordnung.Name = "ListBoxDokartzuordnung"
- Me.ListBoxDokartzuordnung.Size = New System.Drawing.Size(255, 160)
- Me.ListBoxDokartzuordnung.TabIndex = 12
Me.ListBoxDokartzuordnung.ValueMember = "GUID"
'
'VWGI_DOCTYPE_GROUPBindingSource
@@ -2529,8 +1821,7 @@ Partial Class frmAdministration
'
Me.XtraTabPage10.Controls.Add(Me.GroupBox4)
Me.XtraTabPage10.Name = "XtraTabPage10"
- Me.XtraTabPage10.Size = New System.Drawing.Size(974, 257)
- Me.XtraTabPage10.Text = "Create Folder for Index"
+ resources.ApplyResources(Me.XtraTabPage10, "XtraTabPage10")
'
'GroupBox4
'
@@ -2539,40 +1830,26 @@ Partial Class frmAdministration
Me.GroupBox4.Controls.Add(Me.btncrFolder_delete)
Me.GroupBox4.Controls.Add(Me.GroupBox5)
Me.GroupBox4.Controls.Add(Me.Label17)
- Me.GroupBox4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox4.Location = New System.Drawing.Point(3, 3)
+ resources.ApplyResources(Me.GroupBox4, "GroupBox4")
Me.GroupBox4.Name = "GroupBox4"
- Me.GroupBox4.Size = New System.Drawing.Size(820, 228)
- Me.GroupBox4.TabIndex = 81
Me.GroupBox4.TabStop = False
- Me.GroupBox4.Text = "Create Folder for Index"
'
'FOLDER_FOR_INDEXTextBox
'
Me.FOLDER_FOR_INDEXTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "FOLDER_FOR_INDEX", True))
- Me.FOLDER_FOR_INDEXTextBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.FOLDER_FOR_INDEXTextBox.Location = New System.Drawing.Point(12, 40)
+ resources.ApplyResources(Me.FOLDER_FOR_INDEXTextBox, "FOLDER_FOR_INDEXTextBox")
Me.FOLDER_FOR_INDEXTextBox.Name = "FOLDER_FOR_INDEXTextBox"
- Me.FOLDER_FOR_INDEXTextBox.Size = New System.Drawing.Size(697, 25)
- Me.FOLDER_FOR_INDEXTextBox.TabIndex = 11
'
'Label25
'
- Me.Label25.AutoSize = True
- Me.Label25.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label25.Location = New System.Drawing.Point(9, 66)
+ resources.ApplyResources(Me.Label25, "Label25")
Me.Label25.Name = "Label25"
- Me.Label25.Size = New System.Drawing.Size(346, 13)
- Me.Label25.TabIndex = 10
- Me.Label25.Text = "Inhalte von Datum-Indizes werden automatisch YYYYMMDD konvertiert"
'
'btncrFolder_delete
'
Me.btncrFolder_delete.Image = Global.Global_Indexer.My.Resources.Resources.delete_12x12
- Me.btncrFolder_delete.Location = New System.Drawing.Point(715, 41)
+ resources.ApplyResources(Me.btncrFolder_delete, "btncrFolder_delete")
Me.btncrFolder_delete.Name = "btncrFolder_delete"
- Me.btncrFolder_delete.Size = New System.Drawing.Size(31, 23)
- Me.btncrFolder_delete.TabIndex = 9
Me.btncrFolder_delete.UseVisualStyleBackColor = True
'
'GroupBox5
@@ -2584,103 +1861,63 @@ Partial Class frmAdministration
Me.GroupBox5.Controls.Add(Me.Label19)
Me.GroupBox5.Controls.Add(Me.Label18)
Me.GroupBox5.Controls.Add(Me.cmbCrFolderIndex)
- Me.GroupBox5.Location = New System.Drawing.Point(12, 92)
+ resources.ApplyResources(Me.GroupBox5, "GroupBox5")
Me.GroupBox5.Name = "GroupBox5"
- Me.GroupBox5.Size = New System.Drawing.Size(530, 130)
- Me.GroupBox5.TabIndex = 8
Me.GroupBox5.TabStop = False
- Me.GroupBox5.Text = "Neuer Unterordner:"
'
'cmbCrFolderDate
'
- Me.cmbCrFolderDate.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbCrFolderDate, "cmbCrFolderDate")
Me.cmbCrFolderDate.FormattingEnabled = True
- Me.cmbCrFolderDate.Items.AddRange(New Object() {"YYYY/MM/DD", "YYYY/MM", "YYYY", "YYYY-MM"})
- Me.cmbCrFolderDate.Location = New System.Drawing.Point(9, 86)
+ Me.cmbCrFolderDate.Items.AddRange(New Object() {resources.GetString("cmbCrFolderDate.Items"), resources.GetString("cmbCrFolderDate.Items1"), resources.GetString("cmbCrFolderDate.Items2"), resources.GetString("cmbCrFolderDate.Items3")})
Me.cmbCrFolderDate.Name = "cmbCrFolderDate"
- Me.cmbCrFolderDate.Size = New System.Drawing.Size(188, 23)
- Me.cmbCrFolderDate.TabIndex = 6
'
'Label20
'
- Me.Label20.AutoSize = True
- Me.Label20.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label20.Location = New System.Drawing.Point(6, 68)
+ resources.ApplyResources(Me.Label20, "Label20")
Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(97, 15)
- Me.Label20.TabIndex = 5
- Me.Label20.Text = "Datum-Struktur:"
'
'btnaddcrFolderParameter
'
- Me.btnaddcrFolderParameter.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnaddcrFolderParameter, "btnaddcrFolderParameter")
Me.btnaddcrFolderParameter.Image = Global.Global_Indexer.My.Resources.Resources.folder_link
- Me.btnaddcrFolderParameter.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnaddcrFolderParameter.Location = New System.Drawing.Point(208, 39)
Me.btnaddcrFolderParameter.Name = "btnaddcrFolderParameter"
- Me.btnaddcrFolderParameter.Size = New System.Drawing.Size(188, 28)
- Me.btnaddcrFolderParameter.TabIndex = 4
- Me.btnaddcrFolderParameter.Text = "Ordner anhängen"
- Me.btnaddcrFolderParameter.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnaddcrFolderParameter.UseVisualStyleBackColor = True
'
'txtcrFoldermanuell
'
- Me.txtcrFoldermanuell.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtcrFoldermanuell.Location = New System.Drawing.Point(208, 86)
+ resources.ApplyResources(Me.txtcrFoldermanuell, "txtcrFoldermanuell")
Me.txtcrFoldermanuell.Name = "txtcrFoldermanuell"
- Me.txtcrFoldermanuell.Size = New System.Drawing.Size(188, 23)
- Me.txtcrFoldermanuell.TabIndex = 3
'
'Label19
'
- Me.Label19.AutoSize = True
- Me.Label19.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label19.Location = New System.Drawing.Point(205, 68)
+ resources.ApplyResources(Me.Label19, "Label19")
Me.Label19.Name = "Label19"
- Me.Label19.Size = New System.Drawing.Size(82, 15)
- Me.Label19.TabIndex = 2
- Me.Label19.Text = "oder manuell:"
'
'Label18
'
- Me.Label18.AutoSize = True
- Me.Label18.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label18.Location = New System.Drawing.Point(6, 24)
+ resources.ApplyResources(Me.Label18, "Label18")
Me.Label18.Name = "Label18"
- Me.Label18.Size = New System.Drawing.Size(204, 15)
- Me.Label18.TabIndex = 1
- Me.Label18.Text = "aus Index-Wert (auto oder manuell):"
'
'cmbCrFolderIndex
'
- Me.cmbCrFolderIndex.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbCrFolderIndex, "cmbCrFolderIndex")
Me.cmbCrFolderIndex.FormattingEnabled = True
- Me.cmbCrFolderIndex.Location = New System.Drawing.Point(9, 42)
Me.cmbCrFolderIndex.Name = "cmbCrFolderIndex"
- Me.cmbCrFolderIndex.Size = New System.Drawing.Size(188, 23)
- Me.cmbCrFolderIndex.TabIndex = 0
'
'Label17
'
- Me.Label17.AutoSize = True
- Me.Label17.Location = New System.Drawing.Point(9, 22)
+ resources.ApplyResources(Me.Label17, "Label17")
Me.Label17.Name = "Label17"
- Me.Label17.Size = New System.Drawing.Size(124, 15)
- Me.Label17.TabIndex = 7
- Me.Label17.Text = "Variabler Ordnerpfad"
'
'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.Enabled = False
+ resources.ApplyResources(Me.ComboBox1, "ComboBox1")
Me.ComboBox1.FormattingEnabled = True
- Me.ComboBox1.Location = New System.Drawing.Point(707, 46)
Me.ComboBox1.Name = "ComboBox1"
- Me.ComboBox1.Size = New System.Drawing.Size(266, 21)
- Me.ComboBox1.TabIndex = 85
Me.ComboBox1.ValueMember = "GUID"
'
'TBDD_EINGANGSARTENBindingSource
@@ -2691,13 +1928,8 @@ Partial Class frmAdministration
'btnadd
'
Me.btnadd.Image = Global.Global_Indexer.My.Resources.Resources.add
- Me.btnadd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnadd.Location = New System.Drawing.Point(172, 475)
+ resources.ApplyResources(Me.btnadd, "btnadd")
Me.btnadd.Name = "btnadd"
- Me.btnadd.Size = New System.Drawing.Size(71, 23)
- Me.btnadd.TabIndex = 84
- Me.btnadd.Text = "Add"
- Me.btnadd.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnadd.UseVisualStyleBackColor = True
'
'cmbWHModule
@@ -2705,10 +1937,8 @@ Partial Class frmAdministration
Me.cmbWHModule.DataSource = Me.TBDD_MODULESBindingSource
Me.cmbWHModule.DisplayMember = "NAME"
Me.cmbWHModule.FormattingEnabled = True
- Me.cmbWHModule.Location = New System.Drawing.Point(3, 475)
+ resources.ApplyResources(Me.cmbWHModule, "cmbWHModule")
Me.cmbWHModule.Name = "cmbWHModule"
- Me.cmbWHModule.Size = New System.Drawing.Size(163, 21)
- Me.cmbWHModule.TabIndex = 82
Me.cmbWHModule.ValueMember = "GUID"
'
'TBDD_MODULESBindingSource
@@ -2718,31 +1948,21 @@ Partial Class frmAdministration
'
'Label2
'
- Me.Label2.AutoSize = True
- Me.Label2.Location = New System.Drawing.Point(3, 457)
+ resources.ApplyResources(Me.Label2, "Label2")
Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(110, 13)
- Me.Label2.TabIndex = 81
- Me.Label2.Text = "Hinzufügen zu Modul:"
'
'Label1
'
- Me.Label1.AutoSize = True
- Me.Label1.Location = New System.Drawing.Point(3, 315)
+ resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(132, 13)
- Me.Label1.TabIndex = 80
- Me.Label1.Text = "Zugeordnet zu Modul(en):"
'
'ListBox2
'
Me.ListBox2.DataSource = Me.TBDD_DOKART_MODULEBindingSource
Me.ListBox2.DisplayMember = "NAME"
Me.ListBox2.FormattingEnabled = True
- Me.ListBox2.Location = New System.Drawing.Point(3, 340)
+ resources.ApplyResources(Me.ListBox2, "ListBox2")
Me.ListBox2.Name = "ListBox2"
- Me.ListBox2.Size = New System.Drawing.Size(203, 108)
- Me.ListBox2.TabIndex = 79
Me.ListBox2.ValueMember = "ID"
'
'TBDD_DOKART_MODULEBindingSource
@@ -2752,55 +1972,36 @@ Partial Class frmAdministration
'
'lblSaveDokart
'
- Me.lblSaveDokart.AutoSize = True
+ resources.ApplyResources(Me.lblSaveDokart, "lblSaveDokart")
Me.lblSaveDokart.BackColor = System.Drawing.Color.Yellow
- Me.lblSaveDokart.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSaveDokart.Location = New System.Drawing.Point(932, 263)
Me.lblSaveDokart.Name = "lblSaveDokart"
- Me.lblSaveDokart.Size = New System.Drawing.Size(240, 17)
- Me.lblSaveDokart.TabIndex = 78
- Me.lblSaveDokart.Text = "Dokumentart erfolgreich gespeichert!"
- Me.lblSaveDokart.Visible = False
'
'btnNamenkonvention
'
- Me.btnNamenkonvention.Enabled = False
+ resources.ApplyResources(Me.btnNamenkonvention, "btnNamenkonvention")
Me.btnNamenkonvention.Image = Global.Global_Indexer.My.Resources.Resources.database_go
- Me.btnNamenkonvention.Location = New System.Drawing.Point(936, 217)
Me.btnNamenkonvention.Name = "btnNamenkonvention"
- Me.btnNamenkonvention.Size = New System.Drawing.Size(38, 23)
- Me.btnNamenkonvention.TabIndex = 29
Me.btnNamenkonvention.UseVisualStyleBackColor = True
'
'Button1
'
- Me.Button1.Enabled = False
- Me.Button1.Location = New System.Drawing.Point(861, 134)
+ resources.ApplyResources(Me.Button1, "Button1")
Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(31, 23)
- Me.Button1.TabIndex = 28
- Me.Button1.Text = "..."
Me.Button1.UseVisualStyleBackColor = True
'
'NAMENKONVENTIONTextBox
'
Me.NAMENKONVENTIONTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "NAMENKONVENTION", True))
- Me.NAMENKONVENTIONTextBox.Enabled = False
- Me.NAMENKONVENTIONTextBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.NAMENKONVENTIONTextBox.Location = New System.Drawing.Point(266, 216)
+ resources.ApplyResources(Me.NAMENKONVENTIONTextBox, "NAMENKONVENTIONTextBox")
Me.NAMENKONVENTIONTextBox.Name = "NAMENKONVENTIONTextBox"
- Me.NAMENKONVENTIONTextBox.Size = New System.Drawing.Size(586, 25)
- Me.NAMENKONVENTIONTextBox.TabIndex = 27
'
'ListBoxDokart
'
Me.ListBoxDokart.DataSource = Me.TBDD_DOKUMENTARTBindingSource
Me.ListBoxDokart.DisplayMember = "BEZEICHNUNG"
Me.ListBoxDokart.FormattingEnabled = True
- Me.ListBoxDokart.Location = New System.Drawing.Point(3, 28)
+ resources.ApplyResources(Me.ListBoxDokart, "ListBoxDokart")
Me.ListBoxDokart.Name = "ListBoxDokart"
- Me.ListBoxDokart.Size = New System.Drawing.Size(240, 251)
- Me.ListBoxDokart.TabIndex = 26
Me.ListBoxDokart.ValueMember = "GUID"
'
'TBDD_DOKUMENTARTBindingNavigator
@@ -2811,242 +2012,180 @@ Partial Class frmAdministration
Me.TBDD_DOKUMENTARTBindingNavigator.CountItemFormat = "von {0} Dokumentarten"
Me.TBDD_DOKUMENTARTBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem
Me.TBDD_DOKUMENTARTBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.TBDD_DOKUMENTARTBindingNavigatorSaveItem, Me.ToolStripComboBox1, Me.ToolStripButton40, Me.tsbtnCopyDoctype})
- Me.TBDD_DOKUMENTARTBindingNavigator.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.TBDD_DOKUMENTARTBindingNavigator, "TBDD_DOKUMENTARTBindingNavigator")
Me.TBDD_DOKUMENTARTBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
Me.TBDD_DOKUMENTARTBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem
Me.TBDD_DOKUMENTARTBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem
Me.TBDD_DOKUMENTARTBindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
Me.TBDD_DOKUMENTARTBindingNavigator.Name = "TBDD_DOKUMENTARTBindingNavigator"
Me.TBDD_DOKUMENTARTBindingNavigator.PositionItem = Me.BindingNavigatorPositionItem
- Me.TBDD_DOKUMENTARTBindingNavigator.Size = New System.Drawing.Size(1255, 25)
- Me.TBDD_DOKUMENTARTBindingNavigator.TabIndex = 2
- Me.TBDD_DOKUMENTARTBindingNavigator.Text = "BindingNavigator1"
'
'BindingNavigatorAddNewItem
'
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorAddNewItem.Image = CType(resources.GetObject("BindingNavigatorAddNewItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem")
Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem"
- Me.BindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorAddNewItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorAddNewItem.Text = "Neu hinzufügen"
'
'BindingNavigatorCountItem
'
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
- Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(130, 22)
- Me.BindingNavigatorCountItem.Text = "von {0} Dokumentarten"
- Me.BindingNavigatorCountItem.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
'
'BindingNavigatorDeleteItem
'
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorDeleteItem.Image = CType(resources.GetObject("BindingNavigatorDeleteItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem")
Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem"
- Me.BindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorDeleteItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorDeleteItem.Text = "Löschen"
'
'BindingNavigatorMoveFirstItem
'
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
- Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveFirstItem.Text = "Erste verschieben"
'
'BindingNavigatorMovePreviousItem
'
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
- Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMovePreviousItem.Text = "Vorherige verschieben"
'
'BindingNavigatorSeparator
'
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
- Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
'
'BindingNavigatorPositionItem
'
- Me.BindingNavigatorPositionItem.AccessibleName = "Position"
- Me.BindingNavigatorPositionItem.AutoSize = False
+ resources.ApplyResources(Me.BindingNavigatorPositionItem, "BindingNavigatorPositionItem")
Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
- Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
- Me.BindingNavigatorPositionItem.Text = "0"
- Me.BindingNavigatorPositionItem.ToolTipText = "Aktuelle Position"
'
'BindingNavigatorSeparator1
'
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
- Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
'
'BindingNavigatorMoveNextItem
'
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
- Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveNextItem.Text = "Nächste verschieben"
'
'BindingNavigatorMoveLastItem
'
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
- Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveLastItem.Text = "Letzte verschieben"
'
'BindingNavigatorSeparator2
'
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
- Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
'
'TBDD_DOKUMENTARTBindingNavigatorSaveItem
'
Me.TBDD_DOKUMENTARTBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.TBDD_DOKUMENTARTBindingNavigatorSaveItem.Image = CType(resources.GetObject("TBDD_DOKUMENTARTBindingNavigatorSaveItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.TBDD_DOKUMENTARTBindingNavigatorSaveItem, "TBDD_DOKUMENTARTBindingNavigatorSaveItem")
Me.TBDD_DOKUMENTARTBindingNavigatorSaveItem.Name = "TBDD_DOKUMENTARTBindingNavigatorSaveItem"
- Me.TBDD_DOKUMENTARTBindingNavigatorSaveItem.Size = New System.Drawing.Size(23, 22)
- Me.TBDD_DOKUMENTARTBindingNavigatorSaveItem.Text = "Daten speichern"
'
'ToolStripComboBox1
'
Me.ToolStripComboBox1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
- Me.ToolStripComboBox1.Items.AddRange(New Object() {"Global-Indexer Dokarten", "Alle Dokarten"})
+ Me.ToolStripComboBox1.Items.AddRange(New Object() {resources.GetString("ToolStripComboBox1.Items"), resources.GetString("ToolStripComboBox1.Items1")})
Me.ToolStripComboBox1.Name = "ToolStripComboBox1"
- Me.ToolStripComboBox1.Size = New System.Drawing.Size(150, 25)
+ resources.ApplyResources(Me.ToolStripComboBox1, "ToolStripComboBox1")
'
'ToolStripButton40
'
Me.ToolStripButton40.Image = Global.Global_Indexer.My.Resources.Resources.refresh_16xLG
- Me.ToolStripButton40.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton40, "ToolStripButton40")
Me.ToolStripButton40.Name = "ToolStripButton40"
- Me.ToolStripButton40.Size = New System.Drawing.Size(95, 22)
- Me.ToolStripButton40.Text = "Aktualisieren"
'
'tsbtnCopyDoctype
'
Me.tsbtnCopyDoctype.Image = Global.Global_Indexer.My.Resources.Resources.Copy_6524
- Me.tsbtnCopyDoctype.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.tsbtnCopyDoctype, "tsbtnCopyDoctype")
Me.tsbtnCopyDoctype.Name = "tsbtnCopyDoctype"
- Me.tsbtnCopyDoctype.Size = New System.Drawing.Size(74, 22)
- Me.tsbtnCopyDoctype.Text = "Kopieren"
'
'DOKART_GUIDTextBox
'
Me.DOKART_GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GUID", True))
- Me.DOKART_GUIDTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.DOKART_GUIDTextBox.Location = New System.Drawing.Point(266, 46)
+ resources.ApplyResources(Me.DOKART_GUIDTextBox, "DOKART_GUIDTextBox")
Me.DOKART_GUIDTextBox.Name = "DOKART_GUIDTextBox"
Me.DOKART_GUIDTextBox.ReadOnly = True
- Me.DOKART_GUIDTextBox.Size = New System.Drawing.Size(51, 23)
- Me.DOKART_GUIDTextBox.TabIndex = 1
'
'BEZEICHNUNGTextBox
'
Me.BEZEICHNUNGTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "BEZEICHNUNG", True))
- Me.BEZEICHNUNGTextBox.Enabled = False
- Me.BEZEICHNUNGTextBox.Location = New System.Drawing.Point(414, 47)
+ resources.ApplyResources(Me.BEZEICHNUNGTextBox, "BEZEICHNUNGTextBox")
Me.BEZEICHNUNGTextBox.Name = "BEZEICHNUNGTextBox"
- Me.BEZEICHNUNGTextBox.Size = New System.Drawing.Size(287, 21)
- Me.BEZEICHNUNGTextBox.TabIndex = 3
'
'KURZNAMETextBox
'
Me.KURZNAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "KURZNAME", True))
- Me.KURZNAMETextBox.Enabled = False
- Me.KURZNAMETextBox.Location = New System.Drawing.Point(979, 46)
+ resources.ApplyResources(Me.KURZNAMETextBox, "KURZNAMETextBox")
Me.KURZNAMETextBox.Name = "KURZNAMETextBox"
- Me.KURZNAMETextBox.Size = New System.Drawing.Size(94, 21)
- Me.KURZNAMETextBox.TabIndex = 7
'
'ZIEL_PFADTextBox
'
Me.ZIEL_PFADTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ZIEL_PFAD", True))
- Me.ZIEL_PFADTextBox.Enabled = False
- Me.ZIEL_PFADTextBox.Location = New System.Drawing.Point(266, 136)
+ resources.ApplyResources(Me.ZIEL_PFADTextBox, "ZIEL_PFADTextBox")
Me.ZIEL_PFADTextBox.Name = "ZIEL_PFADTextBox"
- Me.ZIEL_PFADTextBox.Size = New System.Drawing.Size(585, 21)
- Me.ZIEL_PFADTextBox.TabIndex = 9
'
'BESCHREIBUNGTextBox
'
Me.BESCHREIBUNGTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "BESCHREIBUNG", True))
- Me.BESCHREIBUNGTextBox.Enabled = False
- Me.BESCHREIBUNGTextBox.Location = New System.Drawing.Point(266, 176)
+ resources.ApplyResources(Me.BESCHREIBUNGTextBox, "BESCHREIBUNGTextBox")
Me.BESCHREIBUNGTextBox.Name = "BESCHREIBUNGTextBox"
- Me.BESCHREIBUNGTextBox.Size = New System.Drawing.Size(586, 21)
- Me.BESCHREIBUNGTextBox.TabIndex = 11
'
'AKTIVCheckBox
'
Me.AKTIVCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_DOKUMENTARTBindingSource, "AKTIV", True))
- Me.AKTIVCheckBox.Enabled = False
- Me.AKTIVCheckBox.Location = New System.Drawing.Point(333, 45)
+ resources.ApplyResources(Me.AKTIVCheckBox, "AKTIVCheckBox")
Me.AKTIVCheckBox.Name = "AKTIVCheckBox"
- Me.AKTIVCheckBox.Size = New System.Drawing.Size(63, 24)
- Me.AKTIVCheckBox.TabIndex = 13
- Me.AKTIVCheckBox.Text = "Aktiv"
Me.AKTIVCheckBox.UseVisualStyleBackColor = True
'
'ERSTELLTWERTextBox
'
Me.ERSTELLTWERTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWER", True))
- Me.ERSTELLTWERTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ERSTELLTWERTextBox.Location = New System.Drawing.Point(268, 262)
+ resources.ApplyResources(Me.ERSTELLTWERTextBox, "ERSTELLTWERTextBox")
Me.ERSTELLTWERTextBox.Name = "ERSTELLTWERTextBox"
Me.ERSTELLTWERTextBox.ReadOnly = True
- Me.ERSTELLTWERTextBox.Size = New System.Drawing.Size(156, 23)
- Me.ERSTELLTWERTextBox.TabIndex = 17
'
'ERSTELLTWANNTextBox
'
Me.ERSTELLTWANNTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "ERSTELLTWANN", True))
- Me.ERSTELLTWANNTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ERSTELLTWANNTextBox.Location = New System.Drawing.Point(430, 262)
+ resources.ApplyResources(Me.ERSTELLTWANNTextBox, "ERSTELLTWANNTextBox")
Me.ERSTELLTWANNTextBox.Name = "ERSTELLTWANNTextBox"
Me.ERSTELLTWANNTextBox.ReadOnly = True
- Me.ERSTELLTWANNTextBox.Size = New System.Drawing.Size(156, 23)
- Me.ERSTELLTWANNTextBox.TabIndex = 19
'
'GEANDERTWERTextBox
'
Me.GEANDERTWERTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GEANDERTWER", True))
- Me.GEANDERTWERTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GEANDERTWERTextBox.Location = New System.Drawing.Point(592, 262)
+ resources.ApplyResources(Me.GEANDERTWERTextBox, "GEANDERTWERTextBox")
Me.GEANDERTWERTextBox.Name = "GEANDERTWERTextBox"
Me.GEANDERTWERTextBox.ReadOnly = True
- Me.GEANDERTWERTextBox.Size = New System.Drawing.Size(164, 23)
- Me.GEANDERTWERTextBox.TabIndex = 21
'
'GEAENDERTWANNTextBox
'
Me.GEAENDERTWANNTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "GEAENDERTWANN", True))
- Me.GEAENDERTWANNTextBox.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GEAENDERTWANNTextBox.Location = New System.Drawing.Point(762, 262)
+ resources.ApplyResources(Me.GEAENDERTWANNTextBox, "GEAENDERTWANNTextBox")
Me.GEAENDERTWANNTextBox.Name = "GEAENDERTWANNTextBox"
Me.GEAENDERTWANNTextBox.ReadOnly = True
- Me.GEAENDERTWANNTextBox.Size = New System.Drawing.Size(164, 23)
- Me.GEAENDERTWANNTextBox.TabIndex = 23
'
'OBJEKTTYPComboBox
'
Me.OBJEKTTYPComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_DOKUMENTARTBindingSource, "OBJEKTTYP", True))
- Me.OBJEKTTYPComboBox.Enabled = False
+ resources.ApplyResources(Me.OBJEKTTYPComboBox, "OBJEKTTYPComboBox")
Me.OBJEKTTYPComboBox.FormattingEnabled = True
- Me.OBJEKTTYPComboBox.Location = New System.Drawing.Point(414, 94)
Me.OBJEKTTYPComboBox.Name = "OBJEKTTYPComboBox"
- Me.OBJEKTTYPComboBox.Size = New System.Drawing.Size(438, 21)
- Me.OBJEKTTYPComboBox.TabIndex = 25
'
'XtraTabPage2
'
+ resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
+ Me.XtraTabPage2.Controls.Add(SHORTNAMELabel)
+ Me.XtraTabPage2.Controls.Add(Me.SHORTNAMETextBox)
+ Me.XtraTabPage2.Controls.Add(LANGUAGELabel)
+ Me.XtraTabPage2.Controls.Add(Me.LANGUAGEComboBox)
Me.XtraTabPage2.Controls.Add(Me.lblsaveUSer)
Me.XtraTabPage2.Controls.Add(Me.XtraTabControl3)
Me.XtraTabPage2.Controls.Add(Me.ListBox3)
@@ -3077,38 +2216,24 @@ Partial Class frmAdministration
Me.XtraTabPage2.Controls.Add(CHANGED_WHENLabel1)
Me.XtraTabPage2.Controls.Add(Me.CHANGED_WHENTextBox1)
Me.XtraTabPage2.Controls.Add(Me.BindingNavigator1)
- Me.XtraTabPage2.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.XtraTabPage2.Name = "XtraTabPage2"
- Me.XtraTabPage2.Size = New System.Drawing.Size(1255, 603)
- Me.XtraTabPage2.Text = "User-/Gruppenverwaltung"
'
'lblsaveUSer
'
- Me.lblsaveUSer.AutoSize = True
+ resources.ApplyResources(Me.lblsaveUSer, "lblsaveUSer")
Me.lblsaveUSer.BackColor = System.Drawing.Color.Yellow
- Me.lblsaveUSer.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblsaveUSer.Location = New System.Drawing.Point(559, 199)
Me.lblsaveUSer.Name = "lblsaveUSer"
- Me.lblsaveUSer.Size = New System.Drawing.Size(186, 13)
- Me.lblsaveUSer.TabIndex = 79
- Me.lblsaveUSer.Text = "Userdaten erfolgreich gespeichert!"
- Me.lblsaveUSer.Visible = False
'
'XtraTabControl3
'
- Me.XtraTabControl3.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.XtraTabControl3.AppearancePage.HeaderHotTracked.BackColor = System.Drawing.Color.Fuchsia
- Me.XtraTabControl3.AppearancePage.HeaderHotTracked.BackColor2 = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(128, Byte), Integer), CType(CType(255, Byte), Integer))
- Me.XtraTabControl3.AppearancePage.HeaderHotTracked.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.XtraTabControl3, "XtraTabControl3")
+ Me.XtraTabControl3.AppearancePage.HeaderHotTracked.BackColor = CType(resources.GetObject("XtraTabControl3.AppearancePage.HeaderHotTracked.BackColor"), System.Drawing.Color)
+ Me.XtraTabControl3.AppearancePage.HeaderHotTracked.BackColor2 = CType(resources.GetObject("XtraTabControl3.AppearancePage.HeaderHotTracked.BackColor2"), System.Drawing.Color)
+ Me.XtraTabControl3.AppearancePage.HeaderHotTracked.Font = CType(resources.GetObject("XtraTabControl3.AppearancePage.HeaderHotTracked.Font"), System.Drawing.Font)
Me.XtraTabControl3.AppearancePage.HeaderHotTracked.Options.UseBackColor = True
Me.XtraTabControl3.AppearancePage.HeaderHotTracked.Options.UseFont = True
- Me.XtraTabControl3.Location = New System.Drawing.Point(14, 215)
Me.XtraTabControl3.Name = "XtraTabControl3"
Me.XtraTabControl3.SelectedTabPage = Me.XtraTabPage7
- Me.XtraTabControl3.Size = New System.Drawing.Size(1045, 386)
- Me.XtraTabControl3.TabIndex = 32
Me.XtraTabControl3.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage7, Me.XtraTabPage8})
'
'XtraTabPage7
@@ -3118,20 +2243,13 @@ Partial Class frmAdministration
Me.XtraTabPage7.Controls.Add(Me.Label4)
Me.XtraTabPage7.Controls.Add(Me.ListBoxUserzuordnung)
Me.XtraTabPage7.Name = "XtraTabPage7"
- Me.XtraTabPage7.Size = New System.Drawing.Size(1039, 358)
- Me.XtraTabPage7.Text = "Gruppenzuordnung User"
+ resources.ApplyResources(Me.XtraTabPage7, "XtraTabPage7")
'
'btnDeleteGroupRelation
'
- Me.btnDeleteGroupRelation.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnDeleteGroupRelation, "btnDeleteGroupRelation")
Me.btnDeleteGroupRelation.Image = Global.Global_Indexer.My.Resources.Resources.delete_12x12
- Me.btnDeleteGroupRelation.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnDeleteGroupRelation.Location = New System.Drawing.Point(284, 157)
Me.btnDeleteGroupRelation.Name = "btnDeleteGroupRelation"
- Me.btnDeleteGroupRelation.Size = New System.Drawing.Size(75, 23)
- Me.btnDeleteGroupRelation.TabIndex = 11
- Me.btnDeleteGroupRelation.Text = "Löschen"
- Me.btnDeleteGroupRelation.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnDeleteGroupRelation.UseVisualStyleBackColor = True
'
'GroupBox2
@@ -3141,78 +2259,49 @@ Partial Class frmAdministration
Me.GroupBox2.Controls.Add(Me.Label5)
Me.GroupBox2.Controls.Add(Me.cmbGroup2User)
Me.GroupBox2.Controls.Add(Me.btnAddGroupRelation)
- Me.GroupBox2.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox2.Location = New System.Drawing.Point(284, 33)
+ resources.ApplyResources(Me.GroupBox2, "GroupBox2")
Me.GroupBox2.Name = "GroupBox2"
- Me.GroupBox2.Size = New System.Drawing.Size(230, 118)
- Me.GroupBox2.TabIndex = 10
Me.GroupBox2.TabStop = False
- Me.GroupBox2.Text = "Neue Gruppenzuordnung:"
'
'lblnewUserZuordnung
'
- Me.lblnewUserZuordnung.AutoSize = True
+ resources.ApplyResources(Me.lblnewUserZuordnung, "lblnewUserZuordnung")
Me.lblnewUserZuordnung.BackColor = System.Drawing.Color.Yellow
- Me.lblnewUserZuordnung.Font = New System.Drawing.Font("Segoe UI Semibold", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblnewUserZuordnung.Location = New System.Drawing.Point(8, 92)
Me.lblnewUserZuordnung.Name = "lblnewUserZuordnung"
- Me.lblnewUserZuordnung.Size = New System.Drawing.Size(179, 13)
- Me.lblnewUserZuordnung.TabIndex = 80
- Me.lblnewUserZuordnung.Text = "Zuordnung erfolgreich gespeichert!"
- Me.lblnewUserZuordnung.Visible = False
'
'Label5
'
- Me.Label5.AutoSize = True
- Me.Label5.Location = New System.Drawing.Point(8, 19)
+ resources.ApplyResources(Me.Label5, "Label5")
Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(108, 15)
- Me.Label5.TabIndex = 11
- Me.Label5.Text = "Gruppe auswählen:"
'
'cmbGroup2User
'
Me.cmbGroup2User.DataSource = Me.TBDD_USER_GROUPSBindingSource
Me.cmbGroup2User.DisplayMember = "NAME"
- Me.cmbGroup2User.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbGroup2User, "cmbGroup2User")
Me.cmbGroup2User.FormattingEnabled = True
- Me.cmbGroup2User.Location = New System.Drawing.Point(11, 37)
Me.cmbGroup2User.Name = "cmbGroup2User"
- Me.cmbGroup2User.Size = New System.Drawing.Size(184, 23)
- Me.cmbGroup2User.TabIndex = 8
Me.cmbGroup2User.ValueMember = "GUID"
'
'btnAddGroupRelation
'
- Me.btnAddGroupRelation.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnAddGroupRelation, "btnAddGroupRelation")
Me.btnAddGroupRelation.Image = Global.Global_Indexer.My.Resources.Resources.add
- Me.btnAddGroupRelation.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnAddGroupRelation.Location = New System.Drawing.Point(11, 66)
Me.btnAddGroupRelation.Name = "btnAddGroupRelation"
- Me.btnAddGroupRelation.Size = New System.Drawing.Size(184, 23)
- Me.btnAddGroupRelation.TabIndex = 9
- Me.btnAddGroupRelation.Text = "User zu Gruppe hinzufügen"
- Me.btnAddGroupRelation.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnAddGroupRelation.UseVisualStyleBackColor = True
'
'Label4
'
- Me.Label4.AutoSize = True
- Me.Label4.Location = New System.Drawing.Point(14, 13)
+ resources.ApplyResources(Me.Label4, "Label4")
Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(214, 13)
- Me.Label4.TabIndex = 7
- Me.Label4.Text = "User ist zu folgenden Gruppen zugeordnet:"
'
'ListBoxUserzuordnung
'
Me.ListBoxUserzuordnung.DataSource = Me.VWGI_USER_GROUPS_RELATIONBindingSource
Me.ListBoxUserzuordnung.DisplayMember = "NAME"
Me.ListBoxUserzuordnung.FormattingEnabled = True
- Me.ListBoxUserzuordnung.Location = New System.Drawing.Point(17, 33)
+ resources.ApplyResources(Me.ListBoxUserzuordnung, "ListBoxUserzuordnung")
Me.ListBoxUserzuordnung.Name = "ListBoxUserzuordnung"
- Me.ListBoxUserzuordnung.Size = New System.Drawing.Size(255, 173)
- Me.ListBoxUserzuordnung.TabIndex = 6
Me.ListBoxUserzuordnung.ValueMember = "GUID"
'
'VWGI_USER_GROUPS_RELATIONBindingSource
@@ -3238,89 +2327,58 @@ Partial Class frmAdministration
Me.XtraTabPage8.Controls.Add(Me.CHANGED_WHENTextBox5)
Me.XtraTabPage8.Controls.Add(Me.TBDD_USER_GROUPSBindingNavigator)
Me.XtraTabPage8.Name = "XtraTabPage8"
- Me.XtraTabPage8.Size = New System.Drawing.Size(1039, 358)
- Me.XtraTabPage8.Text = "Gruppenverwaltung"
+ resources.ApplyResources(Me.XtraTabPage8, "XtraTabPage8")
'
'ListBox4
'
Me.ListBox4.DataSource = Me.TBDD_USER_GROUPSBindingSource
Me.ListBox4.DisplayMember = "NAME"
Me.ListBox4.FormattingEnabled = True
- Me.ListBox4.Location = New System.Drawing.Point(8, 32)
+ resources.ApplyResources(Me.ListBox4, "ListBox4")
Me.ListBox4.Name = "ListBox4"
- Me.ListBox4.Size = New System.Drawing.Size(171, 134)
- Me.ListBox4.TabIndex = 80
Me.ListBox4.ValueMember = "GUID"
'
'lblsaveTBDD_USER_GROUPS
'
- Me.lblsaveTBDD_USER_GROUPS.AutoSize = True
+ resources.ApplyResources(Me.lblsaveTBDD_USER_GROUPS, "lblsaveTBDD_USER_GROUPS")
Me.lblsaveTBDD_USER_GROUPS.BackColor = System.Drawing.Color.Yellow
- Me.lblsaveTBDD_USER_GROUPS.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblsaveTBDD_USER_GROUPS.Location = New System.Drawing.Point(763, 53)
Me.lblsaveTBDD_USER_GROUPS.Name = "lblsaveTBDD_USER_GROUPS"
- Me.lblsaveTBDD_USER_GROUPS.Size = New System.Drawing.Size(203, 17)
- Me.lblsaveTBDD_USER_GROUPS.TabIndex = 79
- Me.lblsaveTBDD_USER_GROUPS.Text = "Gruppe erfolgreich gespeichert!"
- Me.lblsaveTBDD_USER_GROUPS.Visible = False
'
'GUIDTextBox5
'
Me.GUIDTextBox5.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "GUID", True))
- Me.GUIDTextBox5.Enabled = False
- Me.GUIDTextBox5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GUIDTextBox5.Location = New System.Drawing.Point(198, 52)
+ resources.ApplyResources(Me.GUIDTextBox5, "GUIDTextBox5")
Me.GUIDTextBox5.Name = "GUIDTextBox5"
- Me.GUIDTextBox5.Size = New System.Drawing.Size(77, 23)
- Me.GUIDTextBox5.TabIndex = 5
'
'NAMETextBox2
'
Me.NAMETextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "NAME", True))
- Me.NAMETextBox2.Location = New System.Drawing.Point(293, 50)
+ resources.ApplyResources(Me.NAMETextBox2, "NAMETextBox2")
Me.NAMETextBox2.Name = "NAMETextBox2"
- Me.NAMETextBox2.Size = New System.Drawing.Size(464, 21)
- Me.NAMETextBox2.TabIndex = 7
'
'ADDED_WHOTextBox5
'
Me.ADDED_WHOTextBox5.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox5.Enabled = False
- Me.ADDED_WHOTextBox5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHOTextBox5.Location = New System.Drawing.Point(198, 98)
+ resources.ApplyResources(Me.ADDED_WHOTextBox5, "ADDED_WHOTextBox5")
Me.ADDED_WHOTextBox5.Name = "ADDED_WHOTextBox5"
- Me.ADDED_WHOTextBox5.Size = New System.Drawing.Size(172, 23)
- Me.ADDED_WHOTextBox5.TabIndex = 9
'
'ADDED_WHENTextBox5
'
Me.ADDED_WHENTextBox5.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox5.Enabled = False
- Me.ADDED_WHENTextBox5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHENTextBox5.Location = New System.Drawing.Point(379, 98)
+ resources.ApplyResources(Me.ADDED_WHENTextBox5, "ADDED_WHENTextBox5")
Me.ADDED_WHENTextBox5.Name = "ADDED_WHENTextBox5"
- Me.ADDED_WHENTextBox5.Size = New System.Drawing.Size(178, 23)
- Me.ADDED_WHENTextBox5.TabIndex = 11
'
'CHANGED_WHOTextBox5
'
Me.CHANGED_WHOTextBox5.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox5.Enabled = False
- Me.CHANGED_WHOTextBox5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHOTextBox5.Location = New System.Drawing.Point(198, 142)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox5, "CHANGED_WHOTextBox5")
Me.CHANGED_WHOTextBox5.Name = "CHANGED_WHOTextBox5"
- Me.CHANGED_WHOTextBox5.Size = New System.Drawing.Size(172, 23)
- Me.CHANGED_WHOTextBox5.TabIndex = 13
'
'CHANGED_WHENTextBox5
'
Me.CHANGED_WHENTextBox5.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USER_GROUPSBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox5.Enabled = False
- Me.CHANGED_WHENTextBox5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHENTextBox5.Location = New System.Drawing.Point(379, 142)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox5, "CHANGED_WHENTextBox5")
Me.CHANGED_WHENTextBox5.Name = "CHANGED_WHENTextBox5"
- Me.CHANGED_WHENTextBox5.Size = New System.Drawing.Size(178, 23)
- Me.CHANGED_WHENTextBox5.TabIndex = 15
'
'TBDD_USER_GROUPSBindingNavigator
'
@@ -3330,130 +2388,95 @@ Partial Class frmAdministration
Me.TBDD_USER_GROUPSBindingNavigator.CountItemFormat = "von {0} Gruppen"
Me.TBDD_USER_GROUPSBindingNavigator.DeleteItem = Me.ToolStripButton33
Me.TBDD_USER_GROUPSBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton34, Me.ToolStripButton35, Me.ToolStripSeparator13, Me.ToolStripTextBox5, Me.ToolStripLabel5, Me.ToolStripSeparator14, Me.ToolStripButton36, Me.ToolStripButton37, Me.ToolStripSeparator15, Me.ToolStripButton32, Me.ToolStripButton33, Me.ToolStripButton38, Me.ToolStripButton39})
- Me.TBDD_USER_GROUPSBindingNavigator.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.TBDD_USER_GROUPSBindingNavigator, "TBDD_USER_GROUPSBindingNavigator")
Me.TBDD_USER_GROUPSBindingNavigator.MoveFirstItem = Me.ToolStripButton34
Me.TBDD_USER_GROUPSBindingNavigator.MoveLastItem = Me.ToolStripButton37
Me.TBDD_USER_GROUPSBindingNavigator.MoveNextItem = Me.ToolStripButton36
Me.TBDD_USER_GROUPSBindingNavigator.MovePreviousItem = Me.ToolStripButton35
Me.TBDD_USER_GROUPSBindingNavigator.Name = "TBDD_USER_GROUPSBindingNavigator"
Me.TBDD_USER_GROUPSBindingNavigator.PositionItem = Me.ToolStripTextBox5
- Me.TBDD_USER_GROUPSBindingNavigator.Size = New System.Drawing.Size(1039, 25)
- Me.TBDD_USER_GROUPSBindingNavigator.TabIndex = 4
- Me.TBDD_USER_GROUPSBindingNavigator.Text = "BindingNavigator3"
'
'ToolStripButton32
'
Me.ToolStripButton32.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton32.Image = CType(resources.GetObject("ToolStripButton32.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton32, "ToolStripButton32")
Me.ToolStripButton32.Name = "ToolStripButton32"
- Me.ToolStripButton32.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton32.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton32.Text = "Neu hinzufügen"
'
'ToolStripLabel5
'
Me.ToolStripLabel5.Name = "ToolStripLabel5"
- Me.ToolStripLabel5.Size = New System.Drawing.Size(93, 22)
- Me.ToolStripLabel5.Text = "von {0} Gruppen"
- Me.ToolStripLabel5.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.ToolStripLabel5, "ToolStripLabel5")
'
'ToolStripButton33
'
Me.ToolStripButton33.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton33.Image = CType(resources.GetObject("ToolStripButton33.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton33, "ToolStripButton33")
Me.ToolStripButton33.Name = "ToolStripButton33"
- Me.ToolStripButton33.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton33.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton33.Text = "Löschen"
'
'ToolStripButton34
'
Me.ToolStripButton34.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton34.Image = CType(resources.GetObject("ToolStripButton34.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton34, "ToolStripButton34")
Me.ToolStripButton34.Name = "ToolStripButton34"
- Me.ToolStripButton34.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton34.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton34.Text = "Erste verschieben"
'
'ToolStripButton35
'
Me.ToolStripButton35.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton35.Image = CType(resources.GetObject("ToolStripButton35.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton35, "ToolStripButton35")
Me.ToolStripButton35.Name = "ToolStripButton35"
- Me.ToolStripButton35.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton35.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton35.Text = "Vorherige verschieben"
'
'ToolStripSeparator13
'
Me.ToolStripSeparator13.Name = "ToolStripSeparator13"
- Me.ToolStripSeparator13.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator13, "ToolStripSeparator13")
'
'ToolStripTextBox5
'
- Me.ToolStripTextBox5.AccessibleName = "Position"
- Me.ToolStripTextBox5.AutoSize = False
+ resources.ApplyResources(Me.ToolStripTextBox5, "ToolStripTextBox5")
Me.ToolStripTextBox5.Name = "ToolStripTextBox5"
- Me.ToolStripTextBox5.Size = New System.Drawing.Size(50, 23)
- Me.ToolStripTextBox5.Text = "0"
- Me.ToolStripTextBox5.ToolTipText = "Aktuelle Position"
'
'ToolStripSeparator14
'
Me.ToolStripSeparator14.Name = "ToolStripSeparator14"
- Me.ToolStripSeparator14.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator14, "ToolStripSeparator14")
'
'ToolStripButton36
'
Me.ToolStripButton36.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton36.Image = CType(resources.GetObject("ToolStripButton36.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton36, "ToolStripButton36")
Me.ToolStripButton36.Name = "ToolStripButton36"
- Me.ToolStripButton36.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton36.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton36.Text = "Nächste verschieben"
'
'ToolStripButton37
'
Me.ToolStripButton37.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton37.Image = CType(resources.GetObject("ToolStripButton37.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton37, "ToolStripButton37")
Me.ToolStripButton37.Name = "ToolStripButton37"
- Me.ToolStripButton37.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton37.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton37.Text = "Letzte verschieben"
'
'ToolStripSeparator15
'
Me.ToolStripSeparator15.Name = "ToolStripSeparator15"
- Me.ToolStripSeparator15.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator15, "ToolStripSeparator15")
'
'ToolStripButton38
'
Me.ToolStripButton38.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton38.Image = CType(resources.GetObject("ToolStripButton38.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton38, "ToolStripButton38")
Me.ToolStripButton38.Name = "ToolStripButton38"
- Me.ToolStripButton38.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton38.Text = "Daten speichern"
'
'ToolStripButton39
'
Me.ToolStripButton39.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton39.Image = Global.Global_Indexer.My.Resources.Resources.arrow_refresh
- Me.ToolStripButton39.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton39, "ToolStripButton39")
Me.ToolStripButton39.Name = "ToolStripButton39"
- Me.ToolStripButton39.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton39.Text = "ToolStripButton15"
'
'ListBox3
'
- Me.ListBox3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
+ resources.ApplyResources(Me.ListBox3, "ListBox3")
Me.ListBox3.DataSource = Me.TBDD_USERBindingSource
Me.ListBox3.DisplayMember = "USERNAME"
Me.ListBox3.FormattingEnabled = True
- Me.ListBox3.Location = New System.Drawing.Point(778, 51)
Me.ListBox3.Name = "ListBox3"
- Me.ListBox3.Size = New System.Drawing.Size(281, 147)
- Me.ListBox3.TabIndex = 31
Me.ListBox3.ValueMember = "GUID"
'
'TBDD_USERBindingSource
@@ -3464,146 +2487,96 @@ Partial Class frmAdministration
'USER_GUIDTextBox
'
Me.USER_GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "GUID", True))
- Me.USER_GUIDTextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.USER_GUIDTextBox.Location = New System.Drawing.Point(14, 51)
+ resources.ApplyResources(Me.USER_GUIDTextBox, "USER_GUIDTextBox")
Me.USER_GUIDTextBox.Name = "USER_GUIDTextBox"
Me.USER_GUIDTextBox.ReadOnly = True
- Me.USER_GUIDTextBox.Size = New System.Drawing.Size(64, 22)
- Me.USER_GUIDTextBox.TabIndex = 4
'
'PRENAMETextBox
'
Me.PRENAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "PRENAME", True))
- Me.PRENAMETextBox.Enabled = False
- Me.PRENAMETextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.PRENAMETextBox.Location = New System.Drawing.Point(90, 51)
+ resources.ApplyResources(Me.PRENAMETextBox, "PRENAMETextBox")
Me.PRENAMETextBox.Name = "PRENAMETextBox"
- Me.PRENAMETextBox.Size = New System.Drawing.Size(200, 22)
- Me.PRENAMETextBox.TabIndex = 6
'
'NAMETextBox1
'
Me.NAMETextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "NAME", True))
- Me.NAMETextBox1.Enabled = False
- Me.NAMETextBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.NAMETextBox1.Location = New System.Drawing.Point(299, 51)
+ resources.ApplyResources(Me.NAMETextBox1, "NAMETextBox1")
Me.NAMETextBox1.Name = "NAMETextBox1"
- Me.NAMETextBox1.Size = New System.Drawing.Size(256, 22)
- Me.NAMETextBox1.TabIndex = 8
'
'USERNAMETextBox
'
Me.USERNAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "USERNAME", True))
- Me.USERNAMETextBox.Enabled = False
- Me.USERNAMETextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.USERNAMETextBox.Location = New System.Drawing.Point(562, 51)
+ resources.ApplyResources(Me.USERNAMETextBox, "USERNAMETextBox")
Me.USERNAMETextBox.Name = "USERNAMETextBox"
- Me.USERNAMETextBox.Size = New System.Drawing.Size(210, 22)
- Me.USERNAMETextBox.TabIndex = 10
'
'EMAILTextBox
'
Me.EMAILTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "EMAIL", True))
- Me.EMAILTextBox.Enabled = False
- Me.EMAILTextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.EMAILTextBox.Location = New System.Drawing.Point(90, 92)
+ resources.ApplyResources(Me.EMAILTextBox, "EMAILTextBox")
Me.EMAILTextBox.Name = "EMAILTextBox"
- Me.EMAILTextBox.Size = New System.Drawing.Size(465, 22)
- Me.EMAILTextBox.TabIndex = 12
'
'LOGGED_INCheckBox
'
Me.LOGGED_INCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_USERBindingSource, "LOGGED_IN", True))
- Me.LOGGED_INCheckBox.Enabled = False
- Me.LOGGED_INCheckBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.LOGGED_INCheckBox.Location = New System.Drawing.Point(90, 131)
+ resources.ApplyResources(Me.LOGGED_INCheckBox, "LOGGED_INCheckBox")
Me.LOGGED_INCheckBox.Name = "LOGGED_INCheckBox"
- Me.LOGGED_INCheckBox.Size = New System.Drawing.Size(92, 24)
- Me.LOGGED_INCheckBox.TabIndex = 14
- Me.LOGGED_INCheckBox.Text = "logged in?"
Me.LOGGED_INCheckBox.UseVisualStyleBackColor = True
'
'LOGGED_WHERETextBox
'
Me.LOGGED_WHERETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "LOGGED_WHERE", True))
- Me.LOGGED_WHERETextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.LOGGED_WHERETextBox.Location = New System.Drawing.Point(203, 133)
+ resources.ApplyResources(Me.LOGGED_WHERETextBox, "LOGGED_WHERETextBox")
Me.LOGGED_WHERETextBox.Name = "LOGGED_WHERETextBox"
Me.LOGGED_WHERETextBox.ReadOnly = True
- Me.LOGGED_WHERETextBox.Size = New System.Drawing.Size(150, 22)
- Me.LOGGED_WHERETextBox.TabIndex = 16
'
'LOG_IN_WHENTextBox
'
Me.LOG_IN_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "LOG_IN_WHEN", True))
- Me.LOG_IN_WHENTextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.LOG_IN_WHENTextBox.Location = New System.Drawing.Point(365, 133)
+ resources.ApplyResources(Me.LOG_IN_WHENTextBox, "LOG_IN_WHENTextBox")
Me.LOG_IN_WHENTextBox.Name = "LOG_IN_WHENTextBox"
Me.LOG_IN_WHENTextBox.ReadOnly = True
- Me.LOG_IN_WHENTextBox.Size = New System.Drawing.Size(190, 22)
- Me.LOG_IN_WHENTextBox.TabIndex = 18
'
'LOG_OUT_WHENTextBox
'
Me.LOG_OUT_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "LOG_OUT_WHEN", True))
- Me.LOG_OUT_WHENTextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.LOG_OUT_WHENTextBox.Location = New System.Drawing.Point(562, 133)
+ resources.ApplyResources(Me.LOG_OUT_WHENTextBox, "LOG_OUT_WHENTextBox")
Me.LOG_OUT_WHENTextBox.Name = "LOG_OUT_WHENTextBox"
Me.LOG_OUT_WHENTextBox.ReadOnly = True
- Me.LOG_OUT_WHENTextBox.Size = New System.Drawing.Size(210, 22)
- Me.LOG_OUT_WHENTextBox.TabIndex = 20
'
'GI_ADMINCheckBox
'
Me.GI_ADMINCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_USERBindingSource, "GI_ADMIN", True))
- Me.GI_ADMINCheckBox.Enabled = False
- Me.GI_ADMINCheckBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GI_ADMINCheckBox.Location = New System.Drawing.Point(562, 90)
+ resources.ApplyResources(Me.GI_ADMINCheckBox, "GI_ADMINCheckBox")
Me.GI_ADMINCheckBox.Name = "GI_ADMINCheckBox"
- Me.GI_ADMINCheckBox.Size = New System.Drawing.Size(90, 24)
- Me.GI_ADMINCheckBox.TabIndex = 22
- Me.GI_ADMINCheckBox.Text = "Admin?"
Me.GI_ADMINCheckBox.UseVisualStyleBackColor = True
'
'ADDED_WHOTextBox1
'
Me.ADDED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHOTextBox1.Location = New System.Drawing.Point(90, 174)
+ resources.ApplyResources(Me.ADDED_WHOTextBox1, "ADDED_WHOTextBox1")
Me.ADDED_WHOTextBox1.Name = "ADDED_WHOTextBox1"
Me.ADDED_WHOTextBox1.ReadOnly = True
- Me.ADDED_WHOTextBox1.Size = New System.Drawing.Size(104, 22)
- Me.ADDED_WHOTextBox1.TabIndex = 24
'
'ADDED_WHENTextBox1
'
Me.ADDED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHENTextBox1.Location = New System.Drawing.Point(203, 174)
+ resources.ApplyResources(Me.ADDED_WHENTextBox1, "ADDED_WHENTextBox1")
Me.ADDED_WHENTextBox1.Name = "ADDED_WHENTextBox1"
Me.ADDED_WHENTextBox1.ReadOnly = True
- Me.ADDED_WHENTextBox1.Size = New System.Drawing.Size(150, 22)
- Me.ADDED_WHENTextBox1.TabIndex = 26
'
'CHANGED_WHOTextBoxUser
'
Me.CHANGED_WHOTextBoxUser.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBoxUser.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHOTextBoxUser.Location = New System.Drawing.Point(365, 174)
+ resources.ApplyResources(Me.CHANGED_WHOTextBoxUser, "CHANGED_WHOTextBoxUser")
Me.CHANGED_WHOTextBoxUser.Name = "CHANGED_WHOTextBoxUser"
Me.CHANGED_WHOTextBoxUser.ReadOnly = True
- Me.CHANGED_WHOTextBoxUser.Size = New System.Drawing.Size(190, 22)
- Me.CHANGED_WHOTextBoxUser.TabIndex = 28
'
'CHANGED_WHENTextBox1
'
Me.CHANGED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHENTextBox1.Location = New System.Drawing.Point(562, 174)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox1, "CHANGED_WHENTextBox1")
Me.CHANGED_WHENTextBox1.Name = "CHANGED_WHENTextBox1"
Me.CHANGED_WHENTextBox1.ReadOnly = True
- Me.CHANGED_WHENTextBox1.Size = New System.Drawing.Size(210, 22)
- Me.CHANGED_WHENTextBox1.TabIndex = 30
'
'BindingNavigator1
'
@@ -3613,136 +2586,101 @@ Partial Class frmAdministration
Me.BindingNavigator1.CountItemFormat = "von {0} Usern"
Me.BindingNavigator1.DeleteItem = Me.ToolStripButton9
Me.BindingNavigator1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton10, Me.ToolStripButton11, Me.ToolStripSeparator4, Me.ToolStripTextBox2, Me.ToolStripLabel2, Me.ToolStripSeparator5, Me.ToolStripButton12, Me.ToolStripButton13, Me.ToolStripSeparator6, Me.ToolStripButton8, Me.ToolStripButton9, Me.ToolStripButton14, Me.tscmbUser, Me.ToolStripButton15, Me.ToolStripButton23})
- Me.BindingNavigator1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.BindingNavigator1, "BindingNavigator1")
Me.BindingNavigator1.MoveFirstItem = Me.ToolStripButton10
Me.BindingNavigator1.MoveLastItem = Me.ToolStripButton13
Me.BindingNavigator1.MoveNextItem = Me.ToolStripButton12
Me.BindingNavigator1.MovePreviousItem = Me.ToolStripButton11
Me.BindingNavigator1.Name = "BindingNavigator1"
Me.BindingNavigator1.PositionItem = Me.ToolStripTextBox2
- Me.BindingNavigator1.Size = New System.Drawing.Size(1255, 25)
- Me.BindingNavigator1.TabIndex = 3
- Me.BindingNavigator1.Text = "BindingNavigator1"
'
'ToolStripButton8
'
Me.ToolStripButton8.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton8.Image = CType(resources.GetObject("ToolStripButton8.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton8, "ToolStripButton8")
Me.ToolStripButton8.Name = "ToolStripButton8"
- Me.ToolStripButton8.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton8.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton8.Text = "Neu hinzufügen"
'
'ToolStripLabel2
'
Me.ToolStripLabel2.Name = "ToolStripLabel2"
- Me.ToolStripLabel2.Size = New System.Drawing.Size(77, 22)
- Me.ToolStripLabel2.Text = "von {0} Usern"
- Me.ToolStripLabel2.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.ToolStripLabel2, "ToolStripLabel2")
'
'ToolStripButton9
'
Me.ToolStripButton9.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton9.Image = CType(resources.GetObject("ToolStripButton9.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton9, "ToolStripButton9")
Me.ToolStripButton9.Name = "ToolStripButton9"
- Me.ToolStripButton9.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton9.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton9.Text = "Löschen"
'
'ToolStripButton10
'
Me.ToolStripButton10.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton10.Image = CType(resources.GetObject("ToolStripButton10.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton10, "ToolStripButton10")
Me.ToolStripButton10.Name = "ToolStripButton10"
- Me.ToolStripButton10.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton10.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton10.Text = "Erste verschieben"
'
'ToolStripButton11
'
Me.ToolStripButton11.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton11.Image = CType(resources.GetObject("ToolStripButton11.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton11, "ToolStripButton11")
Me.ToolStripButton11.Name = "ToolStripButton11"
- Me.ToolStripButton11.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton11.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton11.Text = "Vorherige verschieben"
'
'ToolStripSeparator4
'
Me.ToolStripSeparator4.Name = "ToolStripSeparator4"
- Me.ToolStripSeparator4.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator4, "ToolStripSeparator4")
'
'ToolStripTextBox2
'
- Me.ToolStripTextBox2.AccessibleName = "Position"
- Me.ToolStripTextBox2.AutoSize = False
+ resources.ApplyResources(Me.ToolStripTextBox2, "ToolStripTextBox2")
Me.ToolStripTextBox2.Name = "ToolStripTextBox2"
- Me.ToolStripTextBox2.Size = New System.Drawing.Size(50, 23)
- Me.ToolStripTextBox2.Text = "0"
- Me.ToolStripTextBox2.ToolTipText = "Aktuelle Position"
'
'ToolStripSeparator5
'
Me.ToolStripSeparator5.Name = "ToolStripSeparator5"
- Me.ToolStripSeparator5.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator5, "ToolStripSeparator5")
'
'ToolStripButton12
'
Me.ToolStripButton12.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton12.Image = CType(resources.GetObject("ToolStripButton12.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton12, "ToolStripButton12")
Me.ToolStripButton12.Name = "ToolStripButton12"
- Me.ToolStripButton12.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton12.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton12.Text = "Nächste verschieben"
'
'ToolStripButton13
'
Me.ToolStripButton13.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton13.Image = CType(resources.GetObject("ToolStripButton13.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton13, "ToolStripButton13")
Me.ToolStripButton13.Name = "ToolStripButton13"
- Me.ToolStripButton13.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton13.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton13.Text = "Letzte verschieben"
'
'ToolStripSeparator6
'
Me.ToolStripSeparator6.Name = "ToolStripSeparator6"
- Me.ToolStripSeparator6.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator6, "ToolStripSeparator6")
'
'ToolStripButton14
'
Me.ToolStripButton14.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton14.Image = CType(resources.GetObject("ToolStripButton14.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton14, "ToolStripButton14")
Me.ToolStripButton14.Name = "ToolStripButton14"
- Me.ToolStripButton14.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton14.Text = "Daten speichern"
'
'tscmbUser
'
Me.tscmbUser.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
- Me.tscmbUser.Items.AddRange(New Object() {"Global-Indexer User", "Alle User"})
+ Me.tscmbUser.Items.AddRange(New Object() {resources.GetString("tscmbUser.Items"), resources.GetString("tscmbUser.Items1")})
Me.tscmbUser.Name = "tscmbUser"
- Me.tscmbUser.Size = New System.Drawing.Size(150, 25)
+ resources.ApplyResources(Me.tscmbUser, "tscmbUser")
'
'ToolStripButton15
'
Me.ToolStripButton15.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton15.Image = Global.Global_Indexer.My.Resources.Resources.arrow_refresh
- Me.ToolStripButton15.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton15, "ToolStripButton15")
Me.ToolStripButton15.Name = "ToolStripButton15"
- Me.ToolStripButton15.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton15.Text = "ToolStripButton15"
'
'ToolStripButton23
'
Me.ToolStripButton23.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
Me.ToolStripButton23.Image = Global.Global_Indexer.My.Resources.Resources.Benutzer
- Me.ToolStripButton23.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.ToolStripButton23.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton23, "ToolStripButton23")
Me.ToolStripButton23.Name = "ToolStripButton23"
- Me.ToolStripButton23.Size = New System.Drawing.Size(132, 22)
- Me.ToolStripButton23.Text = "AD User hinzufügen"
- Me.ToolStripButton23.TextAlign = System.Drawing.ContentAlignment.MiddleRight
'
'XtraTabPage5
'
@@ -3750,31 +2688,20 @@ Partial Class frmAdministration
Me.XtraTabPage5.Controls.Add(Me.Button3)
Me.XtraTabPage5.Controls.Add(Me.GroupBox1)
Me.XtraTabPage5.Name = "XtraTabPage5"
- Me.XtraTabPage5.Size = New System.Drawing.Size(1255, 603)
- Me.XtraTabPage5.Text = "Andere Einstellungen"
+ resources.ApplyResources(Me.XtraTabPage5, "XtraTabPage5")
'
'Button4
'
Me.Button4.Image = Global.Global_Indexer.My.Resources.Resources.key_go
- Me.Button4.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.Button4.Location = New System.Drawing.Point(14, 403)
+ resources.ApplyResources(Me.Button4, "Button4")
Me.Button4.Name = "Button4"
- Me.Button4.Size = New System.Drawing.Size(202, 32)
- Me.Button4.TabIndex = 4
- Me.Button4.Text = "LicenseManager"
- Me.Button4.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.Button4.UseVisualStyleBackColor = True
'
'Button3
'
Me.Button3.Image = Global.Global_Indexer.My.Resources.Resources.database_connect
- Me.Button3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.Button3.Location = New System.Drawing.Point(14, 365)
+ resources.ApplyResources(Me.Button3, "Button3")
Me.Button3.Name = "Button3"
- Me.Button3.Size = New System.Drawing.Size(202, 32)
- Me.Button3.TabIndex = 3
- Me.Button3.Text = "SQL-Admin"
- Me.Button3.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.Button3.UseVisualStyleBackColor = True
'
'GroupBox1
@@ -3787,13 +2714,9 @@ Partial Class frmAdministration
Me.GroupBox1.Controls.Add(Me.btnidxemail_Save)
Me.GroupBox1.Controls.Add(Me.btnidxemail_add)
Me.GroupBox1.Controls.Add(Me.ListBoxObjekttypen)
- Me.GroupBox1.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox1.Location = New System.Drawing.Point(3, 3)
+ resources.ApplyResources(Me.GroupBox1, "GroupBox1")
Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Size = New System.Drawing.Size(1056, 356)
- Me.GroupBox1.TabIndex = 0
Me.GroupBox1.TabStop = False
- Me.GroupBox1.Text = "Indexzuordnung für die Email-Indexierung:"
'
'pnlObjekttype_Config
'
@@ -3821,21 +2744,15 @@ Partial Class frmAdministration
Me.pnlObjekttype_Config.Controls.Add(IDX_EMAIL_FROMLabel)
Me.pnlObjekttype_Config.Controls.Add(IDX_EMAIL_TOLabel)
Me.pnlObjekttype_Config.Controls.Add(Me.IDX_EMAIL_FROMComboBox)
- Me.pnlObjekttype_Config.Enabled = False
- Me.pnlObjekttype_Config.Location = New System.Drawing.Point(219, 44)
+ resources.ApplyResources(Me.pnlObjekttype_Config, "pnlObjekttype_Config")
Me.pnlObjekttype_Config.Name = "pnlObjekttype_Config"
- Me.pnlObjekttype_Config.Size = New System.Drawing.Size(573, 300)
- Me.pnlObjekttype_Config.TabIndex = 82
'
'IDX_CHECK_ATTACHMENTComboBox
'
Me.IDX_CHECK_ATTACHMENTComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "IDX_CHECK_ATTACHMENT", True))
- Me.IDX_CHECK_ATTACHMENTComboBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.IDX_CHECK_ATTACHMENTComboBox, "IDX_CHECK_ATTACHMENTComboBox")
Me.IDX_CHECK_ATTACHMENTComboBox.FormattingEnabled = True
- Me.IDX_CHECK_ATTACHMENTComboBox.Location = New System.Drawing.Point(203, 164)
Me.IDX_CHECK_ATTACHMENTComboBox.Name = "IDX_CHECK_ATTACHMENTComboBox"
- Me.IDX_CHECK_ATTACHMENTComboBox.Size = New System.Drawing.Size(189, 25)
- Me.IDX_CHECK_ATTACHMENTComboBox.TabIndex = 81
'
'TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource
'
@@ -3845,182 +2762,116 @@ Partial Class frmAdministration
'CHANGED_WHENTextBox2
'
Me.CHANGED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox2.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHENTextBox2.Location = New System.Drawing.Point(203, 260)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox2, "CHANGED_WHENTextBox2")
Me.CHANGED_WHENTextBox2.Name = "CHANGED_WHENTextBox2"
Me.CHANGED_WHENTextBox2.ReadOnly = True
- Me.CHANGED_WHENTextBox2.Size = New System.Drawing.Size(189, 25)
- Me.CHANGED_WHENTextBox2.TabIndex = 22
'
'CHANGED_WHOTextBox2
'
Me.CHANGED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox2.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHOTextBox2.Location = New System.Drawing.Point(6, 260)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox2, "CHANGED_WHOTextBox2")
Me.CHANGED_WHOTextBox2.Name = "CHANGED_WHOTextBox2"
Me.CHANGED_WHOTextBox2.ReadOnly = True
- Me.CHANGED_WHOTextBox2.Size = New System.Drawing.Size(189, 25)
- Me.CHANGED_WHOTextBox2.TabIndex = 20
'
'ADDED_WHENTextBox2
'
Me.ADDED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox2.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHENTextBox2.Location = New System.Drawing.Point(203, 212)
+ resources.ApplyResources(Me.ADDED_WHENTextBox2, "ADDED_WHENTextBox2")
Me.ADDED_WHENTextBox2.Name = "ADDED_WHENTextBox2"
Me.ADDED_WHENTextBox2.ReadOnly = True
- Me.ADDED_WHENTextBox2.Size = New System.Drawing.Size(189, 25)
- Me.ADDED_WHENTextBox2.TabIndex = 18
'
'ADDED_WHOTextBox2
'
Me.ADDED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox2.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHOTextBox2.Location = New System.Drawing.Point(6, 212)
+ resources.ApplyResources(Me.ADDED_WHOTextBox2, "ADDED_WHOTextBox2")
Me.ADDED_WHOTextBox2.Name = "ADDED_WHOTextBox2"
Me.ADDED_WHOTextBox2.ReadOnly = True
- Me.ADDED_WHOTextBox2.Size = New System.Drawing.Size(189, 25)
- Me.ADDED_WHOTextBox2.TabIndex = 16
'
'GUIDTextBox3
'
Me.GUIDTextBox3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "GUID", True))
- Me.GUIDTextBox3.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GUIDTextBox3.Location = New System.Drawing.Point(6, 22)
+ resources.ApplyResources(Me.GUIDTextBox3, "GUIDTextBox3")
Me.GUIDTextBox3.Name = "GUIDTextBox3"
Me.GUIDTextBox3.ReadOnly = True
- Me.GUIDTextBox3.Size = New System.Drawing.Size(71, 25)
- Me.GUIDTextBox3.TabIndex = 2
'
'IDX_EMAIL_DATE_INComboBox
'
Me.IDX_EMAIL_DATE_INComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "IDX_EMAIL_DATE_IN", True))
- Me.IDX_EMAIL_DATE_INComboBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.IDX_EMAIL_DATE_INComboBox, "IDX_EMAIL_DATE_INComboBox")
Me.IDX_EMAIL_DATE_INComboBox.FormattingEnabled = True
- Me.IDX_EMAIL_DATE_INComboBox.Location = New System.Drawing.Point(6, 164)
Me.IDX_EMAIL_DATE_INComboBox.Name = "IDX_EMAIL_DATE_INComboBox"
- Me.IDX_EMAIL_DATE_INComboBox.Size = New System.Drawing.Size(189, 25)
- Me.IDX_EMAIL_DATE_INComboBox.TabIndex = 14
'
'OBJECTTYPETextBox
'
Me.OBJECTTYPETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "OBJECTTYPE", True))
- Me.OBJECTTYPETextBox.Enabled = False
- Me.OBJECTTYPETextBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.OBJECTTYPETextBox.Location = New System.Drawing.Point(97, 22)
+ resources.ApplyResources(Me.OBJECTTYPETextBox, "OBJECTTYPETextBox")
Me.OBJECTTYPETextBox.Name = "OBJECTTYPETextBox"
- Me.OBJECTTYPETextBox.Size = New System.Drawing.Size(291, 25)
- Me.OBJECTTYPETextBox.TabIndex = 4
'
'IDX_EMAIL_SUBJECTComboBox
'
Me.IDX_EMAIL_SUBJECTComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "IDX_EMAIL_SUBJECT", True))
- Me.IDX_EMAIL_SUBJECTComboBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.IDX_EMAIL_SUBJECTComboBox, "IDX_EMAIL_SUBJECTComboBox")
Me.IDX_EMAIL_SUBJECTComboBox.FormattingEnabled = True
- Me.IDX_EMAIL_SUBJECTComboBox.Location = New System.Drawing.Point(203, 116)
Me.IDX_EMAIL_SUBJECTComboBox.Name = "IDX_EMAIL_SUBJECTComboBox"
- Me.IDX_EMAIL_SUBJECTComboBox.Size = New System.Drawing.Size(189, 25)
- Me.IDX_EMAIL_SUBJECTComboBox.TabIndex = 12
'
'IDX_EMAIL_IDComboBox
'
Me.IDX_EMAIL_IDComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "IDX_EMAIL_ID", True))
- Me.IDX_EMAIL_IDComboBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.IDX_EMAIL_IDComboBox, "IDX_EMAIL_IDComboBox")
Me.IDX_EMAIL_IDComboBox.FormattingEnabled = True
- Me.IDX_EMAIL_IDComboBox.Location = New System.Drawing.Point(6, 70)
Me.IDX_EMAIL_IDComboBox.Name = "IDX_EMAIL_IDComboBox"
- Me.IDX_EMAIL_IDComboBox.Size = New System.Drawing.Size(189, 25)
- Me.IDX_EMAIL_IDComboBox.TabIndex = 6
'
'IDX_EMAIL_TOComboBox
'
Me.IDX_EMAIL_TOComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "IDX_EMAIL_TO", True))
- Me.IDX_EMAIL_TOComboBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.IDX_EMAIL_TOComboBox, "IDX_EMAIL_TOComboBox")
Me.IDX_EMAIL_TOComboBox.FormattingEnabled = True
- Me.IDX_EMAIL_TOComboBox.Location = New System.Drawing.Point(6, 116)
Me.IDX_EMAIL_TOComboBox.Name = "IDX_EMAIL_TOComboBox"
- Me.IDX_EMAIL_TOComboBox.Size = New System.Drawing.Size(189, 25)
- Me.IDX_EMAIL_TOComboBox.TabIndex = 10
'
'IDX_EMAIL_FROMComboBox
'
Me.IDX_EMAIL_FROMComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource, "IDX_EMAIL_FROM", True))
- Me.IDX_EMAIL_FROMComboBox.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.IDX_EMAIL_FROMComboBox, "IDX_EMAIL_FROMComboBox")
Me.IDX_EMAIL_FROMComboBox.FormattingEnabled = True
- Me.IDX_EMAIL_FROMComboBox.Location = New System.Drawing.Point(203, 70)
Me.IDX_EMAIL_FROMComboBox.Name = "IDX_EMAIL_FROMComboBox"
- Me.IDX_EMAIL_FROMComboBox.Size = New System.Drawing.Size(189, 25)
- Me.IDX_EMAIL_FROMComboBox.TabIndex = 8
'
'Label3
'
- Me.Label3.AutoSize = True
- Me.Label3.Font = New System.Drawing.Font("Segoe UI Semibold", 9.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label3.Location = New System.Drawing.Point(8, 24)
+ resources.ApplyResources(Me.Label3, "Label3")
Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(118, 17)
- Me.Label3.TabIndex = 80
- Me.Label3.Text = "Objekttypauswahl:"
'
'lblsavezuordnungIndex
'
- Me.lblsavezuordnungIndex.AutoSize = True
+ resources.ApplyResources(Me.lblsavezuordnungIndex, "lblsavezuordnungIndex")
Me.lblsavezuordnungIndex.BackColor = System.Drawing.Color.Yellow
- Me.lblsavezuordnungIndex.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblsavezuordnungIndex.Location = New System.Drawing.Point(798, 172)
Me.lblsavezuordnungIndex.Name = "lblsavezuordnungIndex"
- Me.lblsavezuordnungIndex.Size = New System.Drawing.Size(227, 17)
- Me.lblsavezuordnungIndex.TabIndex = 79
- Me.lblsavezuordnungIndex.Text = "Zuordnung erfolgreich gespeichert!"
- Me.lblsavezuordnungIndex.Visible = False
'
'btnidxemail_delete
'
- Me.btnidxemail_delete.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnidxemail_delete, "btnidxemail_delete")
Me.btnidxemail_delete.Image = Global.Global_Indexer.My.Resources.Resources.delete2
- Me.btnidxemail_delete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnidxemail_delete.Location = New System.Drawing.Point(925, 136)
Me.btnidxemail_delete.Name = "btnidxemail_delete"
- Me.btnidxemail_delete.Size = New System.Drawing.Size(100, 33)
- Me.btnidxemail_delete.TabIndex = 25
- Me.btnidxemail_delete.Text = "Löschen"
- Me.btnidxemail_delete.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnidxemail_delete.UseVisualStyleBackColor = True
'
'btnidxemail_Save
'
- Me.btnidxemail_Save.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnidxemail_Save, "btnidxemail_Save")
Me.btnidxemail_Save.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
- Me.btnidxemail_Save.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnidxemail_Save.Location = New System.Drawing.Point(925, 97)
Me.btnidxemail_Save.Name = "btnidxemail_Save"
- Me.btnidxemail_Save.Size = New System.Drawing.Size(100, 33)
- Me.btnidxemail_Save.TabIndex = 24
- Me.btnidxemail_Save.Text = "Speichern"
- Me.btnidxemail_Save.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnidxemail_Save.UseVisualStyleBackColor = True
'
'btnidxemail_add
'
- Me.btnidxemail_add.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnidxemail_add, "btnidxemail_add")
Me.btnidxemail_add.Image = Global.Global_Indexer.My.Resources.Resources.add
- Me.btnidxemail_add.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnidxemail_add.Location = New System.Drawing.Point(925, 59)
Me.btnidxemail_add.Name = "btnidxemail_add"
- Me.btnidxemail_add.Size = New System.Drawing.Size(100, 32)
- Me.btnidxemail_add.TabIndex = 23
- Me.btnidxemail_add.Text = "Hinzufügen"
- Me.btnidxemail_add.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnidxemail_add.UseVisualStyleBackColor = True
'
'ListBoxObjekttypen
'
Me.ListBoxObjekttypen.FormattingEnabled = True
- Me.ListBoxObjekttypen.ItemHeight = 17
- Me.ListBoxObjekttypen.Location = New System.Drawing.Point(8, 44)
+ resources.ApplyResources(Me.ListBoxObjekttypen, "ListBoxObjekttypen")
Me.ListBoxObjekttypen.Name = "ListBoxObjekttypen"
- Me.ListBoxObjekttypen.Size = New System.Drawing.Size(205, 293)
- Me.ListBoxObjekttypen.TabIndex = 0
'
'TBGI_CONFIGURATIONBindingSource
'
@@ -4113,18 +2964,37 @@ Partial Class frmAdministration
'
Me.VWGI_DOCTYPE_GROUPTableAdapter.ClearBeforeFill = True
'
+ 'LANGUAGELabel
+ '
+ resources.ApplyResources(LANGUAGELabel, "LANGUAGELabel")
+ LANGUAGELabel.Name = "LANGUAGELabel"
+ '
+ 'LANGUAGEComboBox
+ '
+ Me.LANGUAGEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "LANGUAGE", True))
+ Me.LANGUAGEComboBox.FormattingEnabled = True
+ Me.LANGUAGEComboBox.Items.AddRange(New Object() {resources.GetString("LANGUAGEComboBox.Items"), resources.GetString("LANGUAGEComboBox.Items1")})
+ resources.ApplyResources(Me.LANGUAGEComboBox, "LANGUAGEComboBox")
+ Me.LANGUAGEComboBox.Name = "LANGUAGEComboBox"
+ '
+ 'SHORTNAMELabel
+ '
+ resources.ApplyResources(SHORTNAMELabel, "SHORTNAMELabel")
+ SHORTNAMELabel.Name = "SHORTNAMELabel"
+ '
+ 'SHORTNAMETextBox
+ '
+ Me.SHORTNAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_USERBindingSource, "SHORTNAME", True))
+ resources.ApplyResources(Me.SHORTNAMETextBox, "SHORTNAMETextBox")
+ Me.SHORTNAMETextBox.Name = "SHORTNAMETextBox"
+ '
'frmAdministration
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1261, 653)
Me.Controls.Add(Me.XtraTabControl1)
Me.Controls.Add(Me.StatusStrip1)
- Me.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.Name = "frmAdministration"
- Me.Text = "Administrationskonsole Global Indexer"
CType(Me.XtraTabControl1, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabControl1.ResumeLayout(False)
Me.XtraTabPage1.ResumeLayout(False)
@@ -4492,4 +3362,6 @@ Partial Class frmAdministration
Friend WithEvents ToolStripButton41 As System.Windows.Forms.ToolStripButton
Friend WithEvents lblWDINDEX As System.Windows.Forms.Label
Friend WithEvents pnlObjekttype_Config As System.Windows.Forms.Panel
+ Friend WithEvents SHORTNAMETextBox As System.Windows.Forms.TextBox
+ Friend WithEvents LANGUAGEComboBox As System.Windows.Forms.ComboBox
End Class
diff --git a/Global_Indexer/frmAdministration.en-US.resx b/Global_Indexer/frmAdministration.en-US.resx
new file mode 100644
index 0000000..1974f90
--- /dev/null
+++ b/Global_Indexer/frmAdministration.en-US.resx
@@ -0,0 +1,589 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+
+ AAABAAEAICAAAAEACACoCAAAFgAAACgAAAAgAAAAQAAAAAEACAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAFSZAABUlwAAVJUAAFOVAABPkAAATo4AAFebAABVmgAkkdwAY8T/AEa1+AAAUJEAAmy3AAqR
+ 5QAEc8EAAE2LAABOigAUesQAT7X0AHXL/wBKu/8APLX/AEWu7wAAUpIADpfsAA+f9wAMmPAABHK/AABL
+ iABJr/EAZMX/AFXA/wBAuP8ANrP/AD2j5QAOkOEAEqL6ABCi+gANn/YAAEqHACGS4gBHuv8AP7f/ADi1
+ /wAtsP8AKK//AA57xQAfqv8AGqn+AAyd9gALjN8AAER5ADu1/wA2tP8AMbL/ACew/wAirf8AGan+ABWo
+ /gALofsACYDOAAA9bgAAR4AAAFWcAABWmQAATo0AAEiBACuV4wBJu/8ARLn/ADq3/wA1tP8AMLH/ACuw
+ /wAerP8AEaf/AABIggACa7YAB4DSAABGfwAAWJwAPK32AG/H/gA/qvIAHYfZAABkuQBDsfYATb3/AEO4
+ /wA5q/EAMJveAByq/gAXqP4AFKf+AA+X6wAHkecACZ73AAqM4QAARXwAvub/AJnZ/wCC0P8AVr//AFG+
+ /wAxi8kAAFCPABt1sQAQpf8ADqH7AABEegA2kNEAXsP/AFvB/wAmc6sAAGezAAB81gAAedEAAHXJAABf
+ pQAffLoAG6v+ABOn/gAFgdcAAEN4AKzg/wBoxf8AAHfNAAB/2gAAgN0AAH3ZAAByywAAZbUADaL7AAmP
+ 5wAAQncAcMf+AGrH/wBnxf8AYcT/AABZnwAAc8gAAHjUABan/gAAdMwAHZ30AEi2+wB7zf8Ab8j/AABK
+ hAAAZbMAAG3FAABovgAAV6AAAGa2AABBdgAAasIAec3/AABYogAAX7EAAFumAAyQ5AAAZbYAAEJ1AABu
+ xAAAXagACo/sACl7tgAAQXMAFab8AAiW7gAIgtgAAGKwAI/V/wBtyP8ASqHaAAA+bwAlrv8AIaz/AAxt
+ sgCa2P8AhdH/AHHK/wAxgbkAAFaXACmw/wAAP3IAIoPDAIHQ/wDf8/8AMrH/ABqq/QD///8AUafeAA1l
+ pwAXp/wAodz/AE69/wBUv/8AHY7hACGU5gAkmuoAK6b0AKLb/wCw4f8ASbn9AB2Q4QB9z/8AXMH/AFjA
+ /wBTv/8AUL3/AABhsQADfNcAAD9wAABotgAZm/IAL6XyAJvZ/wBgw/8AVsH/AEOt9AADbb8AAGGyAKzf
+ /wBox/8AZsb/AInT/wAjlOMAC3vQAHfN/wBzyv8ALaTyAHDJ/wA9tv8AKZnkAABntAC85v8Al9j/AAuC
+ 2gAOkOwAueX/AFu9+gAUhNkAAGG0ALfl/wADiegAB3TMAAJ/2wAAc80AAGOsAA1gmwAAcMEAAHjPAABA
+ cQAAAAAAAAAAAAAAAAAAAAAAAG40fIcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGNjd/z9/YcAAAAA
+ uv7WAAAAAAAAAAAAAAAAAAAAAEP8gYGBgYGBfAAAAKiBg6DWsAAAAAAAAAAAAAAAAAAATfqBgYGBgYH7
+ hwCjdIGcVlYEsAAAAAAAAAAAAAAAAABNuPiBgYGmkXh8h/mBgZhWVlagsAAAAAAAAAAAHQAAAABNjqbN
+ te3x9eNWgYH22cf3VlbWAAAAAAAAABDsHQAAAJXltWTtZe7jFO+B8CDxxPLz9NYAAAAAAABCgYGDHR0A
+ TeVk2rSt5hTnxujp4+Pj4+rr1gAAAAAAaoGBgYGDVk0YzuDaZp22H+Hh4eHh4eLj5N7W1gAAAAzXgYGB
+ gdjOVrjZ2madiR/b0NzGaNzGH93eBJ7f1gAAGIGBgYGRy8zNzs9mrokfi9DR0sXFxsbTx5nUl9XWAAAY
+ gYGBkcS9tLRmk5SJilpbW1tbWsXGxjbHyMnKym26AAAYgZG1wGS0rZOdtsFyUGOjfD4+whY2vkm+vr45
+ w7oAAAAYu7y9tK2Tnba3TUMAAAAAAD4+eL6+vr6/qaltugAAAAAYs2S0tZ22t7gAAAAAAAAAPgY+Wrmy
+ sqmpbWG6AAADBJylka2drq8HAAAAAAAAAACwmT5bsbJcqW1hYagBAqSOnKWmnZSJpwcAAAAAAAAAqJmg
+ fFs5XKltqquso0GBgY6ckZOdiR+MAAAAAAAAYzSen6B8W0s6oaIoKKMACIGBkZKTlH6Ki4wGQhEdlUNR
+ lpeYmUNaOjuFG5oGmwAACIhlZmaJiotwjHONgoCBgY6Dg4RDeDGPTG1tG5CHAAAHZX1mZn4KcHFpanN/
+ gIGBgoOEanh5XXqFbW1hhocAAAdvZGVmCnBxIGhyanN0dXZ3amp4eV16em1tYWF7fAAAAAdkZWZmCmdo
+ WCppamoGQhFrW1xdXmxtbWFhYm4AAAAAUVJTVFVWV1hFWStaW1tbWjlcXV5fTmBhYWJjAAAAAAAAQAdB
+ QkNERUYrR0hJSjg5Szo7TBw+TU5PUAAAAAAAAAAAAAAHCCAgITU2Ny04OTA6OyY8PT4APz8AAAAAAAAA
+ AAAAAAcpICAqKywtLi8wMSYmJjIzNAAAAAAAAAAAAAAAAAAABx4fHyAhIiIjBSQlJicaGg4oAAAAAAAA
+ AAAAAAAAAAAHEhMUChUWFxgABRkaGhscHR0AAAAAAAAAAAAAAAAAAAAHCAEJCgsEAAAMDQ4PEBEAAAAA
+ AAAAAAAAAAAAAAAAAAAAAAECAwQAAAAFBgYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
+ AAAAAAAAAAAAAP/4f///wDx//4A4H/+AEA//gAAH+8AAB/HAAAfgQAAHwAAAA4AAAAGAAAABgAAAAMAA
+ AADgAfAA8AfwAMAP8AAAD+AAAB+AAQAAAAGAAAABgAAAAYAAAAHAAAADwAAAB+AAAA/8AACf/AAA//wA
+ AP/8AQD//gMD///Dj///////
+
+
+
\ No newline at end of file
diff --git a/Global_Indexer/frmAdministration.resx b/Global_Indexer/frmAdministration.resx
index 68cf388..2290486 100644
--- a/Global_Indexer/frmAdministration.resx
+++ b/Global_Indexer/frmAdministration.resx
@@ -120,416 +120,3496 @@
False
+
+
+ True
+
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 263, 28
+
+
+ 22, 15
+
+
+ 0
+
+
+ ID:
+
+
+ GUIDLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 19
+
False
+
+ True
+
+
+ 411, 29
+
+
+ 71, 13
+
+
+ 2
+
+
+ Bezeichnung:
+
+
+ BEZEICHNUNGLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 21
+
False
+
+ True
+
+
+ 706, 28
+
+
+ 68, 13
+
+
+ 4
+
+
+ Eingangsart:
+
+
+ EINGANGSART_IDLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 23
+
False
+
+ True
+
+
+ 976, 28
+
+
+ 58, 13
+
+
+ 6
+
+
+ Kurzname:
+
+
+ KURZNAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 24
+
False
+
+ True
+
+
+ 263, 120
+
+
+ 49, 13
+
+
+ 8
+
+
+ Zielpfad:
+
+
+ ZIEL_PFADLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 26
+
False
+
+ True
+
+
+ 264, 160
+
+
+ 75, 13
+
+
+ 10
+
+
+ Beschreibung:
+
+
+ BESCHREIBUNGLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 28
+
False
+
+ True
+
+
+ 263, 200
+
+
+ 97, 13
+
+
+ 14
+
+
+ Namenkonvention:
+
+
+ NAMENKONVENTIONLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 31
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 265, 244
+
+
+ 67, 15
+
+
+ 16
+
+
+ Erstellt wer:
+
+
+ ERSTELLTWERLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 32
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 426, 244
+
+
+ 78, 15
+
+
+ 18
+
+
+ Erstellt wann:
+
+
+ ERSTELLTWANNLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 34
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 589, 244
+
+
+ 81, 15
+
+
+ 20
+
+
+ Geändert wer:
+
+
+ GEANDERTWERLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 36
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 759, 244
+
+
+ 92, 15
+
+
+ 22
+
+
+ Geändert wann:
+
+
+ GEAENDERTWANNLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 38
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 6, 30
+
+
+ 22, 15
+
+
+ 0
+
+
+ ID:
+
+
+ GUIDLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 27
+
False
+
+ True
+
+
+ 159, 30
+
+
+ 71, 13
+
+
+ 3
+
+
+ Bezeichnung:
+
+
+ NAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 24
+
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
+
+
+ XtraTabPage3
+
+
+ 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
+
+
+ XtraTabPage3
+
+
+ 19
+
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
+
+
+ XtraTabPage3
+
+
+ 16
+
False
+
+ True
+
+
+ 674, 30
+
+
+ 68, 13
+
+
+ 16
+
+
+ Reihenfolge:
+
+
+ SEQUENCELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 14
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 159, 207
+
+
+ 67, 15
+
+
+ 19
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 11
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 321, 207
+
+
+ 78, 15
+
+
+ 21
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 9
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 504, 207
+
+
+ 81, 15
+
+
+ 23
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 7
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 674, 207
+
+
+ 92, 15
+
+
+ 25
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 5
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 11, 35
+
+
+ 20, 13
+
+
+ 3
+
+
+ ID:
+
+
+ GUIDLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 7
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 87, 35
+
+
+ 56, 13
+
+
+ 5
+
+
+ Vorname:
+
+
+ PRENAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 9
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 296, 35
+
+
+ 64, 13
+
+
+ 7
+
+
+ Nachname:
+
+
+ NAMELabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 11
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 559, 35
+
+
+ 61, 13
+
+
+ 9
+
+
+ Username:
+
+
+ USERNAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 13
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 87, 76
+
+
+ 37, 13
+
+
+ 11
+
+
+ Email:
+
+
+ EMAILLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 15
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 200, 221
+
+
+ 58, 13
+
+
+ 15
+
+
+ logged wo:
+
+
+ LOGGED_WHERELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 18
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 362, 221
+
+
+ 62, 13
+
+
+ 17
+
+
+ login wann:
+
+
+ LOG_IN_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 20
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 559, 221
+
+
+ 69, 13
+
+
+ 19
+
+
+ logout wann:
+
+
+ LOG_OUT_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 22
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 97, 262
+
+
+ 61, 13
+
+
+ 23
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 25
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 210, 262
+
+
+ 70, 13
+
+
+ 25
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 27
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 372, 262
+
+
+ 73, 13
+
+
+ 27
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 29
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 569, 262
+
+
+ 82, 13
+
+
+ 29
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 31
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 3, 2
+
+
+ 23, 17
+
+
+ 1
+
+
+ ID:
+
+
+ GUIDLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 0
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt
+
+
+ 94, 2
+
+
+ 67, 17
+
+
+ 3
+
+
+ Objekttyp:
+
+
+ OBJECTTYPELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 13
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt
+
+
+ 3, 50
+
+
+ 136, 17
+
+
+ 5
+
+
+ Index für Message-ID:
+
+
+ IDX_EMAIL_IDLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 17
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt
+
+
+ 200, 50
+
+
+ 135, 17
+
+
+ 7
+
+
+ Indexname Mail from:
+
+
+ IDX_EMAIL_FROMLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 21
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt
+
+
+ 3, 98
+
+
+ 122, 17
+
+
+ 9
+
+
+ Indexname Mail To:
+
+
+ IDX_EMAIL_TOLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 22
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt
+
+
+ 200, 98
+
+
+ 149, 17
+
+
+ 11
+
+
+ Indexname Mail Subject:
+
+
+ IDX_EMAIL_SUBJECTLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 18
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt
+
+
+ 3, 144
+
+
+ 119, 17
+
+
+ 13
+
+
+ Indexname Date In:
+
+
+ IDX_EMAIL_DATE_INLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 14
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 3, 192
+
+
+ 74, 17
+
+
+ 15
+
+
+ Erstellt Wer:
+
+
+ ADDED_WHOLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 10
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 200, 192
+
+
+ 81, 17
+
+
+ 17
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 8
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 3, 240
+
+
+ 89, 17
+
+
+ 19
+
+
+ Geändert Wer:
+
+
+ CHANGED_WHOLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 6
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 200, 240
+
+
+ 96, 17
+
+
+ 21
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 4
+
False
+
+ True
+
+
+ Segoe UI, 9.75pt
+
+
+ 200, 144
+
+
+ 304, 17
+
+
+ 80
+
+
+ Indexname für die Markierung: Attachment Ja/Nein
+
+
+ IDX_CHECK_ATTACHMENTLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 3
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 4, 60
+
+
+ 22, 15
+
+
+ 4
+
+
+ ID:
+
+
+ GUIDLabel4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 10
+
False
+
+ True
+
+
+ 164, 61
+
+
+ 65, 13
+
+
+ 8
+
+
+ Indexname:
+
+
+ INDEXNAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 12
+
False
+
+ True
+
+
+ 163, 109
+
+
+ 75, 13
+
+
+ 14
+
+
+ Beschreibung:
+
+
+ COMMENTLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 14
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 164, 209
+
+
+ 67, 15
+
+
+ 18
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 17
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 354, 209
+
+
+ 78, 15
+
+
+ 20
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 19
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 531, 209
+
+
+ 81, 15
+
+
+ 22
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 21
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 691, 209
+
+
+ 92, 15
+
+
+ 24
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 23
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 13, 36
+
+
+ 22, 15
+
+
+ 4
+
+
+ ID:
+
+
+ GUIDLabel5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 29
+
False
+
+ True
+
+
+ 68, 36
+
+
+ 88, 13
+
+
+ 5
+
+
+ Manueller Index:
+
+
+ IDXMAN_IDLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 28
+
False
+
+ True
+
+
+ 381, 36
+
+
+ 65, 13
+
+
+ 6
+
+
+ Kommentar:
+
+
+ COMMENTLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 26
+
False
+
+ True
+
+
+ 254, 35
+
+
+ 35, 13
+
+
+ 7
+
+
+ Type:
+
+
+ TYPELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 24
+
False
+
+ True
+
+
+ 13, 167
+
+
+ 68, 13
+
+
+ 19
+
+
+ Reihenfolge:
+
+
+ SEQUENCELabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 17
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 13, 211
+
+
+ 67, 15
+
+
+ 21
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 15
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 184, 211
+
+
+ 78, 15
+
+
+ 23
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 13
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 384, 211
+
+
+ 81, 15
+
+
+ 25
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 11
+
False
+
+ True
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 562, 211
+
+
+ 92, 15
+
+
+ 27
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 9
+
False
+
+ True
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 195, 32
+
+
+ 22, 15
+
+
+ 4
+
+
+ ID:
+
+
+ GUIDLabel6
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 2
+
False
+
+ True
+
+
+ 290, 32
+
+
+ 78, 13
+
+
+ 6
+
+
+ Gruppenname:
+
+
+ NAMELabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 4
+
False
+
+ True
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 195, 80
+
+
+ 67, 15
+
+
+ 8
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 6
+
False
+
+ True
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 376, 80
+
+
+ 78, 15
+
+
+ 10
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 8
+
False
+
+ True
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 195, 124
+
+
+ 81, 15
+
+
+ 12
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 10
+
False
+
+ True
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 376, 124
+
+
+ 92, 15
+
+
+ 14
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 12
+
False
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 1073, 28
+
+
+ 73, 15
+
+
+ 90
+
+
+ Reihenfolge:
+
+
+ SEQUENCELabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 1
+
False
+
+ True
+
+
+ 556, 81
+
+
+ 113, 13
+
+
+ 80
+
+
+ Anwendungsvariante:
+
+
+ VARIANTLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 0
+
False
+
+ True
+
+
+ 858, 222
+
+
+ 72, 13
+
+
+ 92
+
+
+ .Dateiendung
+
+
+ Label9
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 0
+
17, 17
-
- 921, 17
-
-
- 481, 95
-
+
+ 0, 631
+
+
+
+ 1, 0, 16, 0
+
+
+ 1261, 22
+
+
+ 0
+
+
+ StatusStrip1
+
+
+ StatusStrip1
+
+
+ System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ Fuchsia
+
+
+ 255, 128, 255
+
+
+ Tahoma, 8.25pt, style=Bold, Italic
+
+
+ Fill
+
+
+ 0, 0
+
+
+ 3, 4, 3, 4
+
+
+ True
+
244, 17
-
- 244, 17
-
-
- 134, 17
-
-
- 134, 17
-
+
+ False
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 1079, 45
+
+
+ 67, 24
+
+
+ 91
+
+
+ SEQUENCENumericUpDown
+
+
+ System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 2
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 266, 93
+
+
+ 130, 24
+
+
+ 89
+
+
+ Windream direkt
+
+
+ WINDREAM_DIRECTCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 3
+
+
+ 212, 340
+
+
+ 28, 26
+
+
+ 88
+
+
+ btndeleteZuordnung
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 4
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ 411, 76
+
+
+ 66, 15
+
+
+ 87
+
+
+ Objekttyp:
+
+
+ lblObjekttyp
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 5
+
+
+ Top, Bottom, Left, Right
+
+
+ Fuchsia
+
+
+ 255, 192, 255
+
+
+ Tahoma, 8.25pt, style=Bold, Italic
+
+
+ Vertical
+
+
+ 266, 315
+
275, 56
+
+ True
+
+
+ lblWDINDEX
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 0
+
+
+ OPTIONALCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 1
+
+
+ ListBox5
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 2
+
+
+ btnSQLView
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 3
+
+
+ lblSaveIndexMan
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 4
+
+
+ CHANGED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 6
+
+
+ CHANGED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 8
+
+
+ ADDED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 10
+
+
+ ADDED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 12
+
+
+ ACTIVECheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 13
+
+
+ SEQUENCETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 15
+
+
+ DEFAULT_VALUETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 17
+
+
+ SUGGESTIONCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 18
+
+
+ DATATYPEComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 20
+
+
+ COMMENTTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 22
+
+
+ WD_INDEXComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 23
+
+
+ NAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 25
+
+
+ TBDD_INDEX_MANBindingNav
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 26
+
+
+ GUIDTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 28
+
+
+ 974, 257
+
+
+ manuelle Indexe
+
+
+ XtraTabPage3
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl2
+
+
+ 0
+
+
+ 980, 285
+
+
+ 86
+
325, 134
-
- 1248, 134
-
-
- 17, 95
-
-
- 17, 95
-
-
- 275, 56
-
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
- pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
- Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
- /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
- zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
- IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
- rkJggg==
-
+
+ True
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
- DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
- rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
- i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
- 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
- QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
- bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
-
+
+ VARIANTComboBox
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
- wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
- v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
- UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
- Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
- lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
-
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
- 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
- Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
- 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
-
+
+ XtraTabPage6
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
- n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
- N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
- oAc0QjgAAAAASUVORK5CYII=
-
+
+ 1
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
- h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
- twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
- kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
- WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
- 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
-
+
+ lblsavePostProcess
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
- dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
-
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 511, 173
-
-
- 511, 173
-
-
- 1187, 173
-
-
- 1187, 173
-
-
- 325, 134
-
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
- pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
- Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
- /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
- zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
- IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
- rkJggg==
-
+
+ XtraTabPage6
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
- DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
- rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
- i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
- 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
- QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
- bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
-
+
+ 2
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
- wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
- v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
- UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
- Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
- lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
-
+
+ ComboBox2
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
- 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
- Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
- 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
-
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
- n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
- N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
- oAc0QjgAAAAASUVORK5CYII=
-
+
+ XtraTabPage6
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
- h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
- twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
- kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
- WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
- 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
-
+
+ 3
-
-
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
- wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
- dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
-
+
+ Function2Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 4
+
+
+ Function1Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 5
+
+
+ Text3Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 6
+
+
+ Text2Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 7
+
+
+ Text1Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 8
+
+
+ CHANGED_WHENTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 10
+
+
+ CHANGED_WHOTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 12
+
+
+ ADDED_WHENTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 14
+
+
+ ADDED_WHOTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 16
+
+
+ SEQUENCETextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 18
+
+
+ TEXT3TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 19
+
+
+ TEXT2TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 20
+
+
+ TEXT1TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 21
+
+
+ FUNCTION2TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 22
+
+
+ FUNCTION1TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 23
+
+
+ TYPEComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 25
+
+
+ COMMENTTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 27
+
+
+ GUIDTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 30
+
+
+ TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 31
+
+
+ 974, 257
+
+
+ Nachbearbeitungsfunktionen manueller Index
+
+
+ XtraTabPage6
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl2
+
+
+ 1
+
+
+ Vertical
+
+
+ Vertical
+
+
+ True
+
+
+ 591, 78
+
+
+ 31, 22
+
+
+ 89
+
+
+ btnAddWindowsVariable
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 0
+
+
+ True
+
+
+ 626, 60
+
+
+ 108, 13
+
+
+ 88
+
+
+ Windows-Parameter:
+
+
+ lblWindowParameter
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 1
+
+
+ False
+
+
+ Dateiname (mit Endung)
+
+
+ Dateiname (ohne Endung)
+
+
+ Datei Erstelldatum
+
+
+ Datei Erstellt wer
+
+
+ Aktuelles Datum (DD.MM.YYYY)
+
+
+ Username
+
+
+ Usercode
+
+
+ 629, 78
+
+
+ 188, 82
+
+
+ 87
+
+
+ lbFileparameter
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 2
17, 173
-
- 17, 173
-
+
+ Segoe UI Semibold, 9pt, style=Bold
+
+
+ 15
+
+
+ 6, 109
+
+
+ 155, 139
+
+
+ 86
+
+
+ ListBox6
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 3
+
+
+ True
+
+
+ 374, 60
+
+
+ 166, 13
+
+
+ 85
+
+
+ Fester oder Automatischer Wert:
+
+
+ lblValue
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 4
+
+
+ False
+
+
+ 167, 77
+
+
+ 198, 21
+
+
+ 84
+
+
+ INDEXNAME_AutoIndexCMB
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 5
+
+
+ True
+
+
+ 3, 26
+
+
+ 487, 26
+
+
+ 83
+
+
+ Automatische Indexe werden nach den manuellen Indizes OHNE USERINTERAKTION durchlaufen.
+Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei genutzt werden.
+
+
+ Label6
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 6
+
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ 531, 192
+
+
+ 192, 17
+
+
+ 82
+
+
+ Index erfolgreich gespeichert!
+
+
+ False
+
+
+ lblsaveAutoIndex
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 7
+
+
+ False
+
+
+ MiddleLeft
+
+
+ 377, 156
+
+
+ 148, 24
+
+
+ 81
+
+
+ Show SQL-Config
+
+
+ MiddleRight
+
+
+ False
+
+
+ btnSQLViewAuto
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 8
+
+
+ False
+
+
+ 167, 156
+
+
+ 198, 24
+
+
+ 29
+
+
+ Automatischer Index per SQL?
+
+
+ SQL_ACTIVECheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 9
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 7, 77
+
+
+ 53, 23
+
+
+ 5
+
+
+ GUIDAUTO_INDEXTextbox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 11
+
+
+ False
+
+
+ 377, 78
+
+
+ 209, 21
+
+
+ 11
+
+
+ VALUETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 13
+
+
+ False
+
+
+ 166, 127
+
+
+ 419, 21
+
+
+ 15
+
+
+ COMMENTTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 15
+
+
+ 102, 78
+
+
+ 59, 21
+
+
+ 17
+
+
+ Aktiv
+
+
+ ACTIVECheckBox1
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 16
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 167, 225
+
+
+ 155, 23
+
+
+ 19
+
+
+ ADDED_WHOTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 18
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 356, 225
+
+
+ 155, 23
+
+
+ 21
+
+
+ ADDED_WHENTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 20
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 533, 225
+
+
+ 155, 23
+
+
+ 23
+
+
+ CHANGED_WHOTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 22
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 694, 225
+
+
+ 155, 23
+
+
+ 25
+
+
+ CHANGED_WHENTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 24
+
1248, 134
@@ -545,6 +3625,30 @@
rkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Neu hinzufügen
+
+
+ 17, 173
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 179, 22
+
+
+ von {0} automatischen Indexen
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -557,6 +3661,18 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -568,6 +3684,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -577,6 +3702,39 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -586,6 +3744,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -597,6 +3764,18 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -604,36 +3783,477 @@
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
-
- 266, 212
-
-
- 266, 212
-
-
- 506, 251
-
-
- 506, 251
-
-
- 1192, 17
-
+
+ 23, 22
+
+
+ Daten speichern
+
+
+ 0, 0
+
+
+ 974, 25
+
+
+ 4
+
+
+ BindingNavigator1
+
+
+ BindingNavigator2
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 25
+
+
+ False
+
+
+ 167, 78
+
+
+ 198, 21
+
+
+ 28
+
+
+ INDEXNAME_AutoIndexTXT
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage4
+
+
+ 26
+
+
+ 974, 257
+
+
+ automatische/feste Indexe
+
+
+ XtraTabPage4
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl2
+
+
+ 2
+
+
+ Button2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage9
+
+
+ 0
+
+
+ GroupBox3
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage9
+
+
+ 1
+
+
+ Label8
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage9
+
+
+ 2
+
+
+ ListBoxDokartzuordnung
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage9
+
+
+ 3
+
+
+ 974, 257
+
+
+ Zuordnung Dokumentenart-Gruppe
+
+
+ XtraTabPage9
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl2
+
+
+ 3
+
+
+ GroupBox4
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage10
+
+
+ 0
+
+
+ 974, 257
+
+
+ Create Folder for Index
+
+
+ XtraTabPage10
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl2
+
+
+ 4
+
+
+ XtraTabControl2
+
+
+ DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabPage1
+
+
+ 6
+
1192, 17
+
+ False
+
+
+ 707, 46
+
+
+ 266, 21
+
+
+ 85
+
+
+ ComboBox1
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 7
+
+
+ MiddleLeft
+
+
+ 172, 475
+
+
+ 71, 23
+
+
+ 84
+
+
+ Add
+
+
+ MiddleRight
+
+
+ btnadd
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 8
+
1025, 56
-
- 1025, 56
-
-
- 494, 56
-
+
+ 3, 475
+
+
+ 163, 21
+
+
+ 82
+
+
+ cmbWHModule
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 9
+
+
+ True
+
+
+ 3, 457
+
+
+ 110, 13
+
+
+ 81
+
+
+ Hinzufügen zu Modul:
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 10
+
+
+ True
+
+
+ 3, 315
+
+
+ 132, 13
+
+
+ 80
+
+
+ Zugeordnet zu Modul(en):
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 11
+
494, 56
+
+ 3, 340
+
+
+ 203, 108
+
+
+ 79
+
+
+ ListBox2
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 12
+
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ 932, 263
+
+
+ 240, 17
+
+
+ 78
+
+
+ Dokumentart erfolgreich gespeichert!
+
+
+ False
+
+
+ lblSaveDokart
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 13
+
+
+ False
+
+
+ 936, 217
+
+
+ 38, 23
+
+
+ 29
+
+
+ btnNamenkonvention
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 14
+
+
+ False
+
+
+ 861, 134
+
+
+ 31, 23
+
+
+ 28
+
+
+ ...
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 15
+
+
+ False
+
+
+ Segoe UI, 9.75pt
+
+
+ 266, 216
+
+
+ 586, 25
+
+
+ 27
+
+
+ NAMENKONVENTIONTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 16
+
+
+ 3, 28
+
+
+ 240, 251
+
+
+ 26
+
+
+ ListBoxDokart
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 17
+
921, 17
@@ -649,6 +4269,30 @@
rkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Neu hinzufügen
+
+
+ 244, 17
+
+
+ 134, 17
+
+
+ 130, 22
+
+
+ von {0} Dokumentarten
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -661,6 +4305,15 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -672,6 +4325,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -681,6 +4343,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -690,6 +4382,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -701,6 +4402,18 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -708,15 +4421,3722 @@
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+ 23, 22
+
+
+ Daten speichern
+
+
+ Global-Indexer Dokarten
+
+
+ Alle Dokarten
+
+
+ 150, 25
+
+
+ Magenta
+
+
+ 95, 22
+
+
+ Aktualisieren
+
+
+ Magenta
+
+
+ 74, 22
+
+
+ Kopieren
+
+
+ 0, 0
+
+
+ 1255, 25
+
+
+ 2
+
+
+ BindingNavigator1
+
+
+ TBDD_DOKUMENTARTBindingNavigator
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 18
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 266, 46
+
+
+ 51, 23
+
+
+ 1
+
+
+ DOKART_GUIDTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 20
+
+
+ False
+
+
+ 414, 47
+
+
+ 287, 21
+
+
+ 3
+
+
+ BEZEICHNUNGTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 22
+
+
+ False
+
+
+ 979, 46
+
+
+ 94, 21
+
+
+ 7
+
+
+ KURZNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 25
+
+
+ False
+
+
+ 266, 136
+
+
+ 585, 21
+
+
+ 9
+
+
+ ZIEL_PFADTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 27
+
+
+ False
+
+
+ 266, 176
+
+
+ 586, 21
+
+
+ 11
+
+
+ BESCHREIBUNGTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 29
+
+
+ False
+
+
+ 333, 45
+
+
+ 63, 24
+
+
+ 13
+
+
+ Aktiv
+
+
+ AKTIVCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 30
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 268, 262
+
+
+ 156, 23
+
+
+ 17
+
+
+ ERSTELLTWERTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 33
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 430, 262
+
+
+ 156, 23
+
+
+ 19
+
+
+ ERSTELLTWANNTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 35
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 592, 262
+
+
+ 164, 23
+
+
+ 21
+
+
+ GEANDERTWERTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 37
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 762, 262
+
+
+ 164, 23
+
+
+ 23
+
+
+ GEAENDERTWANNTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 39
+
+
+ False
+
+
+ 414, 94
+
+
+ 438, 21
+
+
+ 25
+
+
+ OBJEKTTYPComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 40
+
+
+ 3, 4, 3, 4
+
+
+ 1255, 603
+
+
+ Dokumentarten
+
+
+ XtraTabPage1
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl1
+
+
+ 0
+
+
+ 1261, 631
+
+
+ 1
+
+
+ False
+
+
+ False
+
+
+ 481, 95
+
+
+ True
+
+
+ SHORTNAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 0
+
+
+ SHORTNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 1
+
+
+ LANGUAGELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 2
+
+
+ LANGUAGEComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 3
+
+
+ lblsaveUSer
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 4
+
+
+ XtraTabControl3
+
+
+ DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabPage2
+
+
+ 5
+
+
+ ListBox3
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 6
+
+
+ USER_GUIDTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 8
+
+
+ PRENAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 10
+
+
+ NAMETextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 12
+
+
+ USERNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 14
+
+
+ EMAILTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 16
+
+
+ LOGGED_INCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 17
+
+
+ LOGGED_WHERETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 19
+
+
+ LOG_IN_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 21
+
+
+ LOG_OUT_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 23
+
+
+ GI_ADMINCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 24
+
+
+ ADDED_WHOTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 26
+
+
+ ADDED_WHENTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 28
+
+
+ CHANGED_WHOTextBoxUser
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 30
+
+
+ CHANGED_WHENTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 32
+
+
+ BindingNavigator1
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 33
+
+
+ 3, 4, 3, 4
+
+
+ 1255, 603
+
+
+ User-/Gruppenverwaltung
+
+
+ XtraTabPage2
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl1
+
+
+ 1
+
+
+ Button4
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage5
+
+
+ 0
+
+
+ Button3
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage5
+
+
+ 1
+
+
+ GroupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage5
+
+
+ 2
+
+
+ 1255, 603
+
+
+ Andere Einstellungen
+
+
+ XtraTabPage5
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl1
+
+
+ 2
+
+
+ XtraTabControl1
+
+
+ DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ $this
+
+
+ 0
+
+
+ 134, 17
+
+
+ True
+
+
+ 437, 30
+
+
+ 89, 13
+
+
+ 91
+
+
+ windream-Index:
+
+
+ lblWDINDEX
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 0
+
+
+ 17, 95
+
+
+ False
+
+
+ 677, 82
+
+
+ 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
+
+
+ XtraTabPage3
+
+
+ 1
+
+
+ 17, 95
+
+
+ Segoe UI Semibold, 9pt, style=Bold
+
+
+ 15
+
+
+ 9, 92
+
+
+ 146, 154
+
+
+ 81
+
+
+ ListBox5
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 2
+
+
+ False
+
+
+ MiddleLeft
+
+
+ 507, 135
+
+
+ 103, 23
+
+
+ 80
+
+
+ Show Config
+
+
+ MiddleRight
+
+
+ False
+
+
+ btnSQLView
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 3
+
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ 504, 181
+
+
+ 192, 17
+
+
+ 79
+
+
+ Index erfolgreich gespeichert!
+
+
+ False
+
+
+ lblSaveIndexMan
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 4
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 677, 225
+
+
+ 137, 23
+
+
+ 26
+
+
+ CHANGED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 6
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 507, 225
+
+
+ 148, 23
+
+
+ 24
+
+
+ CHANGED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 8
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 324, 225
+
+
+ 156, 23
+
+
+ 22
+
+
+ ADDED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 10
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 162, 225
+
+
+ 156, 23
+
+
+ 20
+
+
+ ADDED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 12
+
+
+ False
+
+
+ 94, 47
+
+
+ 61, 24
+
+
+ 19
+
+
+ Aktiv
+
+
+ ACTIVECheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 13
+
+
+ False
+
+
+ 677, 48
+
+
+ 70, 21
+
+
+ 17
+
+
+ SEQUENCETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 15
+
+
+ False
+
+
+ 162, 180
+
+
+ 318, 21
+
+
+ 13
+
+
+ DEFAULT_VALUETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 17
+
+
+ False
+
+
+ 338, 136
+
+
+ 163, 24
+
+
+ 12
+
+
+ Vorschlagsliste per SQL
+
+
+ SUGGESTIONCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 18
+
+
+ False
+
+
+ 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
+
+
+ XtraTabPage3
+
+
+ 20
+
+
+ False
+
+
+ 162, 92
+
+
+ 509, 21
+
+
+ 8
+
+
+ COMMENTTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 22
+
+
+ False
+
+
+ 440, 47
+
+
+ 231, 21
+
+
+ 6
+
+
+ WD_INDEXComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 23
+
+
+ False
+
+
+ 162, 48
+
+
+ 272, 21
+
+
+ 4
+
+
+ NAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 25
+
+
+ 275, 56
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Neu hinzufügen
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 154, 22
+
+
+ von {0} manuellen Indexen
+
+
+ Die Gesamtanzahl der Elemente.
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+ 23, 22
+
+
+ Daten speichern
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ Refresh
+
+
+ 0, 0
+
+
+ 974, 25
+
+
+ 3
+
+
+ BindingNavigator1
+
+
+ TBDD_INDEX_MANBindingNav
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 26
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 9, 48
+
+
+ 70, 23
+
+
+ 1
+
+
+ GUIDTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage3
+
+
+ 28
+
+
+ 511, 173
+
+
+ False
+
+
+ ONLY FILE/FOLDER
+
+
+ FILE AND INDEX
+
+
+ 559, 99
+
+
+ 202, 21
+
+
+ 81
+
+
+ VARIANTComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 1
+
+
+ 511, 173
+
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ 384, 191
+
+
+ 213, 17
+
+
+ 80
+
+
+ Funktion erfolgreich gespeichert!
+
+
+ False
+
+
+ lblsavePostProcess
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 2
+
+
+ 1187, 173
+
+
+ False
+
+
+ 71, 53
+
+
+ 180, 21
+
+
+ 34
+
+
+ ComboBox2
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 3
+
+
+ 1187, 173
+
+
+ True
+
+
+ 212, 166
+
+
+ 13, 13
+
+
+ 33
+
+
+ v
+
+
+ Function2Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 4
+
+
+ True
+
+
+ 116, 166
+
+
+ 13, 13
+
+
+ 32
+
+
+ v
+
+
+ Function1Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 5
+
+
+ True
+
+
+ 381, 81
+
+
+ 38, 13
+
+
+ 31
+
+
+ Label4
+
+
+ Text3Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 6
+
+
+ True
+
+
+ 184, 81
+
+
+ 38, 13
+
+
+ 30
+
+
+ Label4
+
+
+ Text2Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 7
+
+
+ True
+
+
+ 13, 81
+
+
+ 38, 13
+
+
+ 29
+
+
+ Label4
+
+
+ Text1Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 8
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 565, 227
+
+
+ 194, 23
+
+
+ 28
+
+
+ CHANGED_WHENTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 10
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 387, 227
+
+
+ 172, 23
+
+
+ 26
+
+
+ CHANGED_WHOTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 12
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 187, 227
+
+
+ 152, 23
+
+
+ 24
+
+
+ ADDED_WHENTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 14
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 16, 227
+
+
+ 167, 23
+
+
+ 22
+
+
+ ADDED_WHOTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 16
+
+
+ False
+
+
+ 16, 185
+
+
+ 78, 21
+
+
+ 20
+
+
+ SEQUENCETextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 18
+
+
+ False
+
+
+ 384, 99
+
+
+ 169, 21
+
+
+ 18
+
+
+ TEXT3TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 19
+
+
+ False
+
+
+ 187, 99
+
+
+ 191, 21
+
+
+ 16
+
+
+ TEXT2TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 20
+
+
+ False
+
+
+ 16, 99
+
+
+ 165, 21
+
+
+ 14
+
+
+ TEXT1TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 21
+
+
+ False
+
+
+ 211, 184
+
+
+ 70, 21
+
+
+ 12
+
+
+ FUNCTION2TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 22
+
+
+ False
+
+
+ 119, 184
+
+
+ 70, 21
+
+
+ 10
+
+
+ FUNCTION1TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 23
+
+
+ False
+
+
+ VBREPLACE
+
+
+ VBSPLIT
+
+
+ REG. EXPRESSION
+
+
+ 257, 53
+
+
+ 121, 21
+
+
+ 8
+
+
+ TYPEComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 25
+
+
+ False
+
+
+ 384, 54
+
+
+ 381, 21
+
+
+ 7
+
+
+ COMMENTTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 27
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 16, 53
+
+
+ 49, 23
+
+
+ 5
+
+
+ GUIDTextBox4
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 30
+
+
+ 325, 134
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC
+ pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++
+ Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ
+ /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA
+ zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/
+ IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E
+ rkJggg==
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Neu hinzufügen
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 213, 22
+
+
+ von {0} Nachbearbeitungsfunktionen
+
+
+ Die Gesamtanzahl der Elemente.
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC
+ DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC
+ rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV
+ i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG
+ 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG
+ QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX
+ bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77
+ wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0
+ v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg
+ UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA
+ Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu
+ lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w
+ 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f
+ Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+
+ 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78
+ n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI
+ N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f
+ oAc0QjgAAAAASUVORK5CYII=
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+//
+ h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B
+ twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA
+ kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG
+ WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9
+ 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo
+ dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+
+
+ 23, 22
+
+
+ Daten speichern
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ Refresh
+
+
+ 0, 0
+
+
+ 974, 25
+
+
+ 4
+
+
+ BindingNavigator1
+
+
+ TBDD_INDEX_MAN_POSTPROCESSINGBindingNavigator
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage6
+
+
+ 31
+
+
+ Segoe UI, 9pt
+
+
+ MiddleLeft
+
+
+ 275, 152
+
+
+ 75, 23
+
+
+ 15
+
+
+ Löschen
+
+
+ MiddleRight
+
+
+ Button2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage9
+
+
+ 0
+
+
+ lblnewDokartZuordnung
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 0
+
+
+ Label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 1
+
+
+ cmbGroup2Dokart
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 2
+
+
+ btnAddDokartGroupRelation
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 3
+
+
+ Segoe UI, 9pt
+
+
+ 275, 28
+
+
+ 235, 118
+
+
+ 14
+
+
+ Neue Gruppenzuordnung:
+
+
+ GroupBox3
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage9
+
+
+ 1
+
+
+ True
+
+
+ Segoe UI Semibold, 8.25pt, style=Bold, Italic
+
+
+ 13, 92
+
+
+ 179, 13
+
+
+ 80
+
+
+ Zuordnung erfolgreich gespeichert!
+
+
+ False
+
+
+ lblnewDokartZuordnung
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 0
+
+
+ True
+
+
+ 8, 19
+
+
+ 108, 15
+
+
+ 11
+
+
+ Gruppe auswählen:
+
+
+ Label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 1
+
+
+ 266, 212
+
+
+ Segoe UI, 9pt
+
+
+ 11, 37
+
+
+ 218, 23
+
+
+ 8
+
+
+ cmbGroup2Dokart
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 2
+
+
+ 266, 212
+
+
+ Segoe UI, 9pt
+
+
+ MiddleLeft
+
+
+ 11, 66
+
+
+ 219, 23
+
+
+ 9
+
+
+ Dokumentart zu Gruppe hinzufügen
+
+
+ MiddleRight
+
+
+ btnAddDokartGroupRelation
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 3
+
+
+ True
+
+
+ 5, 8
+
+
+ 272, 13
+
+
+ 13
+
+
+ Die Dokumentart ist zu folgenden Gruppen zugeordnet:
+
+
+ Label8
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage9
+
+
+ 2
+
+
+ 506, 251
+
+
+ 8, 28
+
+
+ 255, 160
+
+
+ 12
+
+
+ ListBoxDokartzuordnung
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage9
+
+
+ 3
+
+
+ 506, 251
+
+
+ FOLDER_FOR_INDEXTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 0
+
+
+ Label25
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 1
+
+
+ btncrFolder_delete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 2
+
+
+ GroupBox5
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 3
+
+
+ Label17
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 4
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ 3, 3
+
+
+ 820, 228
+
+
+ 81
+
+
+ Create Folder for Index
+
+
+ GroupBox4
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage10
+
+
+ 0
+
+
+ Segoe UI, 9.75pt
+
+
+ 12, 40
+
+
+ 697, 25
+
+
+ 11
+
+
+ FOLDER_FOR_INDEXTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 0
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 9, 66
+
+
+ 346, 13
+
+
+ 10
+
+
+ Inhalte von Datum-Indizes werden automatisch YYYYMMDD konvertiert
+
+
+ Label25
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 1
+
+
+ 715, 41
+
+
+ 31, 23
+
+
+ 9
+
+
+ btncrFolder_delete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 2
+
+
+ cmbCrFolderDate
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 0
+
+
+ Label20
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 1
+
+
+ btnaddcrFolderParameter
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 2
+
+
+ txtcrFoldermanuell
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 3
+
+
+ Label19
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 4
+
+
+ Label18
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 5
+
+
+ cmbCrFolderIndex
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 6
+
+
+ 12, 92
+
+
+ 530, 130
+
+
+ 8
+
+
+ Neuer Unterordner:
+
+
+ GroupBox5
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 3
+
+
+ Segoe UI, 9pt
+
+
+ YYYY/MM/DD
+
+
+ YYYY/MM
+
+
+ YYYY
+
+
+ YYYY-MM
+
+
+ 9, 86
+
+
+ 188, 23
+
+
+ 6
+
+
+ cmbCrFolderDate
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 0
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 6, 68
+
+
+ 97, 15
+
+
+ 5
+
+
+ Datum-Struktur:
+
+
+ Label20
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 1
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ MiddleLeft
+
+
+ 208, 39
+
+
+ 188, 28
+
+
+ 4
+
+
+ Ordner anhängen
+
+
+ MiddleRight
+
+
+ btnaddcrFolderParameter
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 2
+
+
+ Segoe UI, 9pt
+
+
+ 208, 86
+
+
+ 188, 23
+
+
+ 3
+
+
+ txtcrFoldermanuell
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 3
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 205, 68
+
+
+ 82, 15
+
+
+ 2
+
+
+ oder manuell:
+
+
+ Label19
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 4
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 6, 24
+
+
+ 204, 15
+
+
+ 1
+
+
+ aus Index-Wert (auto oder manuell):
+
+
+ Label18
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 5
+
+
+ Segoe UI, 9pt
+
+
+ 9, 42
+
+
+ 188, 23
+
+
+ 0
+
+
+ cmbCrFolderIndex
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox5
+
+
+ 6
+
+
+ True
+
+
+ 9, 22
+
+
+ 124, 15
+
+
+ 7
+
+
+ Variabler Ordnerpfad
+
+
+ Label17
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 4
+
+
+ 1192, 17
+
+
+ 1025, 56
+
+
+ 494, 56
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 559, 199
+
+
+ 186, 13
+
+
+ 79
+
+
+ Userdaten erfolgreich gespeichert!
+
+
+ False
+
+
+ lblsaveUSer
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 4
+
+
+ Top, Bottom, Left, Right
+
+
+ Fuchsia
+
+
+ 255, 128, 255
+
+
+ Tahoma, 8.25pt, style=Bold
+
+
+ 14, 289
+
+
+ btnDeleteGroupRelation
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage7
+
+
+ 0
+
+
+ GroupBox2
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage7
+
+
+ 1
+
+
+ Label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage7
+
+
+ 2
+
+
+ ListBoxUserzuordnung
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage7
+
+
+ 3
+
+
+ 1039, 284
+
+
+ Gruppenzuordnung User
+
+
+ XtraTabPage7
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl3
+
+
+ 0
+
+
+ 1045, 312
+
+
+ 32
+
682, 134
+
+ ListBox4
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 0
+
+
+ lblsaveTBDD_USER_GROUPS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 1
+
+
+ GUIDTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 3
+
+
+ NAMETextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 5
+
+
+ ADDED_WHOTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 7
+
+
+ ADDED_WHENTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 9
+
+
+ CHANGED_WHOTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 11
+
+
+ CHANGED_WHENTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 13
+
+
+ TBDD_USER_GROUPSBindingNavigator
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 14
+
+
+ 1039, 358
+
+
+ Gruppenverwaltung
+
+
+ XtraTabPage8
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl3
+
+
+ 1
+
+
+ XtraTabControl3
+
+
+ DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabPage2
+
+
+ 5
+
+
+ Segoe UI, 9pt
+
+
+ MiddleLeft
+
+
+ 284, 157
+
+
+ 75, 23
+
+
+ 11
+
+
+ Löschen
+
+
+ MiddleRight
+
+
+ btnDeleteGroupRelation
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage7
+
+
+ 0
+
+
+ lblnewUserZuordnung
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 0
+
+
+ Label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 1
+
+
+ cmbGroup2User
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 2
+
+
+ btnAddGroupRelation
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 3
+
+
+ Segoe UI, 9pt
+
+
+ 284, 33
+
+
+ 230, 118
+
+
+ 10
+
+
+ Neue Gruppenzuordnung:
+
+
+ GroupBox2
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage7
+
+
+ 1
+
+
+ True
+
+
+ Segoe UI Semibold, 8.25pt, style=Bold, Italic
+
+
+ 8, 92
+
+
+ 179, 13
+
+
+ 80
+
+
+ Zuordnung erfolgreich gespeichert!
+
+
+ False
+
+
+ lblnewUserZuordnung
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 0
+
+
+ True
+
+
+ 8, 19
+
+
+ 108, 15
+
+
+ 11
+
+
+ Gruppe auswählen:
+
+
+ Label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 1
+
+
+ Segoe UI, 9pt
+
+
+ 11, 37
+
+
+ 184, 23
+
+
+ 8
+
+
+ cmbGroup2User
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 2
+
+
+ Segoe UI, 9pt
+
+
+ MiddleLeft
+
+
+ 11, 66
+
+
+ 184, 23
+
+
+ 9
+
+
+ User zu Gruppe hinzufügen
+
+
+ MiddleRight
+
+
+ btnAddGroupRelation
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 3
+
+
+ True
+
+
+ 14, 13
+
+
+ 214, 13
+
+
+ 7
+
+
+ User ist zu folgenden Gruppen zugeordnet:
+
+
+ Label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage7
+
+
+ 2
+
755, 212
+
+ 17, 33
+
+
+ 255, 173
+
+
+ 6
+
+
+ ListBoxUserzuordnung
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage7
+
+
+ 3
+
755, 212
+
+ 8, 32
+
+
+ 171, 134
+
+
+ 80
+
+
+ ListBox4
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 0
+
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ 763, 53
+
+
+ 203, 17
+
+
+ 79
+
+
+ Gruppe erfolgreich gespeichert!
+
+
+ False
+
+
+ lblsaveTBDD_USER_GROUPS
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 1
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 198, 52
+
+
+ 77, 23
+
+
+ 5
+
+
+ GUIDTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 3
+
+
+ 293, 50
+
+
+ 464, 21
+
+
+ 7
+
+
+ NAMETextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 5
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 198, 98
+
+
+ 172, 23
+
+
+ 9
+
+
+ ADDED_WHOTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 7
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 379, 98
+
+
+ 178, 23
+
+
+ 11
+
+
+ ADDED_WHENTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 9
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 198, 142
+
+
+ 172, 23
+
+
+ 13
+
+
+ CHANGED_WHOTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 11
+
+
+ False
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 379, 142
+
+
+ 178, 23
+
+
+ 15
+
+
+ CHANGED_WHENTextBox5
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 13
+
682, 134
@@ -732,6 +8152,24 @@
rkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Neu hinzufügen
+
+
+ 93, 22
+
+
+ von {0} Gruppen
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -744,6 +8182,15 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -755,6 +8202,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -764,6 +8220,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -773,6 +8259,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -784,6 +8279,18 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -791,12 +8298,432 @@
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+ 23, 22
+
+
+ Daten speichern
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ ToolStripButton15
+
+
+ 0, 0
+
+
+ 1039, 25
+
+
+ 4
+
+
+ BindingNavigator3
+
+
+ TBDD_USER_GROUPSBindingNavigator
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage8
+
+
+ 14
+
+
+ Top, Bottom, Left
+
+
+ 778, 51
+
+
+ 281, 147
+
+
+ 31
+
+
+ ListBox3
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 6
+
635, 95
-
- 635, 95
-
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 14, 51
+
+
+ 64, 22
+
+
+ 4
+
+
+ USER_GUIDTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 8
+
+
+ False
+
+
+ Segoe UI, 8.25pt
+
+
+ 90, 51
+
+
+ 200, 22
+
+
+ 6
+
+
+ PRENAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 10
+
+
+ False
+
+
+ Segoe UI, 8.25pt
+
+
+ 299, 51
+
+
+ 256, 22
+
+
+ 8
+
+
+ NAMETextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 12
+
+
+ False
+
+
+ Segoe UI, 8.25pt
+
+
+ 562, 51
+
+
+ 210, 22
+
+
+ 10
+
+
+ USERNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 14
+
+
+ False
+
+
+ Segoe UI, 8.25pt
+
+
+ 90, 92
+
+
+ 465, 22
+
+
+ 12
+
+
+ EMAILTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 16
+
+
+ False
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 90, 235
+
+
+ 92, 24
+
+
+ 14
+
+
+ logged in?
+
+
+ LOGGED_INCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 17
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 203, 237
+
+
+ 150, 22
+
+
+ 16
+
+
+ LOGGED_WHERETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 19
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 365, 237
+
+
+ 190, 22
+
+
+ 18
+
+
+ LOG_IN_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 21
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 562, 237
+
+
+ 210, 22
+
+
+ 20
+
+
+ LOG_OUT_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 23
+
+
+ False
+
+
+ Segoe UI, 8.25pt
+
+
+ 562, 133
+
+
+ 90, 24
+
+
+ 22
+
+
+ Admin?
+
+
+ GI_ADMINCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 24
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 90, 174
+
+
+ 104, 22
+
+
+ 24
+
+
+ ADDED_WHOTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 26
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 203, 174
+
+
+ 150, 22
+
+
+ 26
+
+
+ ADDED_WHENTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 28
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 365, 174
+
+
+ 190, 22
+
+
+ 28
+
+
+ CHANGED_WHOTextBoxUser
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 30
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 562, 174
+
+
+ 210, 22
+
+
+ 30
+
+
+ CHANGED_WHENTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 32
+
481, 95
@@ -812,6 +8739,24 @@
rkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Neu hinzufügen
+
+
+ 77, 22
+
+
+ von {0} Usern
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -824,6 +8769,15 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -835,6 +8789,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -844,6 +8807,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -853,6 +8846,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -864,6 +8866,18 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -871,12 +8885,891 @@
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+ 23, 22
+
+
+ Daten speichern
+
+
+ Global-Indexer User
+
+
+ Alle User
+
+
+ 150, 25
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ ToolStripButton15
+
+
+ MiddleLeft
+
+
+ Magenta
+
+
+ 132, 22
+
+
+ AD User hinzufügen
+
+
+ MiddleRight
+
+
+ 0, 0
+
+
+ 1255, 25
+
+
+ 3
+
+
+ BindingNavigator1
+
+
+ BindingNavigator1
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 33
+
+
+ MiddleLeft
+
+
+ 14, 403
+
+
+ 202, 32
+
+
+ 4
+
+
+ LicenseManager
+
+
+ MiddleRight
+
+
+ Button4
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage5
+
+
+ 0
+
+
+ MiddleLeft
+
+
+ 14, 365
+
+
+ 202, 32
+
+
+ 3
+
+
+ SQL-Admin
+
+
+ MiddleRight
+
+
+ Button3
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage5
+
+
+ 1
+
+
+ pnlObjekttype_Config
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 0
+
+
+ Label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 1
+
+
+ lblsavezuordnungIndex
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 2
+
+
+ btnidxemail_delete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 3
+
+
+ btnidxemail_Save
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 4
+
+
+ btnidxemail_add
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 5
+
+
+ ListBoxObjekttypen
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 6
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 3, 3
+
+
+ 1056, 356
+
+
+ 0
+
+
+ Indexzuordnung für die Email-Indexierung:
+
+
+ GroupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage5
+
+
+ 2
+
+
+ IDX_CHECK_ATTACHMENTComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 1
+
+
+ CHANGED_WHENTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 2
+
+
+ CHANGED_WHOTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 5
+
+
+ ADDED_WHENTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 7
+
+
+ ADDED_WHOTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 9
+
+
+ GUIDTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 11
+
+
+ IDX_EMAIL_DATE_INComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 12
+
+
+ OBJECTTYPETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 15
+
+
+ IDX_EMAIL_SUBJECTComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 16
+
+
+ IDX_EMAIL_IDComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 19
+
+
+ IDX_EMAIL_TOComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 20
+
+
+ IDX_EMAIL_FROMComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 23
+
+
+ False
+
+
+ 219, 44
+
+
+ 573, 300
+
+
+ 82
+
+
+ pnlObjekttype_Config
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 0
+
17, 134
+
+ Segoe UI, 9.75pt
+
+
+ 203, 164
+
+
+ 189, 25
+
+
+ 81
+
+
+ IDX_CHECK_ATTACHMENTComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 1
+
17, 134
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 203, 260
+
+
+ 189, 25
+
+
+ 22
+
+
+ CHANGED_WHENTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 2
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 6, 260
+
+
+ 189, 25
+
+
+ 20
+
+
+ CHANGED_WHOTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 5
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 203, 212
+
+
+ 189, 25
+
+
+ 18
+
+
+ ADDED_WHENTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 7
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 6, 212
+
+
+ 189, 25
+
+
+ 16
+
+
+ ADDED_WHOTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 9
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 6, 22
+
+
+ 71, 25
+
+
+ 2
+
+
+ GUIDTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 11
+
+
+ Segoe UI, 9.75pt
+
+
+ 6, 164
+
+
+ 189, 25
+
+
+ 14
+
+
+ IDX_EMAIL_DATE_INComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 12
+
+
+ False
+
+
+ Segoe UI, 9.75pt
+
+
+ 97, 22
+
+
+ 291, 25
+
+
+ 4
+
+
+ OBJECTTYPETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 15
+
+
+ Segoe UI, 9.75pt
+
+
+ 203, 116
+
+
+ 189, 25
+
+
+ 12
+
+
+ IDX_EMAIL_SUBJECTComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 16
+
+
+ Segoe UI, 9.75pt
+
+
+ 6, 70
+
+
+ 189, 25
+
+
+ 6
+
+
+ IDX_EMAIL_IDComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 19
+
+
+ Segoe UI, 9.75pt
+
+
+ 6, 116
+
+
+ 189, 25
+
+
+ 10
+
+
+ IDX_EMAIL_TOComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 20
+
+
+ Segoe UI, 9.75pt
+
+
+ 203, 70
+
+
+ 189, 25
+
+
+ 8
+
+
+ IDX_EMAIL_FROMComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlObjekttype_Config
+
+
+ 23
+
+
+ True
+
+
+ Segoe UI Semibold, 9.75pt, style=Bold, Italic
+
+
+ 8, 24
+
+
+ 118, 17
+
+
+ 80
+
+
+ Objekttypauswahl:
+
+
+ Label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 1
+
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ 798, 172
+
+
+ 227, 17
+
+
+ 79
+
+
+ Zuordnung erfolgreich gespeichert!
+
+
+ False
+
+
+ lblsavezuordnungIndex
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 2
+
+
+ Segoe UI, 9.75pt
+
+
+ MiddleLeft
+
+
+ 925, 136
+
+
+ 100, 33
+
+
+ 25
+
+
+ Löschen
+
+
+ MiddleRight
+
+
+ btnidxemail_delete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 3
+
+
+ Segoe UI, 9.75pt
+
+
+ MiddleLeft
+
+
+ 925, 97
+
+
+ 100, 33
+
+
+ 24
+
+
+ Speichern
+
+
+ MiddleRight
+
+
+ btnidxemail_Save
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 4
+
+
+ Segoe UI, 9.75pt
+
+
+ MiddleLeft
+
+
+ 925, 59
+
+
+ 100, 32
+
+
+ 23
+
+
+ Hinzufügen
+
+
+ MiddleRight
+
+
+ btnidxemail_add
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 5
+
+
+ 17
+
+
+ 8, 44
+
+
+ 205, 293
+
+
+ 0
+
+
+ ListBoxObjekttypen
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 6
+
1019, 95
@@ -931,9 +9824,132 @@
770, 251
+
+ False
+
+
+ True
+
+
+ 87, 117
+
+
+ 50, 13
+
+
+ 79
+
+
+ Sprache:
+
+
+ LANGUAGELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 2
+
+
+ de-DE
+
+
+ en-US
+
+
+ 90, 133
+
+
+ 92, 21
+
+
+ 80
+
+
+ LANGUAGEComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 3
+
+
+ False
+
+
+ True
+
+
+ 559, 76
+
+
+ 77, 13
+
+
+ 80
+
+
+ Namenskürzel:
+
+
+ SHORTNAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 0
+
+
+ 635, 95
+
+
+ 562, 93
+
+
+ 66, 21
+
+
+ 81
+
+
+ SHORTNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 1
+
+
+ True
+
207
+
+ 7, 17
+
+
+ 1261, 653
+
+
+ Segoe UI, 9.75pt
+
AAABAAEAICAAAAEACACoCAAAFgAAACgAAAAgAAAAQAAAAAEACAAAAAAAgAQAAAAAAAAAAAAAAAAAAAAA
@@ -976,4 +9992,694 @@
AP/8AQD//gMD///Dj///////
+
+ 3, 4, 3, 4
+
+
+ Administrationskonsole Global Indexer
+
+
+ TBDD_DOKUMENTARTBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_INDEX_MANBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel1
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton2
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton3
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton4
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripTextBox1
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton5
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton6
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator3
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton7
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton41
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_INDEX_MAN_POSTPROCESSINGBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBWHDD_INDEX_MANBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton24
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel4
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton25
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton26
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton27
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator10
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripTextBox4
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator11
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton28
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton29
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator12
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton30
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton31
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_INDEX_AUTOMBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton16
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel3
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton17
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton18
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton19
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator7
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripTextBox3
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator8
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton20
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton21
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator9
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton22
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_USER_GROUPSBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ VWGI_DOCTYPE_GROUPBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_EINGANGSARTENBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_MODULESBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_DOKART_MODULEBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorAddNewItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorCountItem
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorDeleteItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveFirstItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMovePreviousItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorPositionItem
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveNextItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveLastItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_DOKUMENTARTBindingNavigatorSaveItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripComboBox1
+
+
+ System.Windows.Forms.ToolStripComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton40
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tsbtnCopyDoctype
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ VWGI_USER_GROUPS_RELATIONBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton32
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel5
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton33
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton34
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton35
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator13
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripTextBox5
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator14
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton36
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton37
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator15
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton38
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton39
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_USERBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton8
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel2
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton9
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton10
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton11
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator4
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripTextBox2
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator5
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton12
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton13
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator6
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton14
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tscmbUser
+
+
+ System.Windows.Forms.ToolStripComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton15
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton23
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBGI_OBJECTTYPE_EMAIL_INDEXBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBGI_CONFIGURATIONBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_DOKUMENTARTTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_DOKUMENTARTTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_EINGANGSARTENTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_EINGANGSARTENTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_DOKART_MODULETableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_DOKART_MODULETableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_MODULESTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_MODULESTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_INDEX_MANTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_INDEX_MANTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_USERTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_USERTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBGI_CONFIGURATIONTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBGI_CONFIGURATIONTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBGI_OBJECTTYPE_EMAIL_INDEXTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBGI_OBJECTTYPE_EMAIL_INDEXTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_INDEX_AUTOMTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_INDEX_AUTOMTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBWHDD_INDEX_MANTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBWHDD_INDEX_MANTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_USER_GROUPSTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_USER_GROUPSTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ VWGI_USER_GROUPS_RELATIONTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.VWGI_USER_GROUPS_RELATIONTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_GROUPS_USERBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_GROUPS_USERTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_GROUPS_USERTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ VWGI_DOCTYPE_GROUPTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.VWGI_DOCTYPE_GROUPTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ frmAdministration
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmAdministration.vb b/Global_Indexer/frmAdministration.vb
index e1fcad3..82f142d 100644
--- a/Global_Indexer/frmAdministration.vb
+++ b/Global_Indexer/frmAdministration.vb
@@ -1023,6 +1023,10 @@
value = "$FileCreatedWho"
Case "Aktuelles Datum (DD.MM.YYYY)".ToUpper
value = "$DateDDMMYYY"
+ Case "Username"
+ value = "$Username"
+ Case "Usercode"
+ value = "$Usercode"
End Select
If value <> "" Then
VALUETextBox.Text = value
diff --git a/Global_Indexer/frmConfig_Basic.de.resx b/Global_Indexer/frmConfig_Basic.de.resx
index 7782a6d..070d7a7 100644
--- a/Global_Indexer/frmConfig_Basic.de.resx
+++ b/Global_Indexer/frmConfig_Basic.de.resx
@@ -118,8 +118,14 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 201, 140
+
- 238, 190
+ 198, 190
+
+
+ 201, 83
diff --git a/Global_Indexer/frmConfig_Basic.designer.vb b/Global_Indexer/frmConfig_Basic.designer.vb
index 8e9fe45..2559a53 100644
--- a/Global_Indexer/frmConfig_Basic.designer.vb
+++ b/Global_Indexer/frmConfig_Basic.designer.vb
@@ -46,7 +46,7 @@ Partial Class frmConfig_Basic
Me.CheckBox3 = New System.Windows.Forms.CheckBox()
Me.CheckBox2 = New System.Windows.Forms.CheckBox()
Me.chkLogErrorsOnly = New System.Windows.Forms.CheckBox()
- Me.Button1 = New System.Windows.Forms.Button()
+ Me.btnaddUniversalViewer = New System.Windows.Forms.Button()
Me.txtuniversalViewer = New System.Windows.Forms.TextBox()
Me.lblUniversalViewer = New System.Windows.Forms.Label()
Me.btnLogMail = 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,33 +147,32 @@ 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.Button3)
Me.TabPage2.Controls.Add(Me.cmbLanguage)
Me.TabPage2.Controls.Add(Me.Label9)
@@ -181,12 +180,13 @@ Partial Class frmConfig_Basic
Me.TabPage2.Controls.Add(Me.CheckBox3)
Me.TabPage2.Controls.Add(Me.CheckBox2)
Me.TabPage2.Controls.Add(Me.chkLogErrorsOnly)
- Me.TabPage2.Controls.Add(Me.Button1)
+ Me.TabPage2.Controls.Add(Me.btnaddUniversalViewer)
Me.TabPage2.Controls.Add(Me.txtuniversalViewer)
Me.TabPage2.Controls.Add(Me.lblUniversalViewer)
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
'
@@ -198,9 +198,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
@@ -237,11 +237,11 @@ Partial Class frmConfig_Basic
Me.chkLogErrorsOnly.Name = "chkLogErrorsOnly"
Me.chkLogErrorsOnly.UseVisualStyleBackColor = True
'
- 'Button1
+ 'btnaddUniversalViewer
'
- resources.ApplyResources(Me.Button1, "Button1")
- Me.Button1.Name = "Button1"
- Me.Button1.UseVisualStyleBackColor = True
+ resources.ApplyResources(Me.btnaddUniversalViewer, "btnaddUniversalViewer")
+ Me.btnaddUniversalViewer.Name = "btnaddUniversalViewer"
+ Me.btnaddUniversalViewer.UseVisualStyleBackColor = True
'
'txtuniversalViewer
'
@@ -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
'
@@ -412,7 +411,7 @@ Partial Class frmConfig_Basic
Friend WithEvents txtPasswort As System.Windows.Forms.TextBox
Friend WithEvents BtnConnect As System.Windows.Forms.Button
Friend WithEvents TabPage2 As System.Windows.Forms.TabPage
- Friend WithEvents Button1 As System.Windows.Forms.Button
+ Friend WithEvents btnaddUniversalViewer As System.Windows.Forms.Button
Friend WithEvents txtuniversalViewer As System.Windows.Forms.TextBox
Friend WithEvents lblUniversalViewer As System.Windows.Forms.Label
Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog
diff --git a/Global_Indexer/frmConfig_Basic.resx b/Global_Indexer/frmConfig_Basic.resx
index 674c64d..f7cf3bd 100644
--- a/Global_Indexer/frmConfig_Basic.resx
+++ b/Global_Indexer/frmConfig_Basic.resx
@@ -117,296 +117,263 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- btnFW_Desktop
-
-
-
- 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
-
- 547, 22
+
+ 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
-
- 695, 358
+
+ Aktueller ConnectionString:
-
- Top, Left, Right
+
+ Label5
-
- 602, 22
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 3
-
-
- 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:
-
-
- 4, 4, 4, 4
-
-
- 2
-
-
- Button3
-
-
- MiddleLeft
-
-
-
- 1
-
-
- 298, 23
-
-
- TabPage2
+
+ 8, 78
- 252, 21
+ 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, 22
-
-
- 4, 4, 4, 4
-
-
- MiddleLeft
-
-
- 84, 13
-
-
- Passwort:
-
-
- 6
-
-
- 4
-
-
- lblUniversalViewer
-
-
- TabPage3
-
-
- 6
-
-
- 11, 87
-
-
- TabPage1
-
-
- 11
-
-
- TabPage2
-
-
- 96, 13
-
-
- MiddleRight
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 11, 213
-
-
- 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
-
-
- 180, 21
-
-
- 2
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 11, 214
-
-
- 0
-
-
- 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
-
-
- btnsetFW_Folder
-
-
- 2
-
-
- 95, 13
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- 241, 140
-
-
- 5, 62
-
-
- 687, 332
-
-
- Aktuelle Sprache:
-
-
- 6
-
-
- 3, 3, 3, 3
-
-
- System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabPage3
-
-
- 2
+
+ txtUser
System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 3
+
+ TabPage1
-
- 3
+
+ 9
-
- 3, 3, 3, 3
+
+ 382, 30
-
- 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
-
-
- btnLogMail
-
-
- 8, 126
+
+ 64, 22
38
@@ -414,173 +381,853 @@
txtPasswort
+
+ 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
+
+
+ 557, 332
+
+
+ 0
+
+
+ Datenbank-Verbindung
+
+
+ TabPage1
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl1
+
+
+ 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
+
+
+ 0
+
+
+ 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
+
+
+ 1
+
+
+ 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
+
+
+ 2
+
+
+ True
+
+
+ 197, 221
+
+
+ 147, 13
+
+
+ 40
+
+
+ Support-Portal Digital Data
+
+
+ LinkLabel1
+
+
+ System.Windows.Forms.LinkLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
+
+
+ 3
+
+
+ True
+
+
+ 11, 56
+
+
+ 249, 17
+
+
+ 7
+
+
+ Dokumente bei Indexierung nicht anzeigen
+
+
+ CheckBox3
+
+
+ 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
-
- Überwachung starten
+
+ 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, 214
+
+
+ 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
+
+
+ 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
+
+
+ 557, 332
+
+
+ 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
-
- Verbindung zur Datenbank herstellen
+
+ MiddleLeft
-
- 0
+
+ 316, 57
-
- 4, 22
+
+ 4, 4, 4, 4
-
- TabPage2
+
+ 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
-
- Button1
-
-
- MiddleRight
-
-
- 4
-
-
- 695, 358
-
-
- 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
-
-
- 302, 82
-
-
- chkbxUserAut
-
-
- TabPage3
-
-
- Button2
-
-
- 44
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- TabPage2
-
-
- True
-
-
- 4
-
-
- 408, 169
-
-
- True
-
-
- 6
-
-
- TabPage1
-
-
- TabPage2
-
-
- 3
-
-
- TabPage2
-
-
- Label6
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0, 0
-
-
- TabPage1
-
-
- 37
-
-
- 11, 28
-
-
- MiddleLeft
-
-
- 9
-
-
- 423, 14
-
-
- Sprache jetzt wechseln
-
-
- TabPage3
-
-
- 238, 219
-
-
- TabPage1
+
+ 4, 22
3, 3, 3, 3
-
- Öffne Log-Verzeichnis
+
+ 557, 332
-
- 8, 14
+
+ 2
-
- TabPage2
+
+ Überwachte Ordner - Folderwatch
-
- Definieren Sie hier Inhalte von Dateinamen welche von der Folderwatch-Überwachung ausgenommen werden sollen:
+
+ TabPage3
-
- 7
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 10
+
+ TabControl1
+
+
+ 2
+
+
+ Fill
+
+
+ 0, 0
+
+
+ 565, 358
+
+
+ 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
+
+
+ 565, 358
+
+
+ Segoe UI, 8.25pt
@@ -610,671 +1257,22 @@
AAAAAAAAgAEAAOADAADgDwAA8R8AAP//AAA=
-
- Öffne AppFolder User
+
+ CenterScreen
-
- TabPage1
-
-
- 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
-
-
- btnstartstop2
-
-
- Label9
-
-
- TabPage3
-
-
- btnstartstop1
-
-
- ...
-
-
- Label3
-
-
- 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
-
-
- cmbLanguage
-
-
- 5
-
-
- TabPage1
-
-
- 146, 17
-
-
- CheckBox3
-
-
- 5
-
-
- 209, 213
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 42
-
-
- 7
-
-
- 64, 22
-
-
- 288, 22
-
-
- 180, 23
-
-
- 616, 142
-
-
- DataGridView1
-
-
- 40
-
-
- True
-
-
- True
-
-
- txtuniversalViewer
-
-
- True
-
-
- 299, 14
-
-
- 1
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 8
-
-
- 30, 23
-
-
- 408, 57
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 302, 34
-
-
- 1
-
-
- 11, 243
-
-
- 687, 332
-
-
- 11, 58
-
-
- MiddleLeft
-
-
- 9
-
-
- 36
-
-
- 5
-
-
- Support-Portal Digital Data
-
-
- TabPage2
-
-
- Windows-Authentifizierung
-
-
- 40
-
-
- 42
-
-
- 67, 13
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 12
-
-
- 1
-
-
- LogErrorsOnly (Ja/Nein)
-
-
- 9
-
-
- 8, 34
-
-
- TabPage1
-
-
- 8, 126
-
-
- 45
-
-
- English
-
-
- 5
-
-
- 205, 25
-
-
- TabControl1
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 5
-
-
- 2
-
-
- Datenbank:
-
-
- 134, 23
-
-
- chkLogErrorsOnly
-
-
- TabPage2
-
-
- 205, 25
-
-
- Dokumente bei Indexierung nicht anzeigen
-
-
- 616, 30
+
+ System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
frmConfig_Basic
-
- 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
-
- Definieren Sie hier den Ordner der für Scan2Folder verwendet werden soll:
-
-
- Segoe UI, 8.25pt
-
-
- 7
-
-
- German
-
-
- 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
-
-
- System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 4
-
-
- 6
-
-
- Universal Viewer:
-
-
- $this
-
-
- System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 687, 332
-
-
- 0
-
-
- TabPage3
-
-
- 180, 23
-
-
- Server-Name:
-
-
- 9
-
-
- 426, 34
-
-
- 295, 13
-
-
- 5, 115
-
-
- True
-
-
- Label1
-
-
- TabPage3
-
-
- 602, 22
-
-
- Label7
-
-
- True
-
-
- 10
-
-
- 11, 142
-
-
- 11
-
-
- cmbDatenbank
-
-
- 44
-
-
- 74, 13
-
-
- 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
-
-
- 611, 13
-
-
- TabPage2
-
-
- 11, 96
-
-
- 43
-
-
- ...
-
-
- 6, 13
-
-
- 0
-
-
- 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, 82
-
-
- True
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 39
-
-
- 510, 36
-
-
- btnSaveExclusionFiles
-
-
- 3
-
-
- 8
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- True
-
-
- 0
-
-
- TabPage3
-
-
- True
-
-
- MiddleRight
-
-
- MiddleLeft
-
-
- MiddleLeft
-
-
- MiddleRight
-
-
- System.Windows.Forms.TabPage, 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?
-
-
- 150, 13
-
-
- Überwachung starten
-
-
- TabPage2
-
-
- Ordner 'SimpleIndexer' auf Desktop erzeugen
-
-
- True
-
-
- System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- ...
-
-
- txtServer
-
-
- 0
-
-
- 242, 89
-
-
- 1
-
-
- TabControl1
-
-
- txtFolderWatch
-
-
- 4, 22
-
-
- 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
-
-
- System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- btnApplicationFolder
-
-
- 2
-
-
- CheckBox2
-
-
- TabPage3
-
-
- Aktueller ConnectionString:
-
-
- TabPage2
-
-
- 192, 113
-
-
- 41
-
-
- BtnConnect
-
-
- TabPage1
-
-
- 7
-
-
- True
-
-
- 147, 13
-
-
- 478, 26
-
-
- MiddleRight
-
-
- 43
-
-
- True
-
-
- de
-
-
- 17, 17
-
\ No newline at end of file
diff --git a/Global_Indexer/frmConfig_Basic.vb b/Global_Indexer/frmConfig_Basic.vb
index 83c4eba..72d484a 100644
--- a/Global_Indexer/frmConfig_Basic.vb
+++ b/Global_Indexer/frmConfig_Basic.vb
@@ -8,9 +8,9 @@ Public Class frmConfig_Basic
Dim sz = Me.Size
Dim pt = Me.Location
Dim de = System.Globalization.CultureInfo.CurrentUICulture
- 'Neue Sprache festlegen und entfernen aller Controls
- Thread.CurrentThread.CurrentUICulture = New CultureInfo(USER_LANGUAGE)
- Me.Controls.Clear()
+ ''Neue Sprache festlegen und entfernen aller Controls
+ 'Thread.CurrentThread.CurrentUICulture = New CultureInfo(USER_LANGUAGE)
+ 'Me.Controls.Clear()
'Me.Events.Dispose()
InitializeComponent()
@@ -20,6 +20,11 @@ Public Class frmConfig_Basic
End Sub
Private Sub BtnConnect_Click(sender As Object, e As EventArgs) Handles BtnConnect.Click
+ If Me.txtServer.Text = String.Empty Then
+ MsgBox("Please specify SQL-Server Adress!", MsgBoxStyle.Information)
+ txtServer.Focus()
+ Exit Sub
+ End If
Try
Dim constring As String
If chkbxUserAut.Checked Then
@@ -56,6 +61,18 @@ Public Class frmConfig_Basic
SaveConfigValue("MyConnectionString", constring)
Me.txtActualConnection.Text = constring
+
+ Dim sql = "SELECT MAX(GUID) FROM TBDD_USER WHERE (LOWER(USERNAME) = LOWER('@user'))"
+ sql = sql.Replace("@user", Environment.UserName)
+ ClassLogger.Add(">> Username: " & Environment.UserName, False)
+
+ CURRENT_USERID = ClassDatabase.Execute_Scalar(sql, MyConnectionString, True)
+ If IsDBNull(CURRENT_USERID) Then
+ MsgBox("Attention: Your Username '" & Environment.UserName & "' is not configured for Global Indexer. this might result in unhandled exceptions!", MsgBoxStyle.Exclamation)
+ ClassLogger.Add("User '" & Environment.UserName & "' not configured for Global Indexer! (DBNull - frmConfigBasic)", True)
+ End If
+
+
'Me.TBPM_KONFIGURATIONTableAdapter.Connection.ConnectionString = My.Settings.ConfigConnectionString
'Me.TBPM_KONFIGURATIONTableAdapter.Fill(Me.DD_DMSLiteDataSet.TBPM_KONFIGURATION)
End If
@@ -67,6 +84,11 @@ Public Class frmConfig_Basic
Private Sub cmbDatenbank_MouseClick(sender As Object, e As MouseEventArgs) Handles cmbDatenbank.MouseClick
Try
+ If Me.txtServer.Text = String.Empty Then
+ MsgBox("Please specify SQL-Server Adress!", MsgBoxStyle.Information)
+ txtServer.Focus()
+ Exit Sub
+ End If
Me.Cursor = Cursors.WaitCursor
Dim csb As New SqlClient.SqlConnectionStringBuilder
csb.DataSource = Me.txtServer.Text
@@ -107,7 +129,7 @@ Public Class frmConfig_Basic
End Sub
_
- Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
+ Private Sub Button1_Click(sender As Object, e As EventArgs) Handles btnaddUniversalViewer.Click
Try
With OpenFileDialog1
' Do
@@ -122,7 +144,7 @@ Public Class frmConfig_Basic
End With
Catch ex As Exception
If ex.Message.Contains("aktuellen Thread muss der STA-Modus") Then
- MsgBox("Diese Eisntellung kann während des Starts nicht geändert werden!" & vbNewLine & "Schliessen Sie das Formular. Sie weren in Folge erneut aufgefordert den PFad zu UViewer einzugeben!", MsgBoxStyle.Information)
+ MsgBox("Diese Einstellung kann während des Starts nicht geändert werden!" & vbNewLine & "Schliessen Sie das Formular. Sie weren in Folge erneut aufgefordert den PFad zu UViewer einzugeben!", MsgBoxStyle.Information)
Else
MsgBox("Unexpected error in Add UViewer-Path:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
End If
@@ -335,14 +357,25 @@ Public Class frmConfig_Basic
csb.ConnectionString = MyConnectionString
Dim constr = MyConnectionString
- constr = constr.Replace(csb.Password, "XXXXX")
+ If Not constr.Contains("Trusted_Connection") Then
+ constr = constr.Replace(csb.Password, "XXXXX")
+ Else
+ chkbxUserAut.Checked = True
+ End If
+
Me.txtActualConnection.Text = constr
End If
Me.txtuniversalViewer.Text = UniversalViewer_Path
chkLogErrorsOnly.Checked = LogErrorsOnly
+ txtuniversalViewer.Enabled = True
+ btnaddUniversalViewer.Enabled = True
If ERROR_STATE = "FAILED DBCONNECTION" Then
Me.TabControl1.SelectedIndex = 0
+ ElseIf ERROR_STATE = "NO DB-CONNECTION" Then
+ Me.TabControl1.SelectedIndex = 0
+ txtuniversalViewer.Enabled = False
+ btnaddUniversalViewer.Enabled = False
ElseIf ERROR_STATE = "NO UV" Then
Me.TabControl1.SelectedIndex = 1
End If
@@ -416,7 +449,7 @@ Public Class frmConfig_Basic
Case 0
lang = "de-DE"
Case 1
- lang = "en-GB"
+ lang = "en-US"
End Select
Dim update As String = "UPDATE TBDD_USER SET [LANGUAGE] = '" & lang & "' WHERE GUID = " & CURRENT_USERID
@@ -447,4 +480,14 @@ Public Class frmConfig_Basic
' Navigate to a URL.
System.Diagnostics.Process.Start("http://www.didalog.de/Support")
End Sub
+
+ Private Sub chkbxUserAut_CheckedChanged(sender As Object, e As EventArgs) Handles chkbxUserAut.CheckedChanged
+ If chkbxUserAut.Checked Then
+ Me.txtPasswort.Enabled = False
+ Me.txtUser.Enabled = False
+ Else
+ Me.txtPasswort.Enabled = True
+ Me.txtUser.Enabled = True
+ End If
+ End Sub
End Class
\ No newline at end of file
diff --git a/Global_Indexer/frmConnections.Designer.vb b/Global_Indexer/frmConnections.Designer.vb
index 5a7f0e9..b3e6145 100644
--- a/Global_Indexer/frmConnections.Designer.vb
+++ b/Global_Indexer/frmConnections.Designer.vb
@@ -24,6 +24,7 @@ Partial Class frmConnections
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim GUIDLabel As System.Windows.Forms.Label
+ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmConnections))
Dim BEZEICHNUNGLabel As System.Windows.Forms.Label
Dim SQL_PROVIDERLabel As System.Windows.Forms.Label
Dim BEMERKUNGLabel As System.Windows.Forms.Label
@@ -31,7 +32,6 @@ Partial Class frmConnections
Dim ERSTELLTWANNLabel As System.Windows.Forms.Label
Dim GEANDERTWERLabel As System.Windows.Forms.Label
Dim GEAENDERTWANNLabel As System.Windows.Forms.Label
- Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmConnections))
Me.MyDataset = New Global_Indexer.MyDataset()
Me.TBDD_CONNECTIONBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.TBDD_CONNECTIONTableAdapter = New Global_Indexer.MyDatasetTableAdapters.TBDD_CONNECTIONTableAdapter()
@@ -90,75 +90,43 @@ Partial Class frmConnections
'
'GUIDLabel
'
- GUIDLabel.AutoSize = True
- GUIDLabel.Location = New System.Drawing.Point(186, 25)
+ resources.ApplyResources(GUIDLabel, "GUIDLabel")
GUIDLabel.Name = "GUIDLabel"
- GUIDLabel.Size = New System.Drawing.Size(21, 13)
- GUIDLabel.TabIndex = 1
- GUIDLabel.Text = "ID:"
'
'BEZEICHNUNGLabel
'
- BEZEICHNUNGLabel.AutoSize = True
- BEZEICHNUNGLabel.Location = New System.Drawing.Point(249, 25)
+ resources.ApplyResources(BEZEICHNUNGLabel, "BEZEICHNUNGLabel")
BEZEICHNUNGLabel.Name = "BEZEICHNUNGLabel"
- BEZEICHNUNGLabel.Size = New System.Drawing.Size(77, 13)
- BEZEICHNUNGLabel.TabIndex = 3
- BEZEICHNUNGLabel.Text = "Bezeichnung:"
'
'SQL_PROVIDERLabel
'
- SQL_PROVIDERLabel.AutoSize = True
- SQL_PROVIDERLabel.Location = New System.Drawing.Point(186, 66)
+ resources.ApplyResources(SQL_PROVIDERLabel, "SQL_PROVIDERLabel")
SQL_PROVIDERLabel.Name = "SQL_PROVIDERLabel"
- SQL_PROVIDERLabel.Size = New System.Drawing.Size(52, 13)
- SQL_PROVIDERLabel.TabIndex = 5
- SQL_PROVIDERLabel.Text = "Provider:"
'
'BEMERKUNGLabel
'
- BEMERKUNGLabel.AutoSize = True
- BEMERKUNGLabel.Location = New System.Drawing.Point(186, 188)
+ resources.ApplyResources(BEMERKUNGLabel, "BEMERKUNGLabel")
BEMERKUNGLabel.Name = "BEMERKUNGLabel"
- BEMERKUNGLabel.Size = New System.Drawing.Size(69, 13)
- BEMERKUNGLabel.TabIndex = 15
- BEMERKUNGLabel.Text = "Bemerkung:"
'
'ERSTELLTWERLabel
'
- ERSTELLTWERLabel.AutoSize = True
- ERSTELLTWERLabel.Location = New System.Drawing.Point(185, 251)
+ resources.ApplyResources(ERSTELLTWERLabel, "ERSTELLTWERLabel")
ERSTELLTWERLabel.Name = "ERSTELLTWERLabel"
- ERSTELLTWERLabel.Size = New System.Drawing.Size(67, 13)
- ERSTELLTWERLabel.TabIndex = 19
- ERSTELLTWERLabel.Text = "Erstellt wer:"
'
'ERSTELLTWANNLabel
'
- ERSTELLTWANNLabel.AutoSize = True
- ERSTELLTWANNLabel.Location = New System.Drawing.Point(333, 251)
+ resources.ApplyResources(ERSTELLTWANNLabel, "ERSTELLTWANNLabel")
ERSTELLTWANNLabel.Name = "ERSTELLTWANNLabel"
- ERSTELLTWANNLabel.Size = New System.Drawing.Size(77, 13)
- ERSTELLTWANNLabel.TabIndex = 21
- ERSTELLTWANNLabel.Text = "Erstellt wann:"
'
'GEANDERTWERLabel
'
- GEANDERTWERLabel.AutoSize = True
- GEANDERTWERLabel.Location = New System.Drawing.Point(484, 251)
+ resources.ApplyResources(GEANDERTWERLabel, "GEANDERTWERLabel")
GEANDERTWERLabel.Name = "GEANDERTWERLabel"
- GEANDERTWERLabel.Size = New System.Drawing.Size(80, 13)
- GEANDERTWERLabel.TabIndex = 23
- GEANDERTWERLabel.Text = "Geändert wer:"
'
'GEAENDERTWANNLabel
'
- GEAENDERTWANNLabel.AutoSize = True
- GEAENDERTWANNLabel.Location = New System.Drawing.Point(624, 251)
+ resources.ApplyResources(GEAENDERTWANNLabel, "GEAENDERTWANNLabel")
GEAENDERTWANNLabel.Name = "GEAENDERTWANNLabel"
- GEAENDERTWANNLabel.Size = New System.Drawing.Size(90, 13)
- GEAENDERTWANNLabel.TabIndex = 25
- GEAENDERTWANNLabel.Text = "Geändert wann:"
'
'MyDataset
'
@@ -202,361 +170,250 @@ Partial Class frmConnections
Me.TBDD_CONNECTIONBindingNavigator.CountItem = Me.BindingNavigatorCountItem
Me.TBDD_CONNECTIONBindingNavigator.DeleteItem = Me.BindingNavigatorDeleteItem
Me.TBDD_CONNECTIONBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.TBDD_CONNECTIONBindingNavigatorSaveItem, Me.ToolStripButton1})
- Me.TBDD_CONNECTIONBindingNavigator.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.TBDD_CONNECTIONBindingNavigator, "TBDD_CONNECTIONBindingNavigator")
Me.TBDD_CONNECTIONBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
Me.TBDD_CONNECTIONBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem
Me.TBDD_CONNECTIONBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem
Me.TBDD_CONNECTIONBindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
Me.TBDD_CONNECTIONBindingNavigator.Name = "TBDD_CONNECTIONBindingNavigator"
Me.TBDD_CONNECTIONBindingNavigator.PositionItem = Me.BindingNavigatorPositionItem
- Me.TBDD_CONNECTIONBindingNavigator.Size = New System.Drawing.Size(827, 25)
- Me.TBDD_CONNECTIONBindingNavigator.TabIndex = 0
- Me.TBDD_CONNECTIONBindingNavigator.Text = "BindingNavigator1"
'
'BindingNavigatorAddNewItem
'
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorAddNewItem.Image = CType(resources.GetObject("BindingNavigatorAddNewItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem")
Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem"
- Me.BindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorAddNewItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorAddNewItem.Text = "Neu hinzufügen"
'
'BindingNavigatorCountItem
'
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
- Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(44, 22)
- Me.BindingNavigatorCountItem.Text = "von {0}"
- Me.BindingNavigatorCountItem.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
'
'BindingNavigatorDeleteItem
'
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorDeleteItem.Image = CType(resources.GetObject("BindingNavigatorDeleteItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem")
Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem"
- Me.BindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorDeleteItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorDeleteItem.Text = "Löschen"
'
'BindingNavigatorMoveFirstItem
'
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
- Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveFirstItem.Text = "Erste verschieben"
'
'BindingNavigatorMovePreviousItem
'
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
- Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMovePreviousItem.Text = "Vorherige verschieben"
'
'BindingNavigatorSeparator
'
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
- Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
'
'BindingNavigatorPositionItem
'
- Me.BindingNavigatorPositionItem.AccessibleName = "Position"
- Me.BindingNavigatorPositionItem.AutoSize = False
+ resources.ApplyResources(Me.BindingNavigatorPositionItem, "BindingNavigatorPositionItem")
Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
- Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
- Me.BindingNavigatorPositionItem.Text = "0"
- Me.BindingNavigatorPositionItem.ToolTipText = "Aktuelle Position"
'
'BindingNavigatorSeparator1
'
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
- Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
'
'BindingNavigatorMoveNextItem
'
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
- Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveNextItem.Text = "Nächste verschieben"
'
'BindingNavigatorMoveLastItem
'
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
- Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveLastItem.Text = "Letzte verschieben"
'
'BindingNavigatorSeparator2
'
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
- Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
'
'TBDD_CONNECTIONBindingNavigatorSaveItem
'
Me.TBDD_CONNECTIONBindingNavigatorSaveItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.TBDD_CONNECTIONBindingNavigatorSaveItem.Image = CType(resources.GetObject("TBDD_CONNECTIONBindingNavigatorSaveItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.TBDD_CONNECTIONBindingNavigatorSaveItem, "TBDD_CONNECTIONBindingNavigatorSaveItem")
Me.TBDD_CONNECTIONBindingNavigatorSaveItem.Name = "TBDD_CONNECTIONBindingNavigatorSaveItem"
- Me.TBDD_CONNECTIONBindingNavigatorSaveItem.Size = New System.Drawing.Size(23, 22)
- Me.TBDD_CONNECTIONBindingNavigatorSaveItem.Text = "Daten speichern"
'
'ToolStripButton1
'
Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton1.Image = Global.Global_Indexer.My.Resources.Resources.refresh_16xLG
- Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton1, "ToolStripButton1")
Me.ToolStripButton1.Name = "ToolStripButton1"
- Me.ToolStripButton1.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton1.Text = "Refresh"
'
'BEZEICHNUNGTextBox
'
Me.BEZEICHNUNGTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "BEZEICHNUNG", True))
- Me.BEZEICHNUNGTextBox.Location = New System.Drawing.Point(252, 41)
+ resources.ApplyResources(Me.BEZEICHNUNGTextBox, "BEZEICHNUNGTextBox")
Me.BEZEICHNUNGTextBox.Name = "BEZEICHNUNGTextBox"
- Me.BEZEICHNUNGTextBox.Size = New System.Drawing.Size(222, 22)
- Me.BEZEICHNUNGTextBox.TabIndex = 4
'
'SERVERTextBox
'
Me.SERVERTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "SERVER", True))
- Me.SERVERTextBox.Location = New System.Drawing.Point(188, 122)
+ resources.ApplyResources(Me.SERVERTextBox, "SERVERTextBox")
Me.SERVERTextBox.Name = "SERVERTextBox"
- Me.SERVERTextBox.Size = New System.Drawing.Size(145, 22)
- Me.SERVERTextBox.TabIndex = 8
'
'DATENBANKTextBox
'
Me.DATENBANKTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "DATENBANK", True))
- Me.DATENBANKTextBox.Location = New System.Drawing.Point(338, 122)
+ resources.ApplyResources(Me.DATENBANKTextBox, "DATENBANKTextBox")
Me.DATENBANKTextBox.Name = "DATENBANKTextBox"
- Me.DATENBANKTextBox.Size = New System.Drawing.Size(136, 22)
- Me.DATENBANKTextBox.TabIndex = 10
'
'USERNAMETextBox
'
Me.USERNAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "USERNAME", True))
- Me.USERNAMETextBox.Location = New System.Drawing.Point(189, 163)
+ resources.ApplyResources(Me.USERNAMETextBox, "USERNAMETextBox")
Me.USERNAMETextBox.Name = "USERNAMETextBox"
- Me.USERNAMETextBox.Size = New System.Drawing.Size(145, 22)
- Me.USERNAMETextBox.TabIndex = 12
'
'PASSWORDTextBox
'
Me.PASSWORDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "PASSWORD", True))
- Me.PASSWORDTextBox.Location = New System.Drawing.Point(340, 163)
+ resources.ApplyResources(Me.PASSWORDTextBox, "PASSWORDTextBox")
Me.PASSWORDTextBox.Name = "PASSWORDTextBox"
- Me.PASSWORDTextBox.Size = New System.Drawing.Size(134, 22)
- Me.PASSWORDTextBox.TabIndex = 14
Me.PASSWORDTextBox.UseSystemPasswordChar = True
'
'BEMERKUNGTextBox
'
Me.BEMERKUNGTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "BEMERKUNG", True))
- Me.BEMERKUNGTextBox.Location = New System.Drawing.Point(188, 204)
+ resources.ApplyResources(Me.BEMERKUNGTextBox, "BEMERKUNGTextBox")
Me.BEMERKUNGTextBox.Name = "BEMERKUNGTextBox"
- Me.BEMERKUNGTextBox.Size = New System.Drawing.Size(478, 22)
- Me.BEMERKUNGTextBox.TabIndex = 16
'
'AKTIVCheckBox
'
Me.AKTIVCheckBox.DataBindings.Add(New System.Windows.Forms.Binding("CheckState", Me.TBDD_CONNECTIONBindingSource, "AKTIV", True))
- Me.AKTIVCheckBox.Location = New System.Drawing.Point(496, 39)
+ resources.ApplyResources(Me.AKTIVCheckBox, "AKTIVCheckBox")
Me.AKTIVCheckBox.Name = "AKTIVCheckBox"
- Me.AKTIVCheckBox.Size = New System.Drawing.Size(104, 24)
- Me.AKTIVCheckBox.TabIndex = 18
- Me.AKTIVCheckBox.Text = "Aktiv"
Me.AKTIVCheckBox.UseVisualStyleBackColor = True
'
'ERSTELLTWERTextBox
'
Me.ERSTELLTWERTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.ERSTELLTWERTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "ERSTELLTWER", True))
- Me.ERSTELLTWERTextBox.Location = New System.Drawing.Point(188, 267)
+ resources.ApplyResources(Me.ERSTELLTWERTextBox, "ERSTELLTWERTextBox")
Me.ERSTELLTWERTextBox.Name = "ERSTELLTWERTextBox"
Me.ERSTELLTWERTextBox.ReadOnly = True
- Me.ERSTELLTWERTextBox.Size = New System.Drawing.Size(144, 22)
- Me.ERSTELLTWERTextBox.TabIndex = 20
'
'ERSTELLTWANNTextBox
'
Me.ERSTELLTWANNTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.ERSTELLTWANNTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "ERSTELLTWANN", True))
- Me.ERSTELLTWANNTextBox.Location = New System.Drawing.Point(337, 267)
+ resources.ApplyResources(Me.ERSTELLTWANNTextBox, "ERSTELLTWANNTextBox")
Me.ERSTELLTWANNTextBox.Name = "ERSTELLTWANNTextBox"
Me.ERSTELLTWANNTextBox.ReadOnly = True
- Me.ERSTELLTWANNTextBox.Size = New System.Drawing.Size(144, 22)
- Me.ERSTELLTWANNTextBox.TabIndex = 22
'
'GEANDERTWERTextBox
'
Me.GEANDERTWERTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.GEANDERTWERTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "GEANDERTWER", True))
- Me.GEANDERTWERTextBox.Location = New System.Drawing.Point(487, 267)
+ resources.ApplyResources(Me.GEANDERTWERTextBox, "GEANDERTWERTextBox")
Me.GEANDERTWERTextBox.Name = "GEANDERTWERTextBox"
Me.GEANDERTWERTextBox.ReadOnly = True
- Me.GEANDERTWERTextBox.Size = New System.Drawing.Size(134, 22)
- Me.GEANDERTWERTextBox.TabIndex = 24
'
'GEAENDERTWANNTextBox
'
Me.GEAENDERTWANNTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.GEAENDERTWANNTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "GEAENDERTWANN", True))
- Me.GEAENDERTWANNTextBox.Location = New System.Drawing.Point(627, 267)
+ resources.ApplyResources(Me.GEAENDERTWANNTextBox, "GEAENDERTWANNTextBox")
Me.GEAENDERTWANNTextBox.Name = "GEAENDERTWANNTextBox"
Me.GEAENDERTWANNTextBox.ReadOnly = True
- Me.GEAENDERTWANNTextBox.Size = New System.Drawing.Size(134, 22)
- Me.GEAENDERTWANNTextBox.TabIndex = 26
'
'SQL_PROVIDERComboBox
'
Me.SQL_PROVIDERComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "SQL_PROVIDER", True))
Me.SQL_PROVIDERComboBox.FormattingEnabled = True
- Me.SQL_PROVIDERComboBox.Items.AddRange(New Object() {"Oracle", "MS-SQLServer"})
- Me.SQL_PROVIDERComboBox.Location = New System.Drawing.Point(188, 82)
+ Me.SQL_PROVIDERComboBox.Items.AddRange(New Object() {resources.GetString("SQL_PROVIDERComboBox.Items"), resources.GetString("SQL_PROVIDERComboBox.Items1")})
+ resources.ApplyResources(Me.SQL_PROVIDERComboBox, "SQL_PROVIDERComboBox")
Me.SQL_PROVIDERComboBox.Name = "SQL_PROVIDERComboBox"
- Me.SQL_PROVIDERComboBox.Size = New System.Drawing.Size(121, 21)
- Me.SQL_PROVIDERComboBox.TabIndex = 27
'
'ListBox1
'
Me.ListBox1.DataSource = Me.TBDD_CONNECTIONBindingSource
Me.ListBox1.DisplayMember = "BEZEICHNUNG"
Me.ListBox1.FormattingEnabled = True
- Me.ListBox1.Location = New System.Drawing.Point(0, 22)
+ resources.ApplyResources(Me.ListBox1, "ListBox1")
Me.ListBox1.Name = "ListBox1"
- Me.ListBox1.Size = New System.Drawing.Size(161, 264)
- Me.ListBox1.TabIndex = 28
Me.ListBox1.ValueMember = "GUID"
'
'lblDataSource
'
- Me.lblDataSource.AutoSize = True
- Me.lblDataSource.Location = New System.Drawing.Point(185, 106)
+ resources.ApplyResources(Me.lblDataSource, "lblDataSource")
Me.lblDataSource.Name = "lblDataSource"
- Me.lblDataSource.Size = New System.Drawing.Size(74, 13)
- Me.lblDataSource.TabIndex = 30
- Me.lblDataSource.Text = "DataSource*:"
- Me.lblDataSource.Visible = False
'
'lblInitialCatalog
'
- Me.lblInitialCatalog.AutoSize = True
- Me.lblInitialCatalog.Location = New System.Drawing.Point(337, 106)
+ resources.ApplyResources(Me.lblInitialCatalog, "lblInitialCatalog")
Me.lblInitialCatalog.Name = "lblInitialCatalog"
- Me.lblInitialCatalog.Size = New System.Drawing.Size(84, 13)
- Me.lblInitialCatalog.TabIndex = 37
- Me.lblInitialCatalog.Text = "InitialCatalog*:"
- Me.lblInitialCatalog.Visible = False
'
'lblUserId
'
- Me.lblUserId.AutoSize = True
- Me.lblUserId.Location = New System.Drawing.Point(186, 147)
+ resources.ApplyResources(Me.lblUserId, "lblUserId")
Me.lblUserId.Name = "lblUserId"
- Me.lblUserId.Size = New System.Drawing.Size(48, 13)
- Me.lblUserId.TabIndex = 38
- Me.lblUserId.Text = "UserId*:"
- Me.lblUserId.Visible = False
'
'lblPassword
'
- Me.lblPassword.AutoSize = True
- Me.lblPassword.Location = New System.Drawing.Point(337, 147)
+ resources.ApplyResources(Me.lblPassword, "lblPassword")
Me.lblPassword.Name = "lblPassword"
- Me.lblPassword.Size = New System.Drawing.Size(61, 13)
- Me.lblPassword.TabIndex = 39
- Me.lblPassword.Text = "Passwort*:"
- Me.lblPassword.Visible = False
'
'lblDatenbank
'
- Me.lblDatenbank.AutoSize = True
- Me.lblDatenbank.Location = New System.Drawing.Point(337, 106)
+ resources.ApplyResources(Me.lblDatenbank, "lblDatenbank")
Me.lblDatenbank.Name = "lblDatenbank"
- Me.lblDatenbank.Size = New System.Drawing.Size(72, 13)
- Me.lblDatenbank.TabIndex = 41
- Me.lblDatenbank.Text = "Datenbank*:"
- Me.lblDatenbank.Visible = False
'
'cmbInitialCatalog
'
Me.cmbInitialCatalog.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "DATENBANK", True))
Me.cmbInitialCatalog.FormattingEnabled = True
- Me.cmbInitialCatalog.Location = New System.Drawing.Point(339, 122)
+ resources.ApplyResources(Me.cmbInitialCatalog, "cmbInitialCatalog")
Me.cmbInitialCatalog.Name = "cmbInitialCatalog"
- Me.cmbInitialCatalog.Size = New System.Drawing.Size(136, 21)
- Me.cmbInitialCatalog.TabIndex = 40
- Me.cmbInitialCatalog.Visible = False
'
'CheckBoxwin_aut
'
- Me.CheckBoxwin_aut.AutoSize = True
- Me.CheckBoxwin_aut.Location = New System.Drawing.Point(496, 124)
+ resources.ApplyResources(Me.CheckBoxwin_aut, "CheckBoxwin_aut")
Me.CheckBoxwin_aut.Name = "CheckBoxwin_aut"
- Me.CheckBoxwin_aut.Size = New System.Drawing.Size(170, 17)
- Me.CheckBoxwin_aut.TabIndex = 42
- Me.CheckBoxwin_aut.Text = "Windows-Authentifizierung"
Me.CheckBoxwin_aut.UseVisualStyleBackColor = True
- Me.CheckBoxwin_aut.Visible = False
'
'btnCheck_Con
'
Me.btnCheck_Con.Image = Global.Global_Indexer.My.Resources.Resources.database_refresh
- Me.btnCheck_Con.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnCheck_Con.Location = New System.Drawing.Point(338, 80)
+ resources.ApplyResources(Me.btnCheck_Con, "btnCheck_Con")
Me.btnCheck_Con.Name = "btnCheck_Con"
- Me.btnCheck_Con.Size = New System.Drawing.Size(136, 23)
- Me.btnCheck_Con.TabIndex = 43
- Me.btnCheck_Con.Text = "Test DB-Verbindung"
- Me.btnCheck_Con.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnCheck_Con.UseVisualStyleBackColor = True
- Me.btnCheck_Con.Visible = False
'
'chkOR_ohne_TNS
'
- Me.chkOR_ohne_TNS.AutoSize = True
- Me.chkOR_ohne_TNS.Location = New System.Drawing.Point(496, 165)
+ resources.ApplyResources(Me.chkOR_ohne_TNS, "chkOR_ohne_TNS")
Me.chkOR_ohne_TNS.Name = "chkOR_ohne_TNS"
- Me.chkOR_ohne_TNS.Size = New System.Drawing.Size(127, 17)
- Me.chkOR_ohne_TNS.TabIndex = 44
- Me.chkOR_ohne_TNS.Text = "Ohne tnsnames.ora"
Me.chkOR_ohne_TNS.UseVisualStyleBackColor = True
- Me.chkOR_ohne_TNS.Visible = False
'
'lblSave
'
- Me.lblSave.AutoSize = True
+ resources.ApplyResources(Me.lblSave, "lblSave")
Me.lblSave.BackColor = System.Drawing.Color.Yellow
- Me.lblSave.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSave.Location = New System.Drawing.Point(484, 229)
Me.lblSave.Name = "lblSave"
- Me.lblSave.Size = New System.Drawing.Size(228, 17)
- Me.lblSave.TabIndex = 79
- Me.lblSave.Text = "Connection erfolgreich gespeichert!"
- Me.lblSave.Visible = False
'
'GUIDTextBox
'
Me.GUIDTextBox.BackColor = System.Drawing.Color.WhiteSmoke
Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBDD_CONNECTIONBindingSource, "GUID", True))
- Me.GUIDTextBox.Location = New System.Drawing.Point(189, 41)
+ resources.ApplyResources(Me.GUIDTextBox, "GUIDTextBox")
Me.GUIDTextBox.Name = "GUIDTextBox"
Me.GUIDTextBox.ReadOnly = True
- Me.GUIDTextBox.Size = New System.Drawing.Size(57, 22)
- Me.GUIDTextBox.TabIndex = 80
'
'frmConnections
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(827, 309)
Me.Controls.Add(Me.GUIDTextBox)
Me.Controls.Add(Me.lblSave)
Me.Controls.Add(Me.chkOR_ohne_TNS)
@@ -590,13 +447,11 @@ Partial Class frmConnections
Me.Controls.Add(Me.GEAENDERTWANNTextBox)
Me.Controls.Add(Me.TBDD_CONNECTIONBindingNavigator)
Me.Controls.Add(Me.lblDatenbank)
- Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmConnections"
- Me.Text = "Connections"
- CType(Me.MyDataset,System.ComponentModel.ISupportInitialize).EndInit
+ CType(Me.MyDataset, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBDD_CONNECTIONBindingSource,System.ComponentModel.ISupportInitialize).EndInit
CType(Me.TBDD_CONNECTIONBindingNavigator,System.ComponentModel.ISupportInitialize).EndInit
Me.TBDD_CONNECTIONBindingNavigator.ResumeLayout(false)
diff --git a/Global_Indexer/frmConnections.resx b/Global_Indexer/frmConnections.resx
index e80de81..14e47ea 100644
--- a/Global_Indexer/frmConnections.resx
+++ b/Global_Indexer/frmConnections.resx
@@ -120,27 +120,245 @@
False
+
+
+ True
+
+
+
+ 186, 25
+
+
+ 21, 13
+
+
+ 1
+
+
+ ID:
+
+
+ GUIDLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 12
+
False
+
+ True
+
+
+ 249, 25
+
+
+ 77, 13
+
+
+ 3
+
+
+ Bezeichnung:
+
+
+ BEZEICHNUNGLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 13
+
False
+
+ True
+
+
+ 186, 66
+
+
+ 52, 13
+
+
+ 5
+
+
+ Provider:
+
+
+ SQL_PROVIDERLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 15
+
False
+
+ True
+
+
+ 186, 188
+
+
+ 69, 13
+
+
+ 15
+
+
+ Bemerkung:
+
+
+ BEMERKUNGLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 20
+
False
+
+ True
+
+
+ 185, 251
+
+
+ 67, 13
+
+
+ 19
+
+
+ Erstellt wer:
+
+
+ ERSTELLTWERLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 23
+
False
+
+ True
+
+
+ 333, 251
+
+
+ 77, 13
+
+
+ 21
+
+
+ Erstellt wann:
+
+
+ ERSTELLTWANNLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 25
+
False
+
+ True
+
+
+ 484, 251
+
+
+ 80, 13
+
+
+ 23
+
+
+ Geändert wer:
+
+
+ GEANDERTWERLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 27
+
False
+
+ True
+
+
+ 624, 251
+
+
+ 90, 13
+
+
+ 25
+
+
+ Geändert wann:
+
+
+ GEAENDERTWANNLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 29
+
17, 17
@@ -156,7 +374,6 @@
782, 17
-
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -169,6 +386,24 @@
rkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Neu hinzufügen
+
+
+ 44, 22
+
+
+ von {0}
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -181,6 +416,15 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -192,6 +436,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -201,6 +454,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -210,6 +493,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -221,6 +513,18 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -228,4 +532,769 @@
dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII=
+
+ 23, 22
+
+
+ Daten speichern
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ Refresh
+
+
+ 0, 0
+
+
+ 827, 25
+
+
+ 0
+
+
+ BindingNavigator1
+
+
+ TBDD_CONNECTIONBindingNavigator
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 31
+
+
+ 252, 41
+
+
+ 222, 22
+
+
+ 4
+
+
+ BEZEICHNUNGTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 14
+
+
+ 188, 122
+
+
+ 145, 22
+
+
+ 8
+
+
+ SERVERTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 16
+
+
+ 338, 122
+
+
+ 136, 22
+
+
+ 10
+
+
+ DATENBANKTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 17
+
+
+ 189, 163
+
+
+ 145, 22
+
+
+ 12
+
+
+ USERNAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 18
+
+
+ 340, 163
+
+
+ 134, 22
+
+
+ 14
+
+
+ PASSWORDTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 19
+
+
+ 188, 204
+
+
+ 478, 22
+
+
+ 16
+
+
+ BEMERKUNGTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 21
+
+
+ 496, 39
+
+
+ 104, 24
+
+
+ 18
+
+
+ Aktiv
+
+
+ AKTIVCheckBox
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 22
+
+
+ 188, 267
+
+
+ 144, 22
+
+
+ 20
+
+
+ ERSTELLTWERTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 24
+
+
+ 337, 267
+
+
+ 144, 22
+
+
+ 22
+
+
+ ERSTELLTWANNTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 26
+
+
+ 487, 267
+
+
+ 134, 22
+
+
+ 24
+
+
+ GEANDERTWERTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 28
+
+
+ 627, 267
+
+
+ 134, 22
+
+
+ 26
+
+
+ GEAENDERTWANNTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 30
+
+
+ Oracle
+
+
+ MS-SQLServer
+
+
+ 188, 82
+
+
+ 121, 21
+
+
+ 27
+
+
+ SQL_PROVIDERComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 11
+
+
+ 0, 22
+
+
+ 161, 264
+
+
+ 28
+
+
+ ListBox1
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 10
+
+
+ True
+
+
+ 185, 106
+
+
+ 74, 13
+
+
+ 30
+
+
+ DataSource*:
+
+
+ False
+
+
+ lblDataSource
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 9
+
+
+ True
+
+
+ 337, 106
+
+
+ 84, 13
+
+
+ 37
+
+
+ InitialCatalog*:
+
+
+ False
+
+
+ lblInitialCatalog
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 8
+
+
+ True
+
+
+ 186, 147
+
+
+ 48, 13
+
+
+ 38
+
+
+ UserId*:
+
+
+ False
+
+
+ lblUserId
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 7
+
+
+ True
+
+
+ 337, 147
+
+
+ 61, 13
+
+
+ 39
+
+
+ Passwort*:
+
+
+ False
+
+
+ lblPassword
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 6
+
+
+ True
+
+
+ 337, 106
+
+
+ 72, 13
+
+
+ 41
+
+
+ Datenbank*:
+
+
+ False
+
+
+ lblDatenbank
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 32
+
+
+ 339, 122
+
+
+ 136, 21
+
+
+ 40
+
+
+ False
+
+
+ cmbInitialCatalog
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 5
+
+
+ True
+
+
+ 496, 124
+
+
+ 170, 17
+
+
+ 42
+
+
+ Windows-Authentifizierung
+
+
+ False
+
+
+ CheckBoxwin_aut
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
+
+ MiddleLeft
+
+
+ 338, 80
+
+
+ 136, 23
+
+
+ 43
+
+
+ Test DB-Verbindung
+
+
+ MiddleRight
+
+
+ False
+
+
+ btnCheck_Con
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
+
+ True
+
+
+ 496, 165
+
+
+ 127, 17
+
+
+ 44
+
+
+ Ohne tnsnames.ora
+
+
+ False
+
+
+ chkOR_ohne_TNS
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ True
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ 484, 229
+
+
+ 228, 17
+
+
+ 79
+
+
+ Connection erfolgreich gespeichert!
+
+
+ False
+
+
+ lblSave
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ 189, 41
+
+
+ 57, 22
+
+
+ 80
+
+
+ GUIDTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 6, 13
+
+
+ 827, 309
+
+
+ Segoe UI, 8.25pt
+
+
+ Connections
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_CONNECTIONBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_CONNECTIONTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_CONNECTIONTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ BindingNavigatorAddNewItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorCountItem
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorDeleteItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveFirstItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMovePreviousItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorPositionItem
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveNextItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveLastItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_CONNECTIONBindingNavigatorSaveItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ frmConnections
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmHistory.Designer.vb b/Global_Indexer/frmHistory.Designer.vb
index 47eee71..f558e5e 100644
--- a/Global_Indexer/frmHistory.Designer.vb
+++ b/Global_Indexer/frmHistory.Designer.vb
@@ -63,16 +63,13 @@ Partial Class frmHistory
Me.TBGI_HISTORYBindingNavigator.CountItemFormat = "von {0} indexierten Dateien"
Me.TBGI_HISTORYBindingNavigator.DeleteItem = Nothing
Me.TBGI_HISTORYBindingNavigator.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.ToolStripButton1, Me.ToolStripButton2, Me.ToolStripButton3})
- Me.TBGI_HISTORYBindingNavigator.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.TBGI_HISTORYBindingNavigator, "TBGI_HISTORYBindingNavigator")
Me.TBGI_HISTORYBindingNavigator.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
Me.TBGI_HISTORYBindingNavigator.MoveLastItem = Me.BindingNavigatorMoveLastItem
Me.TBGI_HISTORYBindingNavigator.MoveNextItem = Me.BindingNavigatorMoveNextItem
Me.TBGI_HISTORYBindingNavigator.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
Me.TBGI_HISTORYBindingNavigator.Name = "TBGI_HISTORYBindingNavigator"
Me.TBGI_HISTORYBindingNavigator.PositionItem = Me.BindingNavigatorPositionItem
- Me.TBGI_HISTORYBindingNavigator.Size = New System.Drawing.Size(1089, 25)
- Me.TBGI_HISTORYBindingNavigator.TabIndex = 0
- Me.TBGI_HISTORYBindingNavigator.Text = "BindingNavigator1"
'
'TBGI_HISTORYBindingSource
'
@@ -87,94 +84,70 @@ Partial Class frmHistory
'BindingNavigatorCountItem
'
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
- Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(148, 22)
- Me.BindingNavigatorCountItem.Text = "von {0} indexierten Dateien"
- Me.BindingNavigatorCountItem.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
'
'BindingNavigatorMoveFirstItem
'
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
- Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveFirstItem.Text = "Erste verschieben"
'
'BindingNavigatorMovePreviousItem
'
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
- Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMovePreviousItem.Text = "Vorherige verschieben"
'
'BindingNavigatorSeparator
'
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
- Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
'
'BindingNavigatorPositionItem
'
- Me.BindingNavigatorPositionItem.AccessibleName = "Position"
- Me.BindingNavigatorPositionItem.AutoSize = False
+ resources.ApplyResources(Me.BindingNavigatorPositionItem, "BindingNavigatorPositionItem")
Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
- Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
- Me.BindingNavigatorPositionItem.Text = "0"
- Me.BindingNavigatorPositionItem.ToolTipText = "Aktuelle Position"
'
'BindingNavigatorSeparator1
'
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
- Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
'
'BindingNavigatorMoveNextItem
'
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
- Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveNextItem.Text = "Nächste verschieben"
'
'BindingNavigatorMoveLastItem
'
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
- Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveLastItem.Text = "Letzte verschieben"
'
'BindingNavigatorSeparator2
'
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
- Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
'
'ToolStripButton1
'
Me.ToolStripButton1.Image = Global.Global_Indexer.My.Resources.Resources.refresh_16xLG
- Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton1, "ToolStripButton1")
Me.ToolStripButton1.Name = "ToolStripButton1"
- Me.ToolStripButton1.Size = New System.Drawing.Size(122, 22)
- Me.ToolStripButton1.Text = "Alle Dateien laden"
'
'ToolStripButton2
'
Me.ToolStripButton2.Image = Global.Global_Indexer.My.Resources.Resources.refresh_16xLG
- Me.ToolStripButton2.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton2, "ToolStripButton2")
Me.ToolStripButton2.Name = "ToolStripButton2"
- Me.ToolStripButton2.Size = New System.Drawing.Size(144, 22)
- Me.ToolStripButton2.Text = "Heutige Dateien laden"
'
'ToolStripButton3
'
Me.ToolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton3.Image = Global.Global_Indexer.My.Resources.Resources.Excel_25ixel
- Me.ToolStripButton3.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton3, "ToolStripButton3")
Me.ToolStripButton3.Name = "ToolStripButton3"
- Me.ToolStripButton3.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton3.Text = "Export Excel"
'
'TBGI_HISTORYTableAdapter
'
@@ -205,17 +178,14 @@ Partial Class frmHistory
'GridControl1
'
Me.GridControl1.DataSource = Me.TBGI_HISTORYBindingSource
- Me.GridControl1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GridControl1.Location = New System.Drawing.Point(0, 25)
+ resources.ApplyResources(Me.GridControl1, "GridControl1")
Me.GridControl1.MainView = Me.GridView1
Me.GridControl1.Name = "GridControl1"
- Me.GridControl1.Size = New System.Drawing.Size(1089, 337)
- Me.GridControl1.TabIndex = 1
Me.GridControl1.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView1})
'
'GridView1
'
- Me.GridView1.Appearance.EvenRow.BackColor = System.Drawing.Color.Aqua
+ Me.GridView1.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridView1.Appearance.EvenRow.BackColor"), System.Drawing.Color)
Me.GridView1.Appearance.EvenRow.Options.UseBackColor = True
Me.GridView1.Columns.AddRange(New DevExpress.XtraGrid.Columns.GridColumn() {Me.colGUID, Me.colFILENAME_ORIGINAL, Me.colFILENAME_NEW, Me.colADDED_WHEN})
Me.GridView1.GridControl = Me.GridControl1
@@ -227,51 +197,36 @@ Partial Class frmHistory
'
'colGUID
'
- Me.colGUID.Caption = "ID"
+ resources.ApplyResources(Me.colGUID, "colGUID")
Me.colGUID.FieldName = "GUID"
Me.colGUID.Name = "colGUID"
- Me.colGUID.Visible = True
- Me.colGUID.VisibleIndex = 0
- Me.colGUID.Width = 65
'
'colFILENAME_ORIGINAL
'
- Me.colFILENAME_ORIGINAL.Caption = "Original Filename"
+ resources.ApplyResources(Me.colFILENAME_ORIGINAL, "colFILENAME_ORIGINAL")
Me.colFILENAME_ORIGINAL.FieldName = "FILENAME_ORIGINAL"
Me.colFILENAME_ORIGINAL.Name = "colFILENAME_ORIGINAL"
- Me.colFILENAME_ORIGINAL.Visible = True
- Me.colFILENAME_ORIGINAL.VisibleIndex = 1
- Me.colFILENAME_ORIGINAL.Width = 315
'
'colFILENAME_NEW
'
- Me.colFILENAME_NEW.Caption = "Filename New"
+ resources.ApplyResources(Me.colFILENAME_NEW, "colFILENAME_NEW")
Me.colFILENAME_NEW.FieldName = "FILENAME_NEW"
Me.colFILENAME_NEW.Name = "colFILENAME_NEW"
- Me.colFILENAME_NEW.Visible = True
- Me.colFILENAME_NEW.VisibleIndex = 2
- Me.colFILENAME_NEW.Width = 368
'
'colADDED_WHEN
'
- Me.colADDED_WHEN.Caption = "Erstellt wann"
+ resources.ApplyResources(Me.colADDED_WHEN, "colADDED_WHEN")
Me.colADDED_WHEN.DisplayFormat.FormatType = DevExpress.Utils.FormatType.DateTime
Me.colADDED_WHEN.FieldName = "ADDED_WHEN"
Me.colADDED_WHEN.Name = "colADDED_WHEN"
- Me.colADDED_WHEN.Visible = True
- Me.colADDED_WHEN.VisibleIndex = 3
- Me.colADDED_WHEN.Width = 140
'
'frmHistory
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(1089, 362)
Me.Controls.Add(Me.GridControl1)
Me.Controls.Add(Me.TBGI_HISTORYBindingNavigator)
- Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Name = "frmHistory"
- Me.Text = "History - Dateien indexiert"
CType(Me.TBGI_HISTORYBindingNavigator, System.ComponentModel.ISupportInitialize).EndInit()
Me.TBGI_HISTORYBindingNavigator.ResumeLayout(False)
Me.TBGI_HISTORYBindingNavigator.PerformLayout()
diff --git a/Global_Indexer/frmHistory.resx b/Global_Indexer/frmHistory.resx
index 09184db..c9f4e14 100644
--- a/Global_Indexer/frmHistory.resx
+++ b/Global_Indexer/frmHistory.resx
@@ -127,6 +127,15 @@
17, 17
+
+ 148, 22
+
+
+ von {0} indexierten Dateien
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -138,6 +147,16 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -147,6 +166,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -156,6 +205,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -167,13 +225,296 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
-
- 17, 17
-
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+ Magenta
+
+
+ 122, 22
+
+
+ Alle Dateien laden
+
+
+ Magenta
+
+
+ 144, 22
+
+
+ Heutige Dateien laden
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ Export Excel
+
+
+ 0, 0
+
+
+ 1089, 25
+
+
+ 0
+
+
+ BindingNavigator1
+
+
+ TBGI_HISTORYBindingNavigator
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
336, 17
540, 17
+
+
+ Fill
+
+
+ 0, 25
+
+
+ Aqua
+
+
+ ID
+
+
+ True
+
+
+ 0
+
+
+ 65
+
+
+ Original Filename
+
+
+ True
+
+
+ 1
+
+
+ 315
+
+
+ Filename New
+
+
+ True
+
+
+ 2
+
+
+ 368
+
+
+ Erstellt wann
+
+
+ True
+
+
+ 3
+
+
+ 140
+
+
+ 1089, 337
+
+
+ 1
+
+
+ GridControl1
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 6, 13
+
+
+ 1089, 362
+
+
+ Segoe UI, 8.25pt
+
+
+ History - Dateien indexiert
+
+
+ TBGI_HISTORYBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ BindingNavigatorCountItem
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveFirstItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMovePreviousItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorPositionItem
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveNextItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveLastItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton2
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton3
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBGI_HISTORYTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBGI_HISTORYTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ GridView1
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colGUID
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colFILENAME_ORIGINAL
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colFILENAME_NEW
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ colADDED_WHEN
+
+
+ DevExpress.XtraGrid.Columns.GridColumn, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ frmHistory
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmHotKey_Add.Designer.vb b/Global_Indexer/frmHotKey_Add.Designer.vb
index 6edef48..8114e4c 100644
--- a/Global_Indexer/frmHotKey_Add.Designer.vb
+++ b/Global_Indexer/frmHotKey_Add.Designer.vb
@@ -24,6 +24,7 @@ Partial Class frmHotKey_Add
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim GUIDLabel As System.Windows.Forms.Label
+ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmHotKey_Add))
Dim NAMELabel As System.Windows.Forms.Label
Dim WD_SEARCHLabel As System.Windows.Forms.Label
Dim HOTKEY1Label As System.Windows.Forms.Label
@@ -52,7 +53,6 @@ Partial Class frmHotKey_Add
Dim ADDED_WHOLabel2 As System.Windows.Forms.Label
Dim ADDED_WHENLabel2 As System.Windows.Forms.Label
Dim Label17 As System.Windows.Forms.Label
- Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmHotKey_Add))
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
Me.tslbl_Hotkeywindow = New System.Windows.Forms.ToolStripStatusLabel()
Me.tslbl_HotkeySequence = New System.Windows.Forms.ToolStripStatusLabel()
@@ -104,6 +104,7 @@ Partial Class frmHotKey_Add
Me.OFDWindreamsuche = New System.Windows.Forms.OpenFileDialog()
Me.TabControlMain = New System.Windows.Forms.TabControl()
Me.TabPageUebersicht = New System.Windows.Forms.TabPage()
+ Me.ToolStrip1 = New System.Windows.Forms.ToolStrip()
Me.GroupBoxPatterns = New System.Windows.Forms.GroupBox()
Me.ListBox1 = New System.Windows.Forms.ListBox()
Me.TBHOTKEY_WINDOW_HOOKBindingSource = New System.Windows.Forms.BindingSource(Me.components)
@@ -224,8 +225,17 @@ Partial Class frmHotKey_Add
Me.TBHOTKEY_USER_PROFILETableAdapter = New Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_USER_PROFILETableAdapter()
Me.TBHOTKEY_PATTERNS_REWORKTableAdapter = New Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_PATTERNS_REWORKTableAdapter()
Me.TBHOTKEY_WINDOW_HOOKTableAdapter = New Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_WINDOW_HOOKTableAdapter()
- Me.ToolStrip1 = New System.Windows.Forms.ToolStrip()
Me.ToolTipController1 = New DevExpress.Utils.ToolTipController(Me.components)
+ Me.TabControl2 = New System.Windows.Forms.TabControl()
+ Me.TabPage7 = New System.Windows.Forms.TabPage()
+ Me.TabPage8 = New System.Windows.Forms.TabPage()
+ Me.cmbCopyPasteFunction = New System.Windows.Forms.ComboBox()
+ Me.Label18 = New System.Windows.Forms.Label()
+ Me.Label19 = New System.Windows.Forms.Label()
+ Me.txtcopypastePatter = New System.Windows.Forms.TextBox()
+ Me.btnAddCopypasteConfig = New System.Windows.Forms.Button()
+ Me.lblLinkCopyPaste = New System.Windows.Forms.Label()
+ Me.Label20 = New System.Windows.Forms.Label()
GUIDLabel = New System.Windows.Forms.Label()
NAMELabel = New System.Windows.Forms.Label()
WD_SEARCHLabel = New System.Windows.Forms.Label()
@@ -288,315 +298,180 @@ Partial Class frmHotKey_Add
Me.GroupBox2.SuspendLayout()
CType(Me.TBDD_USERBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.TBHOTKEY_USER_PROFILEBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
+ Me.TabControl2.SuspendLayout()
+ Me.TabPage7.SuspendLayout()
+ Me.TabPage8.SuspendLayout()
Me.SuspendLayout()
'
'GUIDLabel
'
- GUIDLabel.AutoSize = True
- GUIDLabel.Location = New System.Drawing.Point(6, 12)
+ resources.ApplyResources(GUIDLabel, "GUIDLabel")
GUIDLabel.Name = "GUIDLabel"
- GUIDLabel.Size = New System.Drawing.Size(21, 13)
- GUIDLabel.TabIndex = 0
- GUIDLabel.Text = "ID:"
'
'NAMELabel
'
- NAMELabel.AutoSize = True
- NAMELabel.Location = New System.Drawing.Point(64, 12)
+ resources.ApplyResources(NAMELabel, "NAMELabel")
NAMELabel.Name = "NAMELabel"
- NAMELabel.Size = New System.Drawing.Size(65, 13)
- NAMELabel.TabIndex = 2
- NAMELabel.Text = "Profilname:"
'
'WD_SEARCHLabel
'
- WD_SEARCHLabel.AutoSize = True
- WD_SEARCHLabel.Location = New System.Drawing.Point(6, 53)
+ resources.ApplyResources(WD_SEARCHLabel, "WD_SEARCHLabel")
WD_SEARCHLabel.Name = "WD_SEARCHLabel"
- WD_SEARCHLabel.Size = New System.Drawing.Size(96, 13)
- WD_SEARCHLabel.TabIndex = 4
- WD_SEARCHLabel.Text = "windream-Suche:"
'
'HOTKEY1Label
'
- HOTKEY1Label.AutoSize = True
- HOTKEY1Label.Location = New System.Drawing.Point(6, 140)
+ resources.ApplyResources(HOTKEY1Label, "HOTKEY1Label")
HOTKEY1Label.Name = "HOTKEY1Label"
- HOTKEY1Label.Size = New System.Drawing.Size(87, 13)
- HOTKEY1Label.TabIndex = 6
- HOTKEY1Label.Text = "Funktionstaste:"
'
'HOTKEY2Label
'
- HOTKEY2Label.AutoSize = True
- HOTKEY2Label.Location = New System.Drawing.Point(99, 140)
+ resources.ApplyResources(HOTKEY2Label, "HOTKEY2Label")
HOTKEY2Label.Name = "HOTKEY2Label"
- HOTKEY2Label.Size = New System.Drawing.Size(55, 13)
- HOTKEY2Label.TabIndex = 8
- HOTKEY2Label.Text = "Hotkey 2:"
'
'CHANGED_WHOLabel
'
- CHANGED_WHOLabel.AutoSize = True
- CHANGED_WHOLabel.Location = New System.Drawing.Point(171, 140)
+ resources.ApplyResources(CHANGED_WHOLabel, "CHANGED_WHOLabel")
CHANGED_WHOLabel.Name = "CHANGED_WHOLabel"
- CHANGED_WHOLabel.Size = New System.Drawing.Size(80, 13)
- CHANGED_WHOLabel.TabIndex = 10
- CHANGED_WHOLabel.Text = "Geändert wer:"
'
'CHANGED_WHENLabel
'
- CHANGED_WHENLabel.AutoSize = True
- CHANGED_WHENLabel.Location = New System.Drawing.Point(310, 140)
+ resources.ApplyResources(CHANGED_WHENLabel, "CHANGED_WHENLabel")
CHANGED_WHENLabel.Name = "CHANGED_WHENLabel"
- CHANGED_WHENLabel.Size = New System.Drawing.Size(90, 13)
- CHANGED_WHENLabel.TabIndex = 12
- CHANGED_WHENLabel.Text = "Geändert wann:"
'
'GUIDLabel1
'
- GUIDLabel1.AutoSize = True
- GUIDLabel1.Location = New System.Drawing.Point(6, 28)
+ resources.ApplyResources(GUIDLabel1, "GUIDLabel1")
GUIDLabel1.Name = "GUIDLabel1"
- GUIDLabel1.Size = New System.Drawing.Size(21, 13)
- GUIDLabel1.TabIndex = 1
- GUIDLabel1.Text = "ID:"
'
'TYPELabel
'
- TYPELabel.AutoSize = True
- TYPELabel.Location = New System.Drawing.Point(49, 28)
+ resources.ApplyResources(TYPELabel, "TYPELabel")
TYPELabel.Name = "TYPELabel"
- TYPELabel.Size = New System.Drawing.Size(27, 13)
- TYPELabel.TabIndex = 3
- TYPELabel.Text = "Typ:"
'
'SEQUENCELabel
'
- SEQUENCELabel.AutoSize = True
- SEQUENCELabel.Location = New System.Drawing.Point(437, 28)
+ resources.ApplyResources(SEQUENCELabel, "SEQUENCELabel")
SEQUENCELabel.Name = "SEQUENCELabel"
- SEQUENCELabel.Size = New System.Drawing.Size(73, 13)
- SEQUENCELabel.TabIndex = 13
- SEQUENCELabel.Text = "Reihenfolge:"
'
'ADDED_WHOLabel
'
- ADDED_WHOLabel.AutoSize = True
- ADDED_WHOLabel.Location = New System.Drawing.Point(6, 120)
+ resources.ApplyResources(ADDED_WHOLabel, "ADDED_WHOLabel")
ADDED_WHOLabel.Name = "ADDED_WHOLabel"
- ADDED_WHOLabel.Size = New System.Drawing.Size(67, 13)
- ADDED_WHOLabel.TabIndex = 15
- ADDED_WHOLabel.Text = "Erstellt wer:"
'
'ADDED_WHENLabel
'
- ADDED_WHENLabel.AutoSize = True
- ADDED_WHENLabel.Location = New System.Drawing.Point(115, 120)
+ resources.ApplyResources(ADDED_WHENLabel, "ADDED_WHENLabel")
ADDED_WHENLabel.Name = "ADDED_WHENLabel"
- ADDED_WHENLabel.Size = New System.Drawing.Size(77, 13)
- ADDED_WHENLabel.TabIndex = 17
- ADDED_WHENLabel.Text = "Erstellt wann:"
'
'CHANGED_WHOLabel1
'
- CHANGED_WHOLabel1.AutoSize = True
- CHANGED_WHOLabel1.Location = New System.Drawing.Point(225, 120)
+ resources.ApplyResources(CHANGED_WHOLabel1, "CHANGED_WHOLabel1")
CHANGED_WHOLabel1.Name = "CHANGED_WHOLabel1"
- CHANGED_WHOLabel1.Size = New System.Drawing.Size(80, 13)
- CHANGED_WHOLabel1.TabIndex = 19
- CHANGED_WHOLabel1.Text = "Geändert wer:"
'
'CHANGED_WHENLabel1
'
- CHANGED_WHENLabel1.AutoSize = True
- CHANGED_WHENLabel1.Location = New System.Drawing.Point(336, 120)
+ resources.ApplyResources(CHANGED_WHENLabel1, "CHANGED_WHENLabel1")
CHANGED_WHENLabel1.Name = "CHANGED_WHENLabel1"
- CHANGED_WHENLabel1.Size = New System.Drawing.Size(90, 13)
- CHANGED_WHENLabel1.TabIndex = 21
- CHANGED_WHENLabel1.Text = "Geändert wann:"
'
'ADDED_WHENLabel1
'
- ADDED_WHENLabel1.AutoSize = True
- ADDED_WHENLabel1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHENLabel1.Location = New System.Drawing.Point(64, 108)
+ resources.ApplyResources(ADDED_WHENLabel1, "ADDED_WHENLabel1")
ADDED_WHENLabel1.Name = "ADDED_WHENLabel1"
- ADDED_WHENLabel1.Size = New System.Drawing.Size(70, 13)
- ADDED_WHENLabel1.TabIndex = 4
- ADDED_WHENLabel1.Text = "Erstellt wann:"
'
'GUIDLabel2
'
- GUIDLabel2.AutoSize = True
- GUIDLabel2.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel2.Location = New System.Drawing.Point(6, 67)
+ resources.ApplyResources(GUIDLabel2, "GUIDLabel2")
GUIDLabel2.Name = "GUIDLabel2"
- GUIDLabel2.Size = New System.Drawing.Size(21, 13)
- GUIDLabel2.TabIndex = 6
- GUIDLabel2.Text = "ID:"
'
'WINDOW_NAMELabel
'
- WINDOW_NAMELabel.AutoSize = True
- WINDOW_NAMELabel.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(WINDOW_NAMELabel, "WINDOW_NAMELabel")
WINDOW_NAMELabel.ForeColor = System.Drawing.Color.Firebrick
- WINDOW_NAMELabel.Location = New System.Drawing.Point(6, 94)
WINDOW_NAMELabel.Name = "WINDOW_NAMELabel"
- WINDOW_NAMELabel.Size = New System.Drawing.Size(93, 15)
- WINDOW_NAMELabel.TabIndex = 81
- WINDOW_NAMELabel.Text = "Window-Name:"
'
'SEQUENCE_NUMBERLabel
'
- SEQUENCE_NUMBERLabel.AutoSize = True
- SEQUENCE_NUMBERLabel.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- SEQUENCE_NUMBERLabel.Location = New System.Drawing.Point(64, 67)
+ resources.ApplyResources(SEQUENCE_NUMBERLabel, "SEQUENCE_NUMBERLabel")
SEQUENCE_NUMBERLabel.Name = "SEQUENCE_NUMBERLabel"
- SEQUENCE_NUMBERLabel.Size = New System.Drawing.Size(154, 13)
- SEQUENCE_NUMBERLabel.TabIndex = 8
- SEQUENCE_NUMBERLabel.Text = "Control-Sequence/-Reihenfolge:"
'
'PATTERN_WDSEARCHLabel
'
- PATTERN_WDSEARCHLabel.AutoSize = True
- PATTERN_WDSEARCHLabel.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- PATTERN_WDSEARCHLabel.Location = New System.Drawing.Point(224, 67)
+ resources.ApplyResources(PATTERN_WDSEARCHLabel, "PATTERN_WDSEARCHLabel")
PATTERN_WDSEARCHLabel.Name = "PATTERN_WDSEARCHLabel"
- PATTERN_WDSEARCHLabel.Size = New System.Drawing.Size(198, 13)
- PATTERN_WDSEARCHLabel.TabIndex = 83
- PATTERN_WDSEARCHLabel.Text = "Zu ersetzendes Pattern Windream-Suche:"
'
'CHANGED_WHENLabel2
'
- CHANGED_WHENLabel2.AutoSize = True
- CHANGED_WHENLabel2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHENLabel2.Location = New System.Drawing.Point(224, 108)
+ resources.ApplyResources(CHANGED_WHENLabel2, "CHANGED_WHENLabel2")
CHANGED_WHENLabel2.Name = "CHANGED_WHENLabel2"
- CHANGED_WHENLabel2.Size = New System.Drawing.Size(82, 13)
- CHANGED_WHENLabel2.TabIndex = 85
- CHANGED_WHENLabel2.Text = "Geändert wann:"
'
'CHANGED_WHOLabel2
'
- CHANGED_WHOLabel2.AutoSize = True
- CHANGED_WHOLabel2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- CHANGED_WHOLabel2.Location = New System.Drawing.Point(224, 149)
+ resources.ApplyResources(CHANGED_WHOLabel2, "CHANGED_WHOLabel2")
CHANGED_WHOLabel2.Name = "CHANGED_WHOLabel2"
- CHANGED_WHOLabel2.Size = New System.Drawing.Size(73, 13)
- CHANGED_WHOLabel2.TabIndex = 86
- CHANGED_WHOLabel2.Text = "Geändert wer:"
'
'ADDED_WHOLabel1
'
- ADDED_WHOLabel1.AutoSize = True
- ADDED_WHOLabel1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHOLabel1.Location = New System.Drawing.Point(64, 149)
+ resources.ApplyResources(ADDED_WHOLabel1, "ADDED_WHOLabel1")
ADDED_WHOLabel1.Name = "ADDED_WHOLabel1"
- ADDED_WHOLabel1.Size = New System.Drawing.Size(61, 13)
- ADDED_WHOLabel1.TabIndex = 87
- ADDED_WHOLabel1.Text = "Erstellt wer:"
'
'Label15
'
- Label15.AutoSize = True
- Label15.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Label15.Location = New System.Drawing.Point(6, 21)
+ resources.ApplyResources(Label15, "Label15")
Label15.Name = "Label15"
- Label15.Size = New System.Drawing.Size(74, 13)
- Label15.TabIndex = 7
- Label15.Text = "Suchpattern:"
'
'GUIDLabel3
'
- GUIDLabel3.AutoSize = True
- GUIDLabel3.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- GUIDLabel3.Location = New System.Drawing.Point(6, 74)
+ resources.ApplyResources(GUIDLabel3, "GUIDLabel3")
GUIDLabel3.Name = "GUIDLabel3"
- GUIDLabel3.Size = New System.Drawing.Size(20, 13)
- GUIDLabel3.TabIndex = 86
- GUIDLabel3.Text = "ID:"
'
'SEQUENCE_NUMBERLabel1
'
- SEQUENCE_NUMBERLabel1.AutoSize = True
- SEQUENCE_NUMBERLabel1.Location = New System.Drawing.Point(64, 74)
+ resources.ApplyResources(SEQUENCE_NUMBERLabel1, "SEQUENCE_NUMBERLabel1")
SEQUENCE_NUMBERLabel1.Name = "SEQUENCE_NUMBERLabel1"
- SEQUENCE_NUMBERLabel1.Size = New System.Drawing.Size(73, 13)
- SEQUENCE_NUMBERLabel1.TabIndex = 87
- SEQUENCE_NUMBERLabel1.Text = "Reihenfolge:"
'
'CONTROL_VALUELabel
'
- CONTROL_VALUELabel.AutoSize = True
- CONTROL_VALUELabel.Location = New System.Drawing.Point(209, 74)
+ resources.ApplyResources(CONTROL_VALUELabel, "CONTROL_VALUELabel")
CONTROL_VALUELabel.Name = "CONTROL_VALUELabel"
- CONTROL_VALUELabel.Size = New System.Drawing.Size(83, 13)
- CONTROL_VALUELabel.TabIndex = 88
- CONTROL_VALUELabel.Text = "Control-Inhalt:"
'
'ADDED_WHOLabel2
'
- ADDED_WHOLabel2.AutoSize = True
- ADDED_WHOLabel2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHOLabel2.Location = New System.Drawing.Point(64, 115)
+ resources.ApplyResources(ADDED_WHOLabel2, "ADDED_WHOLabel2")
ADDED_WHOLabel2.Name = "ADDED_WHOLabel2"
- ADDED_WHOLabel2.Size = New System.Drawing.Size(61, 13)
- ADDED_WHOLabel2.TabIndex = 89
- ADDED_WHOLabel2.Text = "Erstellt wer:"
'
'ADDED_WHENLabel2
'
- ADDED_WHENLabel2.AutoSize = True
- ADDED_WHENLabel2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- ADDED_WHENLabel2.Location = New System.Drawing.Point(209, 115)
+ resources.ApplyResources(ADDED_WHENLabel2, "ADDED_WHENLabel2")
ADDED_WHENLabel2.Name = "ADDED_WHENLabel2"
- ADDED_WHENLabel2.Size = New System.Drawing.Size(70, 13)
- ADDED_WHENLabel2.TabIndex = 90
- ADDED_WHENLabel2.Text = "Erstellt wann:"
'
'Label17
'
- Label17.AutoSize = True
- Label17.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Label17.Location = New System.Drawing.Point(6, 158)
+ resources.ApplyResources(Label17, "Label17")
Label17.Name = "Label17"
- Label17.Size = New System.Drawing.Size(95, 13)
- Label17.TabIndex = 9
- Label17.Text = "Control-Matches:"
'
'StatusStrip1
'
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslbl_Hotkeywindow, Me.tslbl_HotkeySequence})
- Me.StatusStrip1.Location = New System.Drawing.Point(0, 613)
+ resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
Me.StatusStrip1.Name = "StatusStrip1"
- Me.StatusStrip1.Size = New System.Drawing.Size(972, 22)
- Me.StatusStrip1.TabIndex = 0
- Me.StatusStrip1.Text = "StatusStrip1"
'
'tslbl_Hotkeywindow
'
Me.tslbl_Hotkeywindow.Image = Global.Global_Indexer.My.Resources.Resources.WindowsForm_817_12x
Me.tslbl_Hotkeywindow.Name = "tslbl_Hotkeywindow"
- Me.tslbl_Hotkeywindow.Size = New System.Drawing.Size(97, 17)
- Me.tslbl_Hotkeywindow.Text = "Windowname"
+ resources.ApplyResources(Me.tslbl_Hotkeywindow, "tslbl_Hotkeywindow")
'
'tslbl_HotkeySequence
'
Me.tslbl_HotkeySequence.Image = Global.Global_Indexer.My.Resources.Resources.KeyDown_8461_12x
Me.tslbl_HotkeySequence.Name = "tslbl_HotkeySequence"
- Me.tslbl_HotkeySequence.Size = New System.Drawing.Size(74, 17)
- Me.tslbl_HotkeySequence.Text = "Sequence"
+ resources.ApplyResources(Me.tslbl_HotkeySequence, "tslbl_HotkeySequence")
'
'ListBox_FormTitles
'
- Me.ListBox_FormTitles.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ListBox_FormTitles, "ListBox_FormTitles")
Me.ListBox_FormTitles.FormattingEnabled = True
- Me.ListBox_FormTitles.ItemHeight = 15
- Me.ListBox_FormTitles.Location = New System.Drawing.Point(6, 21)
Me.ListBox_FormTitles.Name = "ListBox_FormTitles"
- Me.ListBox_FormTitles.Size = New System.Drawing.Size(542, 214)
- Me.ListBox_FormTitles.TabIndex = 8
'
'GroupBoxMainWindow
'
@@ -604,45 +479,26 @@ Partial Class frmHotKey_Add
Me.GroupBoxMainWindow.Controls.Add(Me.chkboxshowfilledControlsOnly)
Me.GroupBoxMainWindow.Controls.Add(Me.btnpnlStart_weiter)
Me.GroupBoxMainWindow.Controls.Add(Me.ListBox_FormTitles)
- Me.GroupBoxMainWindow.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBoxMainWindow.Location = New System.Drawing.Point(403, 6)
+ resources.ApplyResources(Me.GroupBoxMainWindow, "GroupBoxMainWindow")
Me.GroupBoxMainWindow.Name = "GroupBoxMainWindow"
- Me.GroupBoxMainWindow.Size = New System.Drawing.Size(558, 274)
- Me.GroupBoxMainWindow.TabIndex = 15
Me.GroupBoxMainWindow.TabStop = False
- Me.GroupBoxMainWindow.Text = "Schritt 2 - Wählen Sie das 'MainWindow' zur Auswahl der Inhalte"
- Me.GroupBoxMainWindow.Visible = False
'
'chkboxshowfilledControlsOnly
'
- Me.chkboxshowfilledControlsOnly.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.chkboxshowfilledControlsOnly.AutoSize = True
- Me.chkboxshowfilledControlsOnly.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.chkboxshowfilledControlsOnly, "chkboxshowfilledControlsOnly")
Me.chkboxshowfilledControlsOnly.ForeColor = System.Drawing.Color.DarkSlateGray
- Me.chkboxshowfilledControlsOnly.Location = New System.Drawing.Point(6, 247)
Me.chkboxshowfilledControlsOnly.Name = "chkboxshowfilledControlsOnly"
- Me.chkboxshowfilledControlsOnly.Size = New System.Drawing.Size(185, 19)
- Me.chkboxshowfilledControlsOnly.TabIndex = 11
- Me.chkboxshowfilledControlsOnly.Text = "Nur gefüllte Felder anzeigen"
Me.chkboxshowfilledControlsOnly.UseVisualStyleBackColor = True
'
'btnpnlStart_weiter
'
- Me.btnpnlStart_weiter.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnpnlStart_weiter, "btnpnlStart_weiter")
Me.btnpnlStart_weiter.Image = Global.Global_Indexer.My.Resources.Resources.arrow_Forward_16xMD
- Me.btnpnlStart_weiter.ImageAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.btnpnlStart_weiter.Location = New System.Drawing.Point(473, 243)
Me.btnpnlStart_weiter.Name = "btnpnlStart_weiter"
- Me.btnpnlStart_weiter.Size = New System.Drawing.Size(75, 25)
- Me.btnpnlStart_weiter.TabIndex = 0
- Me.btnpnlStart_weiter.Text = "weiter"
- Me.btnpnlStart_weiter.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.btnpnlStart_weiter.UseVisualStyleBackColor = True
'
'GroupBox2_Controls
'
- Me.GroupBox2_Controls.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.GroupBox2_Controls.BackColor = System.Drawing.SystemColors.ControlLight
Me.GroupBox2_Controls.Controls.Add(Me.lblMatchadd)
Me.GroupBox2_Controls.Controls.Add(Me.btnadd_WindowMatch)
@@ -660,205 +516,118 @@ Partial Class frmHotKey_Add
Me.GroupBox2_Controls.Controls.Add(Me.txtPattern)
Me.GroupBox2_Controls.Controls.Add(Me.Label1)
Me.GroupBox2_Controls.Controls.Add(Me.txtControl)
- Me.GroupBox2_Controls.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox2_Controls.Location = New System.Drawing.Point(6, 286)
+ resources.ApplyResources(Me.GroupBox2_Controls, "GroupBox2_Controls")
Me.GroupBox2_Controls.Name = "GroupBox2_Controls"
- Me.GroupBox2_Controls.Size = New System.Drawing.Size(950, 295)
- Me.GroupBox2_Controls.TabIndex = 9
Me.GroupBox2_Controls.TabStop = False
- Me.GroupBox2_Controls.Text = "Schritt 2 -Wählen Sie das Control mit dem zu übergebenden Wert"
'
'lblMatchadd
'
- Me.lblMatchadd.AutoSize = True
+ resources.ApplyResources(Me.lblMatchadd, "lblMatchadd")
Me.lblMatchadd.BackColor = System.Drawing.Color.Yellow
- Me.lblMatchadd.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblMatchadd.Location = New System.Drawing.Point(488, 265)
Me.lblMatchadd.Name = "lblMatchadd"
- Me.lblMatchadd.Size = New System.Drawing.Size(238, 13)
- Me.lblMatchadd.TabIndex = 89
- Me.lblMatchadd.Text = "Match Control-Window erfolgreich angelegt"
- Me.lblMatchadd.Visible = False
'
'btnadd_WindowMatch
'
- Me.btnadd_WindowMatch.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnadd_WindowMatch, "btnadd_WindowMatch")
Me.btnadd_WindowMatch.Image = Global.Global_Indexer.My.Resources.Resources.add
- Me.btnadd_WindowMatch.ImageAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.btnadd_WindowMatch.Location = New System.Drawing.Point(833, 237)
Me.btnadd_WindowMatch.Name = "btnadd_WindowMatch"
- Me.btnadd_WindowMatch.Size = New System.Drawing.Size(96, 24)
- Me.btnadd_WindowMatch.TabIndex = 88
- Me.btnadd_WindowMatch.Text = "Hinzufügen"
- Me.btnadd_WindowMatch.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.btnadd_WindowMatch.UseVisualStyleBackColor = True
'
'txtValueMatch
'
- Me.txtValueMatch.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtValueMatch.Location = New System.Drawing.Point(694, 240)
+ resources.ApplyResources(Me.txtValueMatch, "txtValueMatch")
Me.txtValueMatch.Name = "txtValueMatch"
Me.txtValueMatch.ReadOnly = True
- Me.txtValueMatch.Size = New System.Drawing.Size(133, 22)
- Me.txtValueMatch.TabIndex = 87
'
'Label13
'
- Me.Label13.AutoSize = True
- Me.Label13.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label13.Location = New System.Drawing.Point(615, 243)
+ resources.ApplyResources(Me.Label13, "Label13")
Me.Label13.Name = "Label13"
- Me.Label13.Size = New System.Drawing.Size(79, 13)
- Me.Label13.TabIndex = 86
- Me.Label13.Text = "enthält Value:"
'
'Label11
'
- Me.Label11.AutoSize = True
+ resources.ApplyResources(Me.Label11, "Label11")
Me.Label11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.Label11.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label11.Location = New System.Drawing.Point(491, 145)
Me.Label11.Name = "Label11"
- Me.Label11.Size = New System.Drawing.Size(418, 54)
- Me.Label11.TabIndex = 85
- Me.Label11.Text = "Bei Nicht-Eindeutigkeit des MainWindow" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "-Namens und der Control # muss " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "zusätzli" & _
- "ch eine Abhängigkeit zwischen Control-Inhalt und dem Windownamen" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "geschaffen wer" & _
- "den."
'
'Label12
'
- Me.Label12.AutoSize = True
- Me.Label12.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label12.Location = New System.Drawing.Point(488, 224)
+ resources.ApplyResources(Me.Label12, "Label12")
Me.Label12.Name = "Label12"
- Me.Label12.Size = New System.Drawing.Size(125, 13)
- Me.Label12.TabIndex = 84
- Me.Label12.Text = "Reihenfolge # Control:"
'
'txtControl_Match
'
- Me.txtControl_Match.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.txtControl_Match, "txtControl_Match")
Me.txtControl_Match.ForeColor = System.Drawing.Color.Maroon
- Me.txtControl_Match.Location = New System.Drawing.Point(491, 240)
Me.txtControl_Match.Name = "txtControl_Match"
Me.txtControl_Match.ReadOnly = True
- Me.txtControl_Match.Size = New System.Drawing.Size(118, 22)
- Me.txtControl_Match.TabIndex = 83
'
'Label10
'
- Me.Label10.AutoSize = True
+ resources.ApplyResources(Me.Label10, "Label10")
Me.Label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.Label10.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label10.Location = New System.Drawing.Point(491, 19)
Me.Label10.Name = "Label10"
- Me.Label10.Size = New System.Drawing.Size(436, 54)
- Me.Label10.TabIndex = 82
- Me.Label10.Text = "Hier wird die Reihenfolge-Nummer in Abhängigkeit zum Titel des 'MainWindows' " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "ge" & _
- "speichert." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Während der Laufzeit wird der Suchpattern der windream-Suche dann mi" & _
- "t " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "dem gelesenen Wert ersetzt."
'
'ListViewControls
'
- Me.ListViewControls.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+ resources.ApplyResources(Me.ListViewControls, "ListViewControls")
Me.ListViewControls.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader3, Me.ControlID, Me.ControlValue})
- Me.ListViewControls.Font = New System.Drawing.Font("Segoe UI Semibold", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.ListViewControls.FullRowSelect = True
- Me.ListViewControls.Location = New System.Drawing.Point(6, 19)
Me.ListViewControls.Name = "ListViewControls"
- Me.ListViewControls.Size = New System.Drawing.Size(476, 270)
- Me.ListViewControls.TabIndex = 81
Me.ListViewControls.UseCompatibleStateImageBehavior = False
Me.ListViewControls.View = System.Windows.Forms.View.Details
'
'ColumnHeader3
'
- Me.ColumnHeader3.Text = "#"
+ resources.ApplyResources(Me.ColumnHeader3, "ColumnHeader3")
'
'ControlID
'
- Me.ControlID.Text = "Control-ID:"
- Me.ControlID.Width = 100
+ resources.ApplyResources(Me.ControlID, "ControlID")
'
'ControlValue
'
- Me.ControlValue.Text = "Gelesener Wert"
- Me.ControlValue.Width = 305
+ resources.ApplyResources(Me.ControlValue, "ControlValue")
'
'lblLinkadd
'
- Me.lblLinkadd.AutoSize = True
+ resources.ApplyResources(Me.lblLinkadd, "lblLinkadd")
Me.lblLinkadd.BackColor = System.Drawing.Color.Yellow
- Me.lblLinkadd.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblLinkadd.Location = New System.Drawing.Point(491, 121)
Me.lblLinkadd.Name = "lblLinkadd"
- Me.lblLinkadd.Size = New System.Drawing.Size(179, 13)
- Me.lblLinkadd.TabIndex = 80
- Me.lblLinkadd.Text = "Pattern-Link erfolgreich angelegt"
- Me.lblLinkadd.Visible = False
'
'btnadd_Pattern
'
- Me.btnadd_Pattern.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnadd_Pattern, "btnadd_Pattern")
Me.btnadd_Pattern.Image = Global.Global_Indexer.My.Resources.Resources.add
- Me.btnadd_Pattern.ImageAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.btnadd_Pattern.Location = New System.Drawing.Point(835, 93)
Me.btnadd_Pattern.Name = "btnadd_Pattern"
- Me.btnadd_Pattern.Size = New System.Drawing.Size(96, 24)
- Me.btnadd_Pattern.TabIndex = 14
- Me.btnadd_Pattern.Text = "Hinzufügen"
- Me.btnadd_Pattern.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.btnadd_Pattern.UseVisualStyleBackColor = True
'
'Label8
'
- Me.Label8.AutoSize = True
- Me.Label8.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label8.Location = New System.Drawing.Point(693, 80)
+ resources.ApplyResources(Me.Label8, "Label8")
Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(138, 13)
- Me.Label8.TabIndex = 13
- Me.Label8.Text = "Windream-Suche Pattern:"
'
'Label7
'
- Me.Label7.AutoSize = True
- Me.Label7.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label7.Location = New System.Drawing.Point(491, 80)
+ resources.ApplyResources(Me.Label7, "Label7")
Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(125, 13)
- Me.Label7.TabIndex = 12
- Me.Label7.Text = "Reihenfolge # Control:"
'
'txtPattern
'
- Me.txtPattern.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtPattern.Location = New System.Drawing.Point(694, 96)
+ resources.ApplyResources(Me.txtPattern, "txtPattern")
Me.txtPattern.Name = "txtPattern"
- Me.txtPattern.Size = New System.Drawing.Size(135, 22)
- Me.txtPattern.TabIndex = 11
'
'Label1
'
- Me.Label1.AutoSize = True
- Me.Label1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label1.Location = New System.Drawing.Point(615, 99)
+ resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(73, 13)
- Me.Label1.TabIndex = 10
- Me.Label1.Text = "verlinken mit"
'
'txtControl
'
- Me.txtControl.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.txtControl, "txtControl")
Me.txtControl.ForeColor = System.Drawing.Color.Maroon
- Me.txtControl.Location = New System.Drawing.Point(491, 96)
Me.txtControl.Name = "txtControl"
Me.txtControl.ReadOnly = True
- Me.txtControl.Size = New System.Drawing.Size(118, 22)
- Me.txtControl.TabIndex = 9
'
'GroupBox1
'
@@ -877,156 +646,87 @@ Partial Class frmHotKey_Add
Me.GroupBox1.Controls.Add(Me.Label3)
Me.GroupBox1.Controls.Add(Me.Label2)
Me.GroupBox1.Controls.Add(Me.btnGB1)
- Me.GroupBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox1.Location = New System.Drawing.Point(6, 6)
+ resources.ApplyResources(Me.GroupBox1, "GroupBox1")
Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Size = New System.Drawing.Size(391, 275)
- Me.GroupBox1.TabIndex = 16
Me.GroupBox1.TabStop = False
- Me.GroupBox1.Text = "Schritt 1 - Grundangaben"
'
'btnnewProfile
'
- Me.btnnewProfile.Font = New System.Drawing.Font("Segoe UI", 9.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnnewProfile, "btnnewProfile")
Me.btnnewProfile.Image = Global.Global_Indexer.My.Resources.Resources.action_add_16xLG
- Me.btnnewProfile.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnnewProfile.Location = New System.Drawing.Point(215, 12)
Me.btnnewProfile.Name = "btnnewProfile"
- Me.btnnewProfile.Size = New System.Drawing.Size(170, 34)
- Me.btnnewProfile.TabIndex = 81
- Me.btnnewProfile.Text = "Neues Profil erzeugen"
- Me.btnnewProfile.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnnewProfile.UseVisualStyleBackColor = True
'
'Button1
'
- Me.Button1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Button1.Location = New System.Drawing.Point(360, 113)
+ resources.ApplyResources(Me.Button1, "Button1")
Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(25, 23)
- Me.Button1.TabIndex = 80
- Me.Button1.Text = "..."
Me.Button1.UseVisualStyleBackColor = True
'
'lblSaveHotkey
'
- Me.lblSaveHotkey.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.lblSaveHotkey.AutoSize = True
+ resources.ApplyResources(Me.lblSaveHotkey, "lblSaveHotkey")
Me.lblSaveHotkey.BackColor = System.Drawing.Color.Yellow
- Me.lblSaveHotkey.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSaveHotkey.Location = New System.Drawing.Point(15, 192)
Me.lblSaveHotkey.Name = "lblSaveHotkey"
- Me.lblSaveHotkey.Size = New System.Drawing.Size(198, 13)
- Me.lblSaveHotkey.TabIndex = 79
- Me.lblSaveHotkey.Text = "Hotkey-Profil erfolgreich gespeichert" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10)
- Me.lblSaveHotkey.Visible = False
'
'Label6
'
- Me.Label6.AutoSize = True
- Me.Label6.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label6.Location = New System.Drawing.Point(124, 139)
+ resources.ApplyResources(Me.Label6, "Label6")
Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(109, 15)
- Me.Label6.TabIndex = 11
- Me.Label6.Text = "Kombinationstaste:"
'
'Label5
'
- Me.Label5.AutoSize = True
- Me.Label5.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label5.Location = New System.Drawing.Point(15, 139)
+ resources.ApplyResources(Me.Label5, "Label5")
Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(87, 15)
- Me.Label5.TabIndex = 10
- Me.Label5.Text = "Funktionstaste:"
'
'txtKey
'
- Me.txtKey.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtKey.Location = New System.Drawing.Point(127, 157)
+ resources.ApplyResources(Me.txtKey, "txtKey")
Me.txtKey.Name = "txtKey"
- Me.txtKey.Size = New System.Drawing.Size(53, 23)
- Me.txtKey.TabIndex = 9
'
'cmbFunktionstaste
'
- Me.cmbFunktionstaste.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbFunktionstaste, "cmbFunktionstaste")
Me.cmbFunktionstaste.FormattingEnabled = True
- Me.cmbFunktionstaste.Items.AddRange(New Object() {"Strg", "Shift", "Alt", "Win"})
- Me.cmbFunktionstaste.Location = New System.Drawing.Point(18, 157)
+ Me.cmbFunktionstaste.Items.AddRange(New Object() {resources.GetString("cmbFunktionstaste.Items"), resources.GetString("cmbFunktionstaste.Items1"), resources.GetString("cmbFunktionstaste.Items2"), resources.GetString("cmbFunktionstaste.Items3")})
Me.cmbFunktionstaste.Name = "cmbFunktionstaste"
- Me.cmbFunktionstaste.Size = New System.Drawing.Size(64, 21)
- Me.cmbFunktionstaste.TabIndex = 8
'
'txtWDSearch
'
- Me.txtWDSearch.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtWDSearch.Location = New System.Drawing.Point(18, 113)
+ resources.ApplyResources(Me.txtWDSearch, "txtWDSearch")
Me.txtWDSearch.Name = "txtWDSearch"
- Me.txtWDSearch.Size = New System.Drawing.Size(336, 23)
- Me.txtWDSearch.TabIndex = 7
'
'cmbObjekttyp
'
- Me.cmbObjekttyp.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbObjekttyp, "cmbObjekttyp")
Me.cmbObjekttyp.FormattingEnabled = True
- Me.cmbObjekttyp.Location = New System.Drawing.Point(18, 248)
Me.cmbObjekttyp.Name = "cmbObjekttyp"
- Me.cmbObjekttyp.Size = New System.Drawing.Size(113, 21)
- Me.cmbObjekttyp.TabIndex = 6
- Me.cmbObjekttyp.Visible = False
'
'txtProfilname
'
- Me.txtProfilname.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtProfilname.Location = New System.Drawing.Point(18, 69)
+ resources.ApplyResources(Me.txtProfilname, "txtProfilname")
Me.txtProfilname.Name = "txtProfilname"
- Me.txtProfilname.Size = New System.Drawing.Size(367, 23)
- Me.txtProfilname.TabIndex = 5
'
'Label4
'
- Me.Label4.AutoSize = True
- Me.Label4.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label4.Location = New System.Drawing.Point(15, 95)
+ resources.ApplyResources(Me.Label4, "Label4")
Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(102, 15)
- Me.Label4.TabIndex = 3
- Me.Label4.Text = "Windream-Suche:"
'
'Label3
'
- Me.Label3.AutoSize = True
- Me.Label3.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label3.Location = New System.Drawing.Point(137, 251)
+ resources.ApplyResources(Me.Label3, "Label3")
Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(61, 13)
- Me.Label3.TabIndex = 2
- Me.Label3.Text = "Objekttyp:"
- Me.Label3.Visible = False
'
'Label2
'
- Me.Label2.AutoSize = True
- Me.Label2.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label2.Location = New System.Drawing.Point(15, 51)
+ resources.ApplyResources(Me.Label2, "Label2")
Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(68, 15)
- Me.Label2.TabIndex = 1
- Me.Label2.Text = "Profilname:"
'
'btnGB1
'
- Me.btnGB1.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnGB1, "btnGB1")
Me.btnGB1.Image = Global.Global_Indexer.My.Resources.Resources.arrow_Forward_16xMD
- Me.btnGB1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.btnGB1.Location = New System.Drawing.Point(316, 244)
Me.btnGB1.Name = "btnGB1"
- Me.btnGB1.Size = New System.Drawing.Size(69, 25)
- Me.btnGB1.TabIndex = 0
- Me.btnGB1.Text = "weiter"
- Me.btnGB1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.btnGB1.UseVisualStyleBackColor = True
'
'MyDataset
@@ -1075,39 +775,35 @@ Partial Class frmHotKey_Add
'
'OFDWindreamsuche
'
- Me.OFDWindreamsuche.Filter = "windream-Suche|*.wdf|Alle Dateien|*.*"
+ resources.ApplyResources(Me.OFDWindreamsuche, "OFDWindreamsuche")
Me.OFDWindreamsuche.RestoreDirectory = True
- Me.OFDWindreamsuche.Title = "windream-Suche wählen"
'
'TabControlMain
'
Me.TabControlMain.Controls.Add(Me.TabPageUebersicht)
Me.TabControlMain.Controls.Add(Me.TabPage_Designer)
Me.TabControlMain.Controls.Add(Me.TabPageTest)
- Me.TabControlMain.Dock = System.Windows.Forms.DockStyle.Fill
- Me.TabControlMain.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.TabControlMain, "TabControlMain")
Me.TabControlMain.Name = "TabControlMain"
Me.TabControlMain.SelectedIndex = 0
- Me.TabControlMain.Size = New System.Drawing.Size(972, 613)
- Me.TabControlMain.TabIndex = 17
'
'TabPageUebersicht
'
- Me.TabPageUebersicht.AutoScroll = True
+ resources.ApplyResources(Me.TabPageUebersicht, "TabPageUebersicht")
Me.TabPageUebersicht.Controls.Add(Me.ToolStrip1)
Me.TabPageUebersicht.Controls.Add(Me.GroupBoxPatterns)
Me.TabPageUebersicht.Controls.Add(Me.TabControl1)
Me.TabPageUebersicht.Controls.Add(Me.btndelete)
Me.TabPageUebersicht.Controls.Add(Me.ListBox_Profiles)
Me.TabPageUebersicht.Controls.Add(Me.Label9)
- Me.TabPageUebersicht.Location = New System.Drawing.Point(4, 22)
Me.TabPageUebersicht.Name = "TabPageUebersicht"
- Me.TabPageUebersicht.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPageUebersicht.Size = New System.Drawing.Size(964, 587)
- Me.TabPageUebersicht.TabIndex = 2
- Me.TabPageUebersicht.Text = "Übersicht Hot Key-Profile"
Me.TabPageUebersicht.UseVisualStyleBackColor = True
'
+ 'ToolStrip1
+ '
+ resources.ApplyResources(Me.ToolStrip1, "ToolStrip1")
+ Me.ToolStrip1.Name = "ToolStrip1"
+ '
'GroupBoxPatterns
'
Me.GroupBoxPatterns.Controls.Add(Label17)
@@ -1115,22 +811,17 @@ Partial Class frmHotKey_Add
Me.GroupBoxPatterns.Controls.Add(Label15)
Me.GroupBoxPatterns.Controls.Add(Me.TabControlDetails)
Me.GroupBoxPatterns.Controls.Add(Me.ListBoxPatterns)
- Me.GroupBoxPatterns.Location = New System.Drawing.Point(8, 283)
+ resources.ApplyResources(Me.GroupBoxPatterns, "GroupBoxPatterns")
Me.GroupBoxPatterns.Name = "GroupBoxPatterns"
- Me.GroupBoxPatterns.Size = New System.Drawing.Size(920, 298)
- Me.GroupBoxPatterns.TabIndex = 37
Me.GroupBoxPatterns.TabStop = False
- Me.GroupBoxPatterns.Text = "Suchpatterns und Control-Matches:"
'
'ListBox1
'
Me.ListBox1.DataSource = Me.TBHOTKEY_WINDOW_HOOKBindingSource
Me.ListBox1.DisplayMember = "CONTROL_VALUE"
Me.ListBox1.FormattingEnabled = True
- Me.ListBox1.Location = New System.Drawing.Point(9, 174)
+ resources.ApplyResources(Me.ListBox1, "ListBox1")
Me.ListBox1.Name = "ListBox1"
- Me.ListBox1.Size = New System.Drawing.Size(246, 108)
- Me.ListBox1.TabIndex = 8
Me.ListBox1.ValueMember = "GUID"
'
'TBHOTKEY_WINDOW_HOOKBindingSource
@@ -1140,16 +831,12 @@ Partial Class frmHotKey_Add
'
'TabControlDetails
'
- Me.TabControlDetails.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
+ resources.ApplyResources(Me.TabControlDetails, "TabControlDetails")
Me.TabControlDetails.Controls.Add(Me.TabPage6)
Me.TabControlDetails.Controls.Add(Me.TabPage4)
Me.TabControlDetails.Controls.Add(Me.TabPage5)
- Me.TabControlDetails.Location = New System.Drawing.Point(261, 21)
Me.TabControlDetails.Name = "TabControlDetails"
Me.TabControlDetails.SelectedIndex = 0
- Me.TabControlDetails.Size = New System.Drawing.Size(639, 271)
- Me.TabControlDetails.TabIndex = 1
'
'TabPage6
'
@@ -1170,101 +857,65 @@ Partial Class frmHotKey_Add
Me.TabPage6.Controls.Add(Me.BindingNavigator2)
Me.TabPage6.Controls.Add(GUIDLabel2)
Me.TabPage6.Controls.Add(Me.GUIDTextBox2)
- Me.TabPage6.Location = New System.Drawing.Point(4, 22)
+ resources.ApplyResources(Me.TabPage6, "TabPage6")
Me.TabPage6.Name = "TabPage6"
- Me.TabPage6.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage6.Size = New System.Drawing.Size(631, 245)
- Me.TabPage6.TabIndex = 2
- Me.TabPage6.Text = "Suchpatterns"
Me.TabPage6.UseVisualStyleBackColor = True
'
'lblSavePAttern
'
- Me.lblSavePAttern.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.lblSavePAttern.AutoSize = True
+ resources.ApplyResources(Me.lblSavePAttern, "lblSavePAttern")
Me.lblSavePAttern.BackColor = System.Drawing.Color.Yellow
- Me.lblSavePAttern.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSavePAttern.Location = New System.Drawing.Point(446, 127)
Me.lblSavePAttern.Name = "lblSavePAttern"
- Me.lblSavePAttern.Size = New System.Drawing.Size(164, 13)
- Me.lblSavePAttern.TabIndex = 89
- Me.lblSavePAttern.Text = "Daten erfolgreich gespeichert!"
- Me.lblSavePAttern.Visible = False
'
'ADDED_WHOTextBox1
'
Me.ADDED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNSBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHOTextBox1.Location = New System.Drawing.Point(67, 164)
+ resources.ApplyResources(Me.ADDED_WHOTextBox1, "ADDED_WHOTextBox1")
Me.ADDED_WHOTextBox1.Name = "ADDED_WHOTextBox1"
Me.ADDED_WHOTextBox1.ReadOnly = True
- Me.ADDED_WHOTextBox1.Size = New System.Drawing.Size(126, 22)
- Me.ADDED_WHOTextBox1.TabIndex = 88
Me.ADDED_WHOTextBox1.TabStop = False
'
'CHANGED_WHOTextBox2
'
Me.CHANGED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNSBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHOTextBox2.Location = New System.Drawing.Point(227, 164)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox2, "CHANGED_WHOTextBox2")
Me.CHANGED_WHOTextBox2.Name = "CHANGED_WHOTextBox2"
Me.CHANGED_WHOTextBox2.ReadOnly = True
- Me.CHANGED_WHOTextBox2.Size = New System.Drawing.Size(141, 22)
- Me.CHANGED_WHOTextBox2.TabIndex = 87
Me.CHANGED_WHOTextBox2.TabStop = False
'
'CHANGED_WHENTextBox2
'
Me.CHANGED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNSBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.CHANGED_WHENTextBox2.Location = New System.Drawing.Point(227, 124)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox2, "CHANGED_WHENTextBox2")
Me.CHANGED_WHENTextBox2.Name = "CHANGED_WHENTextBox2"
Me.CHANGED_WHENTextBox2.ReadOnly = True
- Me.CHANGED_WHENTextBox2.Size = New System.Drawing.Size(141, 22)
- Me.CHANGED_WHENTextBox2.TabIndex = 86
Me.CHANGED_WHENTextBox2.TabStop = False
'
'ADDED_WHENTextBox1
'
Me.ADDED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNSBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHENTextBox1.Location = New System.Drawing.Point(67, 124)
+ resources.ApplyResources(Me.ADDED_WHENTextBox1, "ADDED_WHENTextBox1")
Me.ADDED_WHENTextBox1.Name = "ADDED_WHENTextBox1"
Me.ADDED_WHENTextBox1.ReadOnly = True
- Me.ADDED_WHENTextBox1.Size = New System.Drawing.Size(126, 22)
- Me.ADDED_WHENTextBox1.TabIndex = 5
Me.ADDED_WHENTextBox1.TabStop = False
'
'PATTERN_WDSEARCHTextBox
'
Me.PATTERN_WDSEARCHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNSBindingSource, "PATTERN_WDSEARCH", True))
- Me.PATTERN_WDSEARCHTextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.PATTERN_WDSEARCHTextBox.Location = New System.Drawing.Point(227, 83)
+ resources.ApplyResources(Me.PATTERN_WDSEARCHTextBox, "PATTERN_WDSEARCHTextBox")
Me.PATTERN_WDSEARCHTextBox.Name = "PATTERN_WDSEARCHTextBox"
- Me.PATTERN_WDSEARCHTextBox.Size = New System.Drawing.Size(195, 22)
- Me.PATTERN_WDSEARCHTextBox.TabIndex = 84
'
'SEQUENCE_NUMBERTextBox
'
Me.SEQUENCE_NUMBERTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNSBindingSource, "SEQUENCE_NUMBER", True))
- Me.SEQUENCE_NUMBERTextBox.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.SEQUENCE_NUMBERTextBox.Location = New System.Drawing.Point(67, 83)
+ resources.ApplyResources(Me.SEQUENCE_NUMBERTextBox, "SEQUENCE_NUMBERTextBox")
Me.SEQUENCE_NUMBERTextBox.Name = "SEQUENCE_NUMBERTextBox"
- Me.SEQUENCE_NUMBERTextBox.Size = New System.Drawing.Size(67, 22)
- Me.SEQUENCE_NUMBERTextBox.TabIndex = 9
'
'Label14
'
- Me.Label14.AutoSize = True
+ resources.ApplyResources(Me.Label14, "Label14")
Me.Label14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.Label14.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label14.Location = New System.Drawing.Point(6, 30)
Me.Label14.Name = "Label14"
- Me.Label14.Size = New System.Drawing.Size(548, 28)
- Me.Label14.TabIndex = 83
- Me.Label14.Text = "Hier wird die Reihenfolge-Nummer in Abhängigkeit zum Titel des 'MainWindows' gesp" & _
- "eichert." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Während der Laufzeit wird der Suchpattern der windream-Suche dann mit " & _
- "dem gelesenen Wert ersetzt."
'
'BindingNavigator2
'
@@ -1273,116 +924,87 @@ Partial Class frmHotKey_Add
Me.BindingNavigator2.CountItem = Me.BindingNavigatorCountItem1
Me.BindingNavigator2.DeleteItem = Me.BindingNavigatorDeleteItem1
Me.BindingNavigator2.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem1, Me.BindingNavigatorMovePreviousItem1, Me.BindingNavigatorSeparator3, Me.BindingNavigatorPositionItem1, Me.BindingNavigatorCountItem1, Me.BindingNavigatorSeparator4, Me.BindingNavigatorMoveNextItem1, Me.BindingNavigatorMoveLastItem1, Me.BindingNavigatorSeparator5, Me.BindingNavigatorDeleteItem1, Me.tsbtnsave_pattern})
- Me.BindingNavigator2.Location = New System.Drawing.Point(3, 3)
+ resources.ApplyResources(Me.BindingNavigator2, "BindingNavigator2")
Me.BindingNavigator2.MoveFirstItem = Me.BindingNavigatorMoveFirstItem1
Me.BindingNavigator2.MoveLastItem = Me.BindingNavigatorMoveLastItem1
Me.BindingNavigator2.MoveNextItem = Me.BindingNavigatorMoveNextItem1
Me.BindingNavigator2.MovePreviousItem = Me.BindingNavigatorMovePreviousItem1
Me.BindingNavigator2.Name = "BindingNavigator2"
Me.BindingNavigator2.PositionItem = Me.BindingNavigatorPositionItem1
- Me.BindingNavigator2.Size = New System.Drawing.Size(625, 25)
- Me.BindingNavigator2.TabIndex = 0
- Me.BindingNavigator2.Text = "BindingNavigator2"
'
'BindingNavigatorCountItem1
'
Me.BindingNavigatorCountItem1.Name = "BindingNavigatorCountItem1"
- Me.BindingNavigatorCountItem1.Size = New System.Drawing.Size(44, 22)
- Me.BindingNavigatorCountItem1.Text = "von {0}"
- Me.BindingNavigatorCountItem1.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.BindingNavigatorCountItem1, "BindingNavigatorCountItem1")
'
'BindingNavigatorDeleteItem1
'
Me.BindingNavigatorDeleteItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorDeleteItem1.Image = CType(resources.GetObject("BindingNavigatorDeleteItem1.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorDeleteItem1, "BindingNavigatorDeleteItem1")
Me.BindingNavigatorDeleteItem1.Name = "BindingNavigatorDeleteItem1"
- Me.BindingNavigatorDeleteItem1.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorDeleteItem1.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorDeleteItem1.Text = "Löschen"
'
'BindingNavigatorMoveFirstItem1
'
Me.BindingNavigatorMoveFirstItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveFirstItem1.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem1.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveFirstItem1, "BindingNavigatorMoveFirstItem1")
Me.BindingNavigatorMoveFirstItem1.Name = "BindingNavigatorMoveFirstItem1"
- Me.BindingNavigatorMoveFirstItem1.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveFirstItem1.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveFirstItem1.Text = "Erste verschieben"
'
'BindingNavigatorMovePreviousItem1
'
Me.BindingNavigatorMovePreviousItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMovePreviousItem1.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem1.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMovePreviousItem1, "BindingNavigatorMovePreviousItem1")
Me.BindingNavigatorMovePreviousItem1.Name = "BindingNavigatorMovePreviousItem1"
- Me.BindingNavigatorMovePreviousItem1.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMovePreviousItem1.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMovePreviousItem1.Text = "Vorherige verschieben"
'
'BindingNavigatorSeparator3
'
Me.BindingNavigatorSeparator3.Name = "BindingNavigatorSeparator3"
- Me.BindingNavigatorSeparator3.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator3, "BindingNavigatorSeparator3")
'
'BindingNavigatorPositionItem1
'
- Me.BindingNavigatorPositionItem1.AccessibleName = "Position"
- Me.BindingNavigatorPositionItem1.AutoSize = False
+ resources.ApplyResources(Me.BindingNavigatorPositionItem1, "BindingNavigatorPositionItem1")
Me.BindingNavigatorPositionItem1.Name = "BindingNavigatorPositionItem1"
- Me.BindingNavigatorPositionItem1.Size = New System.Drawing.Size(50, 23)
- Me.BindingNavigatorPositionItem1.Text = "0"
- Me.BindingNavigatorPositionItem1.ToolTipText = "Aktuelle Position"
'
'BindingNavigatorSeparator4
'
Me.BindingNavigatorSeparator4.Name = "BindingNavigatorSeparator4"
- Me.BindingNavigatorSeparator4.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator4, "BindingNavigatorSeparator4")
'
'BindingNavigatorMoveNextItem1
'
Me.BindingNavigatorMoveNextItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveNextItem1.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem1.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveNextItem1, "BindingNavigatorMoveNextItem1")
Me.BindingNavigatorMoveNextItem1.Name = "BindingNavigatorMoveNextItem1"
- Me.BindingNavigatorMoveNextItem1.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveNextItem1.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveNextItem1.Text = "Nächste verschieben"
'
'BindingNavigatorMoveLastItem1
'
Me.BindingNavigatorMoveLastItem1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveLastItem1.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem1.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveLastItem1, "BindingNavigatorMoveLastItem1")
Me.BindingNavigatorMoveLastItem1.Name = "BindingNavigatorMoveLastItem1"
- Me.BindingNavigatorMoveLastItem1.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveLastItem1.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveLastItem1.Text = "Letzte verschieben"
'
'BindingNavigatorSeparator5
'
Me.BindingNavigatorSeparator5.Name = "BindingNavigatorSeparator5"
- Me.BindingNavigatorSeparator5.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator5, "BindingNavigatorSeparator5")
'
'tsbtnsave_pattern
'
Me.tsbtnsave_pattern.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.tsbtnsave_pattern.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
- Me.tsbtnsave_pattern.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.tsbtnsave_pattern, "tsbtnsave_pattern")
Me.tsbtnsave_pattern.Name = "tsbtnsave_pattern"
- Me.tsbtnsave_pattern.Size = New System.Drawing.Size(23, 22)
- Me.tsbtnsave_pattern.Text = "ToolStripButton2"
'
'GUIDTextBox2
'
Me.GUIDTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNSBindingSource, "GUID", True))
- Me.GUIDTextBox2.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GUIDTextBox2.Location = New System.Drawing.Point(9, 83)
+ resources.ApplyResources(Me.GUIDTextBox2, "GUIDTextBox2")
Me.GUIDTextBox2.Name = "GUIDTextBox2"
Me.GUIDTextBox2.ReadOnly = True
- Me.GUIDTextBox2.Size = New System.Drawing.Size(43, 22)
- Me.GUIDTextBox2.TabIndex = 7
Me.GUIDTextBox2.TabStop = False
'
'TabPage4
'
- Me.TabPage4.AutoScroll = True
+ resources.ApplyResources(Me.TabPage4, "TabPage4")
Me.TabPage4.Controls.Add(Me.lblHinweisRework1)
Me.TabPage4.Controls.Add(Me.CHANGED_WHENTextBox1)
Me.TabPage4.Controls.Add(Me.Text2Label)
@@ -1409,33 +1031,20 @@ Partial Class frmHotKey_Add
Me.TabPage4.Controls.Add(Me.GUIDTextBox1)
Me.TabPage4.Controls.Add(Me.BindingNavigator1)
Me.TabPage4.Controls.Add(Me.btnRegexTest)
- Me.TabPage4.Location = New System.Drawing.Point(4, 22)
Me.TabPage4.Name = "TabPage4"
- Me.TabPage4.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage4.Size = New System.Drawing.Size(631, 245)
- Me.TabPage4.TabIndex = 0
- Me.TabPage4.Text = "Nachbearbeitungs-Schritte für Suchpattern"
Me.TabPage4.UseVisualStyleBackColor = True
'
'lblHinweisRework1
'
- Me.lblHinweisRework1.AutoSize = True
- Me.lblHinweisRework1.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblHinweisRework1.Location = New System.Drawing.Point(189, 89)
+ resources.ApplyResources(Me.lblHinweisRework1, "lblHinweisRework1")
Me.lblHinweisRework1.Name = "lblHinweisRework1"
- Me.lblHinweisRework1.Size = New System.Drawing.Size(44, 13)
- Me.lblHinweisRework1.TabIndex = 87
- Me.lblHinweisRework1.Text = "Label10"
- Me.lblHinweisRework1.Visible = False
'
'CHANGED_WHENTextBox1
'
Me.CHANGED_WHENTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox1.Location = New System.Drawing.Point(339, 136)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox1, "CHANGED_WHENTextBox1")
Me.CHANGED_WHENTextBox1.Name = "CHANGED_WHENTextBox1"
Me.CHANGED_WHENTextBox1.ReadOnly = True
- Me.CHANGED_WHENTextBox1.Size = New System.Drawing.Size(129, 22)
- Me.CHANGED_WHENTextBox1.TabIndex = 86
'
'TBHOTKEY_PATTERNS_REWORKBindingSource
'
@@ -1444,138 +1053,95 @@ Partial Class frmHotKey_Add
'
'Text2Label
'
- Me.Text2Label.AutoSize = True
- Me.Text2Label.Location = New System.Drawing.Point(142, 70)
+ resources.ApplyResources(Me.Text2Label, "Text2Label")
Me.Text2Label.Name = "Text2Label"
- Me.Text2Label.Size = New System.Drawing.Size(40, 13)
- Me.Text2Label.TabIndex = 85
- Me.Text2Label.Text = "Label4"
'
'Text1Label
'
- Me.Text1Label.AutoSize = True
- Me.Text1Label.Location = New System.Drawing.Point(6, 70)
+ resources.ApplyResources(Me.Text1Label, "Text1Label")
Me.Text1Label.Name = "Text1Label"
- Me.Text1Label.Size = New System.Drawing.Size(40, 13)
- Me.Text1Label.TabIndex = 84
- Me.Text1Label.Text = "Label4"
'
'Function2Label
'
- Me.Function2Label.AutoSize = True
- Me.Function2Label.Location = New System.Drawing.Point(306, 28)
+ resources.ApplyResources(Me.Function2Label, "Function2Label")
Me.Function2Label.Name = "Function2Label"
- Me.Function2Label.Size = New System.Drawing.Size(12, 13)
- Me.Function2Label.TabIndex = 83
- Me.Function2Label.Text = "v"
'
'Function1Label
'
- Me.Function1Label.AutoSize = True
- Me.Function1Label.Location = New System.Drawing.Point(189, 28)
+ resources.ApplyResources(Me.Function1Label, "Function1Label")
Me.Function1Label.Name = "Function1Label"
- Me.Function1Label.Size = New System.Drawing.Size(12, 13)
- Me.Function1Label.TabIndex = 82
- Me.Function1Label.Text = "v"
'
'lblsavePatternsRework
'
- Me.lblsavePatternsRework.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.lblsavePatternsRework.AutoSize = True
+ resources.ApplyResources(Me.lblsavePatternsRework, "lblsavePatternsRework")
Me.lblsavePatternsRework.BackColor = System.Drawing.Color.Yellow
- Me.lblsavePatternsRework.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblsavePatternsRework.Location = New System.Drawing.Point(225, 161)
Me.lblsavePatternsRework.Name = "lblsavePatternsRework"
- Me.lblsavePatternsRework.Size = New System.Drawing.Size(164, 13)
- Me.lblsavePatternsRework.TabIndex = 81
- Me.lblsavePatternsRework.Text = "Daten erfolgreich gespeichert!"
- Me.lblsavePatternsRework.Visible = False
'
'CHANGED_WHOTextBox1
'
Me.CHANGED_WHOTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox1.Location = New System.Drawing.Point(228, 136)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox1, "CHANGED_WHOTextBox1")
Me.CHANGED_WHOTextBox1.Name = "CHANGED_WHOTextBox1"
Me.CHANGED_WHOTextBox1.ReadOnly = True
- Me.CHANGED_WHOTextBox1.Size = New System.Drawing.Size(100, 22)
- Me.CHANGED_WHOTextBox1.TabIndex = 20
'
'ADDED_WHENTextBox
'
Me.ADDED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox.Location = New System.Drawing.Point(118, 136)
+ resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
Me.ADDED_WHENTextBox.Name = "ADDED_WHENTextBox"
Me.ADDED_WHENTextBox.ReadOnly = True
- Me.ADDED_WHENTextBox.Size = New System.Drawing.Size(100, 22)
- Me.ADDED_WHENTextBox.TabIndex = 18
'
'ADDED_WHOTextBox
'
Me.ADDED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox.Location = New System.Drawing.Point(9, 136)
+ resources.ApplyResources(Me.ADDED_WHOTextBox, "ADDED_WHOTextBox")
Me.ADDED_WHOTextBox.Name = "ADDED_WHOTextBox"
Me.ADDED_WHOTextBox.ReadOnly = True
- Me.ADDED_WHOTextBox.Size = New System.Drawing.Size(100, 22)
- Me.ADDED_WHOTextBox.TabIndex = 16
'
'SEQUENCETextBox
'
Me.SEQUENCETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "SEQUENCE", True))
- Me.SEQUENCETextBox.Location = New System.Drawing.Point(440, 44)
+ resources.ApplyResources(Me.SEQUENCETextBox, "SEQUENCETextBox")
Me.SEQUENCETextBox.Name = "SEQUENCETextBox"
- Me.SEQUENCETextBox.Size = New System.Drawing.Size(46, 22)
- Me.SEQUENCETextBox.TabIndex = 14
'
'TEXT2TextBox
'
Me.TEXT2TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "TEXT2", True))
- Me.TEXT2TextBox.Location = New System.Drawing.Point(145, 86)
+ resources.ApplyResources(Me.TEXT2TextBox, "TEXT2TextBox")
Me.TEXT2TextBox.Name = "TEXT2TextBox"
- Me.TEXT2TextBox.Size = New System.Drawing.Size(37, 22)
- Me.TEXT2TextBox.TabIndex = 12
'
'TEXT1TextBox
'
Me.TEXT1TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "TEXT1", True))
- Me.TEXT1TextBox.Location = New System.Drawing.Point(9, 86)
+ resources.ApplyResources(Me.TEXT1TextBox, "TEXT1TextBox")
Me.TEXT1TextBox.Name = "TEXT1TextBox"
- Me.TEXT1TextBox.Size = New System.Drawing.Size(55, 22)
- Me.TEXT1TextBox.TabIndex = 10
'
'FUNCTION2TextBox
'
Me.FUNCTION2TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "FUNCTION2", True))
- Me.FUNCTION2TextBox.Location = New System.Drawing.Point(309, 44)
+ resources.ApplyResources(Me.FUNCTION2TextBox, "FUNCTION2TextBox")
Me.FUNCTION2TextBox.Name = "FUNCTION2TextBox"
- Me.FUNCTION2TextBox.Size = New System.Drawing.Size(67, 22)
- Me.FUNCTION2TextBox.TabIndex = 8
'
'FUNCTION1TextBox
'
Me.FUNCTION1TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "FUNCTION1", True))
- Me.FUNCTION1TextBox.Location = New System.Drawing.Point(192, 44)
+ resources.ApplyResources(Me.FUNCTION1TextBox, "FUNCTION1TextBox")
Me.FUNCTION1TextBox.Name = "FUNCTION1TextBox"
- Me.FUNCTION1TextBox.Size = New System.Drawing.Size(111, 22)
- Me.FUNCTION1TextBox.TabIndex = 6
'
'TYPEComboBox
'
Me.TYPEComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "TYPE", True))
Me.TYPEComboBox.FormattingEnabled = True
- Me.TYPEComboBox.Items.AddRange(New Object() {"VBREPLACE", "VBSPLIT", "Regular Expression"})
- Me.TYPEComboBox.Location = New System.Drawing.Point(52, 44)
+ Me.TYPEComboBox.Items.AddRange(New Object() {resources.GetString("TYPEComboBox.Items"), resources.GetString("TYPEComboBox.Items1"), resources.GetString("TYPEComboBox.Items2")})
+ resources.ApplyResources(Me.TYPEComboBox, "TYPEComboBox")
Me.TYPEComboBox.Name = "TYPEComboBox"
- Me.TYPEComboBox.Size = New System.Drawing.Size(130, 21)
- Me.TYPEComboBox.TabIndex = 4
'
'GUIDTextBox1
'
Me.GUIDTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PATTERNS_REWORKBindingSource, "GUID", True))
- Me.GUIDTextBox1.Location = New System.Drawing.Point(9, 44)
+ resources.ApplyResources(Me.GUIDTextBox1, "GUIDTextBox1")
Me.GUIDTextBox1.Name = "GUIDTextBox1"
Me.GUIDTextBox1.ReadOnly = True
- Me.GUIDTextBox1.Size = New System.Drawing.Size(34, 22)
- Me.GUIDTextBox1.TabIndex = 2
'
'BindingNavigator1
'
@@ -1584,123 +1150,88 @@ Partial Class frmHotKey_Add
Me.BindingNavigator1.CountItem = Me.BindingNavigatorCountItem
Me.BindingNavigator1.DeleteItem = Me.BindingNavigatorDeleteItem
Me.BindingNavigator1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2, Me.BindingNavigatorAddNewItem, Me.BindingNavigatorDeleteItem, Me.ToolStripButton1})
- Me.BindingNavigator1.Location = New System.Drawing.Point(3, 3)
+ resources.ApplyResources(Me.BindingNavigator1, "BindingNavigator1")
Me.BindingNavigator1.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
Me.BindingNavigator1.MoveLastItem = Me.BindingNavigatorMoveLastItem
Me.BindingNavigator1.MoveNextItem = Me.BindingNavigatorMoveNextItem
Me.BindingNavigator1.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
Me.BindingNavigator1.Name = "BindingNavigator1"
Me.BindingNavigator1.PositionItem = Me.BindingNavigatorPositionItem
- Me.BindingNavigator1.Size = New System.Drawing.Size(625, 25)
- Me.BindingNavigator1.TabIndex = 0
- Me.BindingNavigator1.Text = "BindingNavigator1"
'
'BindingNavigatorAddNewItem
'
Me.BindingNavigatorAddNewItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorAddNewItem.Image = CType(resources.GetObject("BindingNavigatorAddNewItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorAddNewItem, "BindingNavigatorAddNewItem")
Me.BindingNavigatorAddNewItem.Name = "BindingNavigatorAddNewItem"
- Me.BindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorAddNewItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorAddNewItem.Text = "Neu hinzufügen"
'
'BindingNavigatorCountItem
'
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
- Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(44, 22)
- Me.BindingNavigatorCountItem.Text = "von {0}"
- Me.BindingNavigatorCountItem.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
'
'BindingNavigatorDeleteItem
'
Me.BindingNavigatorDeleteItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorDeleteItem.Image = CType(resources.GetObject("BindingNavigatorDeleteItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorDeleteItem, "BindingNavigatorDeleteItem")
Me.BindingNavigatorDeleteItem.Name = "BindingNavigatorDeleteItem"
- Me.BindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorDeleteItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorDeleteItem.Text = "Löschen"
'
'BindingNavigatorMoveFirstItem
'
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
- Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveFirstItem.Text = "Erste verschieben"
'
'BindingNavigatorMovePreviousItem
'
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
- Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMovePreviousItem.Text = "Vorherige verschieben"
'
'BindingNavigatorSeparator
'
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
- Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
'
'BindingNavigatorPositionItem
'
- Me.BindingNavigatorPositionItem.AccessibleName = "Position"
- Me.BindingNavigatorPositionItem.AutoSize = False
+ resources.ApplyResources(Me.BindingNavigatorPositionItem, "BindingNavigatorPositionItem")
Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
- Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
- Me.BindingNavigatorPositionItem.Text = "0"
- Me.BindingNavigatorPositionItem.ToolTipText = "Aktuelle Position"
'
'BindingNavigatorSeparator1
'
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
- Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
'
'BindingNavigatorMoveNextItem
'
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
- Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveNextItem.Text = "Nächste verschieben"
'
'BindingNavigatorMoveLastItem
'
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
- Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveLastItem.Text = "Letzte verschieben"
'
'BindingNavigatorSeparator2
'
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
- Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
'
'ToolStripButton1
'
Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
Me.ToolStripButton1.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
- Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton1, "ToolStripButton1")
Me.ToolStripButton1.Name = "ToolStripButton1"
- Me.ToolStripButton1.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton1.Text = "Speichern"
'
'btnRegexTest
'
Me.btnRegexTest.Image = Global.Global_Indexer.My.Resources.Resources.bell_go
- Me.btnRegexTest.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnRegexTest.Location = New System.Drawing.Point(338, 42)
+ resources.ApplyResources(Me.btnRegexTest, "btnRegexTest")
Me.btnRegexTest.Name = "btnRegexTest"
- Me.btnRegexTest.Size = New System.Drawing.Size(96, 23)
- Me.btnRegexTest.TabIndex = 88
- Me.btnRegexTest.Text = "Teste RegEx"
- Me.btnRegexTest.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnRegexTest.UseVisualStyleBackColor = True
- Me.btnRegexTest.Visible = False
'
'TabPage5
'
@@ -1716,75 +1247,51 @@ Partial Class frmHotKey_Add
Me.TabPage5.Controls.Add(Me.GUIDTextBox3)
Me.TabPage5.Controls.Add(Me.Label16)
Me.TabPage5.Controls.Add(Me.BindingNavigator3)
- Me.TabPage5.Location = New System.Drawing.Point(4, 22)
+ resources.ApplyResources(Me.TabPage5, "TabPage5")
Me.TabPage5.Name = "TabPage5"
- Me.TabPage5.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage5.Size = New System.Drawing.Size(631, 245)
- Me.TabPage5.TabIndex = 1
- Me.TabPage5.Text = "Control-Match für Window"
Me.TabPage5.UseVisualStyleBackColor = True
'
'ADDED_WHENTextBox2
'
Me.ADDED_WHENTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_WINDOW_HOOKBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHENTextBox2.Location = New System.Drawing.Point(212, 131)
+ resources.ApplyResources(Me.ADDED_WHENTextBox2, "ADDED_WHENTextBox2")
Me.ADDED_WHENTextBox2.Name = "ADDED_WHENTextBox2"
Me.ADDED_WHENTextBox2.ReadOnly = True
- Me.ADDED_WHENTextBox2.Size = New System.Drawing.Size(152, 22)
- Me.ADDED_WHENTextBox2.TabIndex = 91
Me.ADDED_WHENTextBox2.TabStop = False
'
'ADDED_WHOTextBox2
'
Me.ADDED_WHOTextBox2.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_WINDOW_HOOKBindingSource, "ADDED_WHO", True))
- Me.ADDED_WHOTextBox2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.ADDED_WHOTextBox2.Location = New System.Drawing.Point(67, 131)
+ resources.ApplyResources(Me.ADDED_WHOTextBox2, "ADDED_WHOTextBox2")
Me.ADDED_WHOTextBox2.Name = "ADDED_WHOTextBox2"
Me.ADDED_WHOTextBox2.ReadOnly = True
- Me.ADDED_WHOTextBox2.Size = New System.Drawing.Size(136, 22)
- Me.ADDED_WHOTextBox2.TabIndex = 90
Me.ADDED_WHOTextBox2.TabStop = False
'
'CONTROL_VALUETextBox
'
Me.CONTROL_VALUETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_WINDOW_HOOKBindingSource, "CONTROL_VALUE", True))
- Me.CONTROL_VALUETextBox.Location = New System.Drawing.Point(212, 90)
+ resources.ApplyResources(Me.CONTROL_VALUETextBox, "CONTROL_VALUETextBox")
Me.CONTROL_VALUETextBox.Name = "CONTROL_VALUETextBox"
- Me.CONTROL_VALUETextBox.Size = New System.Drawing.Size(346, 22)
- Me.CONTROL_VALUETextBox.TabIndex = 89
'
'SEQUENCE_NUMBERTextBox1
'
Me.SEQUENCE_NUMBERTextBox1.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_WINDOW_HOOKBindingSource, "SEQUENCE_NUMBER", True))
- Me.SEQUENCE_NUMBERTextBox1.Location = New System.Drawing.Point(67, 90)
+ resources.ApplyResources(Me.SEQUENCE_NUMBERTextBox1, "SEQUENCE_NUMBERTextBox1")
Me.SEQUENCE_NUMBERTextBox1.Name = "SEQUENCE_NUMBERTextBox1"
- Me.SEQUENCE_NUMBERTextBox1.Size = New System.Drawing.Size(46, 22)
- Me.SEQUENCE_NUMBERTextBox1.TabIndex = 88
'
'GUIDTextBox3
'
Me.GUIDTextBox3.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_WINDOW_HOOKBindingSource, "GUID", True))
- Me.GUIDTextBox3.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GUIDTextBox3.Location = New System.Drawing.Point(9, 90)
+ resources.ApplyResources(Me.GUIDTextBox3, "GUIDTextBox3")
Me.GUIDTextBox3.Name = "GUIDTextBox3"
Me.GUIDTextBox3.ReadOnly = True
- Me.GUIDTextBox3.Size = New System.Drawing.Size(49, 22)
- Me.GUIDTextBox3.TabIndex = 87
Me.GUIDTextBox3.TabStop = False
'
'Label16
'
- Me.Label16.AutoSize = True
+ resources.ApplyResources(Me.Label16, "Label16")
Me.Label16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
- Me.Label16.Font = New System.Drawing.Font("Segoe UI", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label16.Location = New System.Drawing.Point(9, 37)
Me.Label16.Name = "Label16"
- Me.Label16.Size = New System.Drawing.Size(550, 28)
- Me.Label16.TabIndex = 86
- Me.Label16.Text = "Bei Nicht-Eindeutigkeit des MainWindow-Namens und der Control-Sequence/-Reihenfol" & _
- "ge muss " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "zusätzlich eine Abhängigkeit zwischen dem Control-Inhalt und dem Windo" & _
- "wnamen geschaffen werden."
'
'BindingNavigator3
'
@@ -1794,102 +1301,76 @@ Partial Class frmHotKey_Add
Me.BindingNavigator3.CountItemFormat = "von {0} Control-Matches"
Me.BindingNavigator3.DeleteItem = Me.ToolStripButton2
Me.BindingNavigator3.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton3, Me.ToolStripButton4, Me.ToolStripSeparator1, Me.ToolStripTextBox1, Me.ToolStripLabel1, Me.ToolStripSeparator2, Me.ToolStripButton5, Me.ToolStripButton6, Me.ToolStripSeparator3, Me.ToolStripButton2})
- Me.BindingNavigator3.Location = New System.Drawing.Point(3, 3)
+ resources.ApplyResources(Me.BindingNavigator3, "BindingNavigator3")
Me.BindingNavigator3.MoveFirstItem = Me.ToolStripButton3
Me.BindingNavigator3.MoveLastItem = Me.ToolStripButton6
Me.BindingNavigator3.MoveNextItem = Me.ToolStripButton5
Me.BindingNavigator3.MovePreviousItem = Me.ToolStripButton4
Me.BindingNavigator3.Name = "BindingNavigator3"
Me.BindingNavigator3.PositionItem = Me.ToolStripTextBox1
- Me.BindingNavigator3.Size = New System.Drawing.Size(625, 25)
- Me.BindingNavigator3.TabIndex = 1
- Me.BindingNavigator3.Text = "BindingNavigator3"
'
'ToolStripLabel1
'
Me.ToolStripLabel1.Name = "ToolStripLabel1"
- Me.ToolStripLabel1.Size = New System.Drawing.Size(137, 22)
- Me.ToolStripLabel1.Text = "von {0} Control-Matches"
- Me.ToolStripLabel1.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.ToolStripLabel1, "ToolStripLabel1")
'
'ToolStripButton2
'
Me.ToolStripButton2.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton2.Image = CType(resources.GetObject("ToolStripButton2.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton2, "ToolStripButton2")
Me.ToolStripButton2.Name = "ToolStripButton2"
- Me.ToolStripButton2.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton2.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton2.Text = "Löschen"
'
'ToolStripButton3
'
Me.ToolStripButton3.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton3.Image = CType(resources.GetObject("ToolStripButton3.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton3, "ToolStripButton3")
Me.ToolStripButton3.Name = "ToolStripButton3"
- Me.ToolStripButton3.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton3.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton3.Text = "Erste verschieben"
'
'ToolStripButton4
'
Me.ToolStripButton4.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton4.Image = CType(resources.GetObject("ToolStripButton4.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton4, "ToolStripButton4")
Me.ToolStripButton4.Name = "ToolStripButton4"
- Me.ToolStripButton4.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton4.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton4.Text = "Vorherige verschieben"
'
'ToolStripSeparator1
'
Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
- Me.ToolStripSeparator1.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator1, "ToolStripSeparator1")
'
'ToolStripTextBox1
'
- Me.ToolStripTextBox1.AccessibleName = "Position"
- Me.ToolStripTextBox1.AutoSize = False
+ resources.ApplyResources(Me.ToolStripTextBox1, "ToolStripTextBox1")
Me.ToolStripTextBox1.Name = "ToolStripTextBox1"
- Me.ToolStripTextBox1.Size = New System.Drawing.Size(50, 23)
- Me.ToolStripTextBox1.Text = "0"
- Me.ToolStripTextBox1.ToolTipText = "Aktuelle Position"
'
'ToolStripSeparator2
'
Me.ToolStripSeparator2.Name = "ToolStripSeparator2"
- Me.ToolStripSeparator2.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator2, "ToolStripSeparator2")
'
'ToolStripButton5
'
Me.ToolStripButton5.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton5.Image = CType(resources.GetObject("ToolStripButton5.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton5, "ToolStripButton5")
Me.ToolStripButton5.Name = "ToolStripButton5"
- Me.ToolStripButton5.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton5.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton5.Text = "Nächste verschieben"
'
'ToolStripButton6
'
Me.ToolStripButton6.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.ToolStripButton6.Image = CType(resources.GetObject("ToolStripButton6.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.ToolStripButton6, "ToolStripButton6")
Me.ToolStripButton6.Name = "ToolStripButton6"
- Me.ToolStripButton6.RightToLeftAutoMirrorImage = True
- Me.ToolStripButton6.Size = New System.Drawing.Size(23, 22)
- Me.ToolStripButton6.Text = "Letzte verschieben"
'
'ToolStripSeparator3
'
Me.ToolStripSeparator3.Name = "ToolStripSeparator3"
- Me.ToolStripSeparator3.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.ToolStripSeparator3, "ToolStripSeparator3")
'
'ListBoxPatterns
'
Me.ListBoxPatterns.DataSource = Me.TBHOTKEY_PATTERNSBindingSource
Me.ListBoxPatterns.DisplayMember = "PATTERN_WDSEARCH"
Me.ListBoxPatterns.FormattingEnabled = True
- Me.ListBoxPatterns.Location = New System.Drawing.Point(9, 37)
+ resources.ApplyResources(Me.ListBoxPatterns, "ListBoxPatterns")
Me.ListBoxPatterns.Name = "ListBoxPatterns"
- Me.ListBoxPatterns.Size = New System.Drawing.Size(246, 108)
- Me.ListBoxPatterns.TabIndex = 0
Me.ListBoxPatterns.ValueMember = "GUID"
'
'TabControl1
@@ -1897,15 +1378,13 @@ Partial Class frmHotKey_Add
Me.TabControl1.Controls.Add(Me.TabPage3)
Me.TabControl1.Controls.Add(Me.TabPage1)
Me.TabControl1.Controls.Add(Me.TabPage2)
- Me.TabControl1.Location = New System.Drawing.Point(269, 62)
+ resources.ApplyResources(Me.TabControl1, "TabControl1")
Me.TabControl1.Name = "TabControl1"
Me.TabControl1.SelectedIndex = 0
- Me.TabControl1.Size = New System.Drawing.Size(639, 215)
- Me.TabControl1.TabIndex = 36
'
'TabPage3
'
- Me.TabPage3.AutoScroll = True
+ resources.ApplyResources(Me.TabPage3, "TabPage3")
Me.TabPage3.Controls.Add(WINDOW_NAMELabel)
Me.TabPage3.Controls.Add(Me.WINDOW_NAMETextBox)
Me.TabPage3.Controls.Add(Me.Button2)
@@ -1925,368 +1404,238 @@ Partial Class frmHotKey_Add
Me.TabPage3.Controls.Add(Me.NAMETextBox)
Me.TabPage3.Controls.Add(GUIDLabel)
Me.TabPage3.Controls.Add(Me.GUIDTextBox)
- Me.TabPage3.Location = New System.Drawing.Point(4, 22)
Me.TabPage3.Name = "TabPage3"
- Me.TabPage3.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage3.Size = New System.Drawing.Size(631, 189)
- Me.TabPage3.TabIndex = 2
- Me.TabPage3.Text = "Eigenschaften Hotkey-Profil:"
Me.TabPage3.UseVisualStyleBackColor = True
'
'WINDOW_NAMETextBox
'
Me.WINDOW_NAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PROFILEBindingSource, "WINDOW_NAME", True))
- Me.WINDOW_NAMETextBox.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.WINDOW_NAMETextBox, "WINDOW_NAMETextBox")
Me.WINDOW_NAMETextBox.ForeColor = System.Drawing.Color.Firebrick
- Me.WINDOW_NAMETextBox.Location = New System.Drawing.Point(9, 110)
Me.WINDOW_NAMETextBox.Name = "WINDOW_NAMETextBox"
- Me.WINDOW_NAMETextBox.Size = New System.Drawing.Size(431, 24)
- Me.WINDOW_NAMETextBox.TabIndex = 82
Me.WINDOW_NAMETextBox.TabStop = False
'
'Button2
'
- Me.Button2.Location = New System.Drawing.Point(479, 67)
+ resources.ApplyResources(Me.Button2, "Button2")
Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(31, 23)
- Me.Button2.TabIndex = 81
- Me.Button2.Text = "..."
Me.Button2.UseVisualStyleBackColor = True
'
'lblSave
'
- Me.lblSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.lblSave.AutoSize = True
+ resources.ApplyResources(Me.lblSave, "lblSave")
Me.lblSave.BackColor = System.Drawing.Color.Yellow
- Me.lblSave.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSave.Location = New System.Drawing.Point(446, 114)
Me.lblSave.Name = "lblSave"
- Me.lblSave.Size = New System.Drawing.Size(164, 13)
- Me.lblSave.TabIndex = 80
- Me.lblSave.Text = "Daten erfolgreich gespeichert!"
- Me.lblSave.Visible = False
'
'btnsave
'
Me.btnsave.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
- Me.btnsave.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
- Me.btnsave.Location = New System.Drawing.Point(525, 12)
+ resources.ApplyResources(Me.btnsave, "btnsave")
Me.btnsave.Name = "btnsave"
- Me.btnsave.Size = New System.Drawing.Size(85, 38)
- Me.btnsave.TabIndex = 21
- Me.btnsave.Text = "Speichern"
- Me.btnsave.TextAlign = System.Drawing.ContentAlignment.TopCenter
Me.btnsave.UseVisualStyleBackColor = True
'
'CHANGED_WHENTextBox
'
Me.CHANGED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PROFILEBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox.Location = New System.Drawing.Point(313, 156)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
Me.CHANGED_WHENTextBox.Name = "CHANGED_WHENTextBox"
Me.CHANGED_WHENTextBox.ReadOnly = True
- Me.CHANGED_WHENTextBox.Size = New System.Drawing.Size(158, 22)
- Me.CHANGED_WHENTextBox.TabIndex = 13
'
'CHANGED_WHOTextBox
'
Me.CHANGED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PROFILEBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox.Location = New System.Drawing.Point(174, 156)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
Me.CHANGED_WHOTextBox.Name = "CHANGED_WHOTextBox"
Me.CHANGED_WHOTextBox.ReadOnly = True
- Me.CHANGED_WHOTextBox.Size = New System.Drawing.Size(130, 22)
- Me.CHANGED_WHOTextBox.TabIndex = 11
'
'HOTKEY2TextBox
'
Me.HOTKEY2TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PROFILEBindingSource, "HOTKEY2", True))
- Me.HOTKEY2TextBox.Location = New System.Drawing.Point(102, 156)
+ resources.ApplyResources(Me.HOTKEY2TextBox, "HOTKEY2TextBox")
Me.HOTKEY2TextBox.Name = "HOTKEY2TextBox"
- Me.HOTKEY2TextBox.Size = New System.Drawing.Size(52, 22)
- Me.HOTKEY2TextBox.TabIndex = 9
'
'HOTKEY1ComboBox
'
Me.HOTKEY1ComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PROFILEBindingSource, "HOTKEY1", True))
Me.HOTKEY1ComboBox.FormattingEnabled = True
- Me.HOTKEY1ComboBox.Items.AddRange(New Object() {"Strg", "Shift", "Alt", "Win"})
- Me.HOTKEY1ComboBox.Location = New System.Drawing.Point(9, 156)
+ Me.HOTKEY1ComboBox.Items.AddRange(New Object() {resources.GetString("HOTKEY1ComboBox.Items"), resources.GetString("HOTKEY1ComboBox.Items1"), resources.GetString("HOTKEY1ComboBox.Items2"), resources.GetString("HOTKEY1ComboBox.Items3")})
+ resources.ApplyResources(Me.HOTKEY1ComboBox, "HOTKEY1ComboBox")
Me.HOTKEY1ComboBox.Name = "HOTKEY1ComboBox"
- Me.HOTKEY1ComboBox.Size = New System.Drawing.Size(77, 21)
- Me.HOTKEY1ComboBox.TabIndex = 7
'
'WD_SEARCHTextBox
'
Me.WD_SEARCHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PROFILEBindingSource, "WD_SEARCH", True))
- Me.WD_SEARCHTextBox.Location = New System.Drawing.Point(9, 69)
+ resources.ApplyResources(Me.WD_SEARCHTextBox, "WD_SEARCHTextBox")
Me.WD_SEARCHTextBox.Name = "WD_SEARCHTextBox"
- Me.WD_SEARCHTextBox.Size = New System.Drawing.Size(462, 22)
- Me.WD_SEARCHTextBox.TabIndex = 5
'
'NAMETextBox
'
Me.NAMETextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PROFILEBindingSource, "NAME", True))
- Me.NAMETextBox.Location = New System.Drawing.Point(67, 28)
+ resources.ApplyResources(Me.NAMETextBox, "NAMETextBox")
Me.NAMETextBox.Name = "NAMETextBox"
- Me.NAMETextBox.Size = New System.Drawing.Size(404, 22)
- Me.NAMETextBox.TabIndex = 3
'
'GUIDTextBox
'
Me.GUIDTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_PROFILEBindingSource, "GUID", True))
- Me.GUIDTextBox.Location = New System.Drawing.Point(9, 28)
+ resources.ApplyResources(Me.GUIDTextBox, "GUIDTextBox")
Me.GUIDTextBox.Name = "GUIDTextBox"
Me.GUIDTextBox.ReadOnly = True
- Me.GUIDTextBox.Size = New System.Drawing.Size(49, 22)
- Me.GUIDTextBox.TabIndex = 1
'
'TabPage1
'
Me.TabPage1.Controls.Add(Me.chklbUser)
Me.TabPage1.Controls.Add(Me.btnUserAdd_Profile)
- Me.TabPage1.Location = New System.Drawing.Point(4, 22)
+ resources.ApplyResources(Me.TabPage1, "TabPage1")
Me.TabPage1.Name = "TabPage1"
- Me.TabPage1.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage1.Size = New System.Drawing.Size(631, 189)
- Me.TabPage1.TabIndex = 0
- Me.TabPage1.Text = "User zu Profil zuordnen"
Me.TabPage1.UseVisualStyleBackColor = True
'
'chklbUser
'
- Me.chklbUser.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
+ resources.ApplyResources(Me.chklbUser, "chklbUser")
Me.chklbUser.ContextMenuStrip = Me.ContextMenuStrip1
Me.chklbUser.FormattingEnabled = True
- Me.chklbUser.Location = New System.Drawing.Point(3, 6)
Me.chklbUser.Name = "chklbUser"
- Me.chklbUser.Size = New System.Drawing.Size(290, 174)
- Me.chklbUser.TabIndex = 35
'
'ContextMenuStrip1
'
Me.ContextMenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.AlleAuswählenToolStripMenuItem, Me.KeineAuswählenToolStripMenuItem})
Me.ContextMenuStrip1.Name = "ContextMenuStrip1"
- Me.ContextMenuStrip1.Size = New System.Drawing.Size(163, 48)
+ resources.ApplyResources(Me.ContextMenuStrip1, "ContextMenuStrip1")
'
'AlleAuswählenToolStripMenuItem
'
Me.AlleAuswählenToolStripMenuItem.Name = "AlleAuswählenToolStripMenuItem"
- Me.AlleAuswählenToolStripMenuItem.Size = New System.Drawing.Size(162, 22)
- Me.AlleAuswählenToolStripMenuItem.Text = "Alle auswählen"
+ resources.ApplyResources(Me.AlleAuswählenToolStripMenuItem, "AlleAuswählenToolStripMenuItem")
'
'KeineAuswählenToolStripMenuItem
'
Me.KeineAuswählenToolStripMenuItem.Name = "KeineAuswählenToolStripMenuItem"
- Me.KeineAuswählenToolStripMenuItem.Size = New System.Drawing.Size(162, 22)
- Me.KeineAuswählenToolStripMenuItem.Text = "Keine auswählen"
+ resources.ApplyResources(Me.KeineAuswählenToolStripMenuItem, "KeineAuswählenToolStripMenuItem")
'
'btnUserAdd_Profile
'
- Me.btnUserAdd_Profile.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnUserAdd_Profile, "btnUserAdd_Profile")
Me.btnUserAdd_Profile.Image = Global.Global_Indexer.My.Resources.Resources.add
- Me.btnUserAdd_Profile.ImageAlign = System.Drawing.ContentAlignment.MiddleRight
- Me.btnUserAdd_Profile.Location = New System.Drawing.Point(299, 6)
Me.btnUserAdd_Profile.Name = "btnUserAdd_Profile"
- Me.btnUserAdd_Profile.Size = New System.Drawing.Size(200, 36)
- Me.btnUserAdd_Profile.TabIndex = 34
- Me.btnUserAdd_Profile.Text = "Gewählten Usern Profil zuweisen"
- Me.btnUserAdd_Profile.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.btnUserAdd_Profile.UseVisualStyleBackColor = True
'
'TabPage2
'
Me.TabPage2.Controls.Add(Me.btndeleteUserProfile)
Me.TabPage2.Controls.Add(Me.chklbUserProfile)
- Me.TabPage2.Location = New System.Drawing.Point(4, 22)
+ resources.ApplyResources(Me.TabPage2, "TabPage2")
Me.TabPage2.Name = "TabPage2"
- Me.TabPage2.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage2.Size = New System.Drawing.Size(631, 189)
- Me.TabPage2.TabIndex = 1
- Me.TabPage2.Text = "Usern Profile entziehen"
Me.TabPage2.UseVisualStyleBackColor = True
'
'btndeleteUserProfile
'
Me.btndeleteUserProfile.Image = Global.Global_Indexer.My.Resources.Resources.delete_12x12
- Me.btndeleteUserProfile.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btndeleteUserProfile.Location = New System.Drawing.Point(303, 6)
+ resources.ApplyResources(Me.btndeleteUserProfile, "btndeleteUserProfile")
Me.btndeleteUserProfile.Name = "btndeleteUserProfile"
- Me.btndeleteUserProfile.Size = New System.Drawing.Size(197, 26)
- Me.btndeleteUserProfile.TabIndex = 37
- Me.btndeleteUserProfile.Text = "Userprofile löschen"
- Me.btndeleteUserProfile.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btndeleteUserProfile.UseVisualStyleBackColor = True
'
'chklbUserProfile
'
- Me.chklbUserProfile.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
+ resources.ApplyResources(Me.chklbUserProfile, "chklbUserProfile")
Me.chklbUserProfile.ContextMenuStrip = Me.ContextMenuStrip1
Me.chklbUserProfile.FormattingEnabled = True
- Me.chklbUserProfile.Location = New System.Drawing.Point(6, 6)
Me.chklbUserProfile.Name = "chklbUserProfile"
- Me.chklbUserProfile.Size = New System.Drawing.Size(291, 174)
- Me.chklbUserProfile.TabIndex = 36
'
'btndelete
'
Me.btndelete.Image = Global.Global_Indexer.My.Resources.Resources.delete_12x12
- Me.btndelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btndelete.Location = New System.Drawing.Point(269, 30)
+ resources.ApplyResources(Me.btndelete, "btndelete")
Me.btndelete.Name = "btndelete"
- Me.btndelete.Size = New System.Drawing.Size(197, 26)
- Me.btndelete.TabIndex = 20
- Me.btndelete.Text = "Profil löschen (Global und User)"
- Me.btndelete.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btndelete.UseVisualStyleBackColor = True
'
'ListBox_Profiles
'
- Me.ListBox_Profiles.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+ resources.ApplyResources(Me.ListBox_Profiles, "ListBox_Profiles")
Me.ListBox_Profiles.BackColor = System.Drawing.SystemColors.ControlLight
Me.ListBox_Profiles.DataSource = Me.TBHOTKEY_PROFILEBindingSource
Me.ListBox_Profiles.DisplayMember = "String"
- Me.ListBox_Profiles.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.ListBox_Profiles.FormattingEnabled = True
- Me.ListBox_Profiles.ItemHeight = 15
- Me.ListBox_Profiles.Location = New System.Drawing.Point(8, 30)
Me.ListBox_Profiles.Name = "ListBox_Profiles"
- Me.ListBox_Profiles.Size = New System.Drawing.Size(255, 244)
- Me.ListBox_Profiles.TabIndex = 4
Me.ListBox_Profiles.ValueMember = "GUID"
'
'Label9
'
- Me.Label9.AutoSize = True
- Me.Label9.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label9.Location = New System.Drawing.Point(5, 12)
+ resources.ApplyResources(Me.Label9, "Label9")
Me.Label9.Name = "Label9"
- Me.Label9.Size = New System.Drawing.Size(142, 15)
- Me.Label9.TabIndex = 3
- Me.Label9.Text = "Aktuelle globale Hotkeys:"
'
'TabPage_Designer
'
- Me.TabPage_Designer.AutoScroll = True
+ resources.ApplyResources(Me.TabPage_Designer, "TabPage_Designer")
+ Me.TabPage_Designer.Controls.Add(Me.TabControl2)
Me.TabPage_Designer.Controls.Add(Me.GroupBox1)
- Me.TabPage_Designer.Controls.Add(Me.GroupBox2_Controls)
Me.TabPage_Designer.Controls.Add(Me.GroupBoxMainWindow)
- Me.TabPage_Designer.Location = New System.Drawing.Point(4, 22)
Me.TabPage_Designer.Name = "TabPage_Designer"
- Me.TabPage_Designer.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPage_Designer.Size = New System.Drawing.Size(964, 587)
- Me.TabPage_Designer.TabIndex = 0
- Me.TabPage_Designer.Text = "Hotkey-Profil definieren"
Me.TabPage_Designer.UseVisualStyleBackColor = True
'
'TabPageTest
'
Me.TabPageTest.Controls.Add(Me.GroupBox3)
Me.TabPageTest.Controls.Add(Me.GroupBox2)
- Me.TabPageTest.Location = New System.Drawing.Point(4, 22)
+ resources.ApplyResources(Me.TabPageTest, "TabPageTest")
Me.TabPageTest.Name = "TabPageTest"
- Me.TabPageTest.Padding = New System.Windows.Forms.Padding(3)
- Me.TabPageTest.Size = New System.Drawing.Size(964, 587)
- Me.TabPageTest.TabIndex = 1
- Me.TabPageTest.Text = "Test - Auswerten Window-Handle"
Me.TabPageTest.UseVisualStyleBackColor = True
'
'GroupBox3
'
Me.GroupBox3.Controls.Add(Me.chkboxshowfilledControlsOnly_Test)
Me.GroupBox3.Controls.Add(Me.ListViewControls_Test)
- Me.GroupBox3.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GroupBox3.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox3.Location = New System.Drawing.Point(538, 3)
+ resources.ApplyResources(Me.GroupBox3, "GroupBox3")
Me.GroupBox3.Name = "GroupBox3"
- Me.GroupBox3.Size = New System.Drawing.Size(423, 581)
- Me.GroupBox3.TabIndex = 17
Me.GroupBox3.TabStop = False
- Me.GroupBox3.Text = "Auslesbare Controls für gewähltes 'MainWindow'"
'
'chkboxshowfilledControlsOnly_Test
'
- Me.chkboxshowfilledControlsOnly_Test.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.chkboxshowfilledControlsOnly_Test.AutoSize = True
- Me.chkboxshowfilledControlsOnly_Test.Font = New System.Drawing.Font("Segoe UI", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.chkboxshowfilledControlsOnly_Test, "chkboxshowfilledControlsOnly_Test")
Me.chkboxshowfilledControlsOnly_Test.ForeColor = System.Drawing.Color.DarkSlateGray
- Me.chkboxshowfilledControlsOnly_Test.Location = New System.Drawing.Point(6, 555)
Me.chkboxshowfilledControlsOnly_Test.Name = "chkboxshowfilledControlsOnly_Test"
- Me.chkboxshowfilledControlsOnly_Test.Size = New System.Drawing.Size(185, 19)
- Me.chkboxshowfilledControlsOnly_Test.TabIndex = 10
- Me.chkboxshowfilledControlsOnly_Test.Text = "Nur gefüllte Felder anzeigen"
Me.chkboxshowfilledControlsOnly_Test.UseVisualStyleBackColor = True
'
'ListViewControls_Test
'
- Me.ListViewControls_Test.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+ resources.ApplyResources(Me.ListViewControls_Test, "ListViewControls_Test")
Me.ListViewControls_Test.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader4, Me.ColumnHeader1, Me.ColumnHeader2})
- Me.ListViewControls_Test.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.ListViewControls_Test.FullRowSelect = True
- Me.ListViewControls_Test.Location = New System.Drawing.Point(6, 27)
Me.ListViewControls_Test.Name = "ListViewControls_Test"
- Me.ListViewControls_Test.Size = New System.Drawing.Size(414, 514)
- Me.ListViewControls_Test.TabIndex = 82
Me.ListViewControls_Test.UseCompatibleStateImageBehavior = False
Me.ListViewControls_Test.View = System.Windows.Forms.View.Details
'
'ColumnHeader4
'
- Me.ColumnHeader4.Text = "#"
+ resources.ApplyResources(Me.ColumnHeader4, "ColumnHeader4")
'
'ColumnHeader1
'
- Me.ColumnHeader1.Text = "Control-ID:"
- Me.ColumnHeader1.Width = 80
+ resources.ApplyResources(Me.ColumnHeader1, "ColumnHeader1")
'
'ColumnHeader2
'
- Me.ColumnHeader2.Text = "Gelesener Wert"
- Me.ColumnHeader2.Width = 350
+ resources.ApplyResources(Me.ColumnHeader2, "ColumnHeader2")
'
'GroupBox2
'
Me.GroupBox2.Controls.Add(Me.Button3)
Me.GroupBox2.Controls.Add(Me.ListBox_MainWindows_Test)
- Me.GroupBox2.Dock = System.Windows.Forms.DockStyle.Left
- Me.GroupBox2.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox2.Location = New System.Drawing.Point(3, 3)
+ resources.ApplyResources(Me.GroupBox2, "GroupBox2")
Me.GroupBox2.Name = "GroupBox2"
- Me.GroupBox2.Size = New System.Drawing.Size(535, 581)
- Me.GroupBox2.TabIndex = 16
Me.GroupBox2.TabStop = False
- Me.GroupBox2.Text = "Schritt 1 - Wählen Sie das 'MainWindow' zur Auswahl der Inhalte"
'
'Button3
'
- Me.Button3.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.Button3.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.Button3, "Button3")
Me.Button3.Image = Global.Global_Indexer.My.Resources.Resources.refresh_16xMD
- Me.Button3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.Button3.Location = New System.Drawing.Point(6, 552)
Me.Button3.Name = "Button3"
- Me.Button3.Size = New System.Drawing.Size(75, 23)
- Me.Button3.TabIndex = 9
- Me.Button3.Text = "Refresh"
- Me.Button3.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.Button3.UseVisualStyleBackColor = True
'
'ListBox_MainWindows_Test
'
- Me.ListBox_MainWindows_Test.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.ListBox_MainWindows_Test.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ListBox_MainWindows_Test, "ListBox_MainWindows_Test")
Me.ListBox_MainWindows_Test.FormattingEnabled = True
- Me.ListBox_MainWindows_Test.ItemHeight = 15
- Me.ListBox_MainWindows_Test.Location = New System.Drawing.Point(6, 27)
Me.ListBox_MainWindows_Test.Name = "ListBox_MainWindows_Test"
- Me.ListBox_MainWindows_Test.Size = New System.Drawing.Size(514, 514)
- Me.ListBox_MainWindows_Test.TabIndex = 8
'
'TBDD_USERBindingSource
'
@@ -2314,25 +1663,82 @@ Partial Class frmHotKey_Add
'
Me.TBHOTKEY_WINDOW_HOOKTableAdapter.ClearBeforeFill = True
'
- 'ToolStrip1
+ 'TabControl2
'
- Me.ToolStrip1.Location = New System.Drawing.Point(3, 3)
- Me.ToolStrip1.Name = "ToolStrip1"
- Me.ToolStrip1.Size = New System.Drawing.Size(958, 25)
- Me.ToolStrip1.TabIndex = 38
- Me.ToolStrip1.Text = "ToolStrip1"
+ resources.ApplyResources(Me.TabControl2, "TabControl2")
+ Me.TabControl2.Controls.Add(Me.TabPage7)
+ Me.TabControl2.Controls.Add(Me.TabPage8)
+ Me.TabControl2.Name = "TabControl2"
+ Me.TabControl2.SelectedIndex = 0
+ '
+ 'TabPage7
+ '
+ Me.TabPage7.Controls.Add(Me.GroupBox2_Controls)
+ resources.ApplyResources(Me.TabPage7, "TabPage7")
+ Me.TabPage7.Name = "TabPage7"
+ Me.TabPage7.UseVisualStyleBackColor = True
+ '
+ 'TabPage8
+ '
+ Me.TabPage8.Controls.Add(Me.Label20)
+ Me.TabPage8.Controls.Add(Me.lblLinkCopyPaste)
+ Me.TabPage8.Controls.Add(Me.btnAddCopypasteConfig)
+ Me.TabPage8.Controls.Add(Me.txtcopypastePatter)
+ Me.TabPage8.Controls.Add(Me.Label19)
+ Me.TabPage8.Controls.Add(Me.Label18)
+ Me.TabPage8.Controls.Add(Me.cmbCopyPasteFunction)
+ resources.ApplyResources(Me.TabPage8, "TabPage8")
+ Me.TabPage8.Name = "TabPage8"
+ Me.TabPage8.UseVisualStyleBackColor = True
+ '
+ 'cmbCopyPasteFunction
+ '
+ Me.cmbCopyPasteFunction.FormattingEnabled = True
+ Me.cmbCopyPasteFunction.Items.AddRange(New Object() {resources.GetString("cmbCopyPasteFunction.Items"), resources.GetString("cmbCopyPasteFunction.Items1")})
+ resources.ApplyResources(Me.cmbCopyPasteFunction, "cmbCopyPasteFunction")
+ Me.cmbCopyPasteFunction.Name = "cmbCopyPasteFunction"
+ '
+ 'Label18
+ '
+ resources.ApplyResources(Me.Label18, "Label18")
+ Me.Label18.Name = "Label18"
+ '
+ 'Label19
+ '
+ resources.ApplyResources(Me.Label19, "Label19")
+ Me.Label19.Name = "Label19"
+ '
+ 'txtcopypastePatter
+ '
+ resources.ApplyResources(Me.txtcopypastePatter, "txtcopypastePatter")
+ Me.txtcopypastePatter.Name = "txtcopypastePatter"
+ '
+ 'btnAddCopypasteConfig
+ '
+ resources.ApplyResources(Me.btnAddCopypasteConfig, "btnAddCopypasteConfig")
+ Me.btnAddCopypasteConfig.Image = Global.Global_Indexer.My.Resources.Resources.add
+ Me.btnAddCopypasteConfig.Name = "btnAddCopypasteConfig"
+ Me.btnAddCopypasteConfig.UseVisualStyleBackColor = True
+ '
+ 'lblLinkCopyPaste
+ '
+ resources.ApplyResources(Me.lblLinkCopyPaste, "lblLinkCopyPaste")
+ Me.lblLinkCopyPaste.BackColor = System.Drawing.Color.Yellow
+ Me.lblLinkCopyPaste.Name = "lblLinkCopyPaste"
+ '
+ 'Label20
+ '
+ resources.ApplyResources(Me.Label20, "Label20")
+ Me.Label20.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
+ Me.Label20.Name = "Label20"
'
'frmHotKey_Add
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(972, 635)
Me.Controls.Add(Me.TabControlMain)
Me.Controls.Add(Me.StatusStrip1)
- Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "frmHotKey_Add"
- Me.Text = "HotKey - Administration"
Me.StatusStrip1.ResumeLayout(False)
Me.StatusStrip1.PerformLayout()
Me.GroupBoxMainWindow.ResumeLayout(False)
@@ -2380,6 +1786,10 @@ Partial Class frmHotKey_Add
Me.GroupBox2.ResumeLayout(False)
CType(Me.TBDD_USERBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBHOTKEY_USER_PROFILEBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
+ Me.TabControl2.ResumeLayout(False)
+ Me.TabPage7.ResumeLayout(False)
+ Me.TabPage8.ResumeLayout(False)
+ Me.TabPage8.PerformLayout()
Me.ResumeLayout(False)
Me.PerformLayout()
@@ -2557,4 +1967,14 @@ Partial Class frmHotKey_Add
Friend WithEvents btnnewProfile As System.Windows.Forms.Button
Friend WithEvents ToolStrip1 As System.Windows.Forms.ToolStrip
Friend WithEvents ToolTipController1 As DevExpress.Utils.ToolTipController
+ Friend WithEvents TabControl2 As System.Windows.Forms.TabControl
+ Friend WithEvents TabPage7 As System.Windows.Forms.TabPage
+ Friend WithEvents TabPage8 As System.Windows.Forms.TabPage
+ Friend WithEvents btnAddCopypasteConfig As System.Windows.Forms.Button
+ Friend WithEvents txtcopypastePatter As System.Windows.Forms.TextBox
+ Friend WithEvents Label19 As System.Windows.Forms.Label
+ Friend WithEvents Label18 As System.Windows.Forms.Label
+ Friend WithEvents cmbCopyPasteFunction As System.Windows.Forms.ComboBox
+ Friend WithEvents lblLinkCopyPaste As System.Windows.Forms.Label
+ Friend WithEvents Label20 As System.Windows.Forms.Label
End Class
diff --git a/Global_Indexer/frmHotKey_Add.resx b/Global_Indexer/frmHotKey_Add.resx
index 3811263..0956c2e 100644
--- a/Global_Indexer/frmHotKey_Add.resx
+++ b/Global_Indexer/frmHotKey_Add.resx
@@ -120,93 +120,2038 @@
False
+
+
+ True
+
+
+
+ 6, 12
+
+
+ 21, 13
+
+
+ 0
+
+
+ ID:
+
+
+ GUIDLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 17
+
False
+
+ True
+
+
+ 64, 12
+
+
+ 65, 13
+
+
+ 2
+
+
+ Profilname:
+
+
+ NAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 15
+
False
+
+ True
+
+
+ 6, 53
+
+
+ 96, 13
+
+
+ 4
+
+
+ windream-Suche:
+
+
+ WD_SEARCHLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 13
+
False
+
+ True
+
+
+ 6, 140
+
+
+ 87, 13
+
+
+ 6
+
+
+ Funktionstaste:
+
+
+ HOTKEY1Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 11
+
False
+
+ True
+
+
+ 99, 140
+
+
+ 55, 13
+
+
+ 8
+
+
+ Hotkey 2:
+
+
+ HOTKEY2Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 9
+
False
+
+ True
+
+
+ 171, 140
+
+
+ 80, 13
+
+
+ 10
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 7
+
False
+
+ True
+
+
+ 310, 140
+
+
+ 90, 13
+
+
+ 12
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 5
+
False
+
+ True
+
+
+ 6, 28
+
+
+ 21, 13
+
+
+ 1
+
+
+ ID:
+
+
+ GUIDLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 22
+
False
+
+ True
+
+
+ 49, 28
+
+
+ 27, 13
+
+
+ 3
+
+
+ Typ:
+
+
+ TYPELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 20
+
False
+
+ True
+
+
+ 437, 28
+
+
+ 73, 13
+
+
+ 13
+
+
+ Reihenfolge:
+
+
+ SEQUENCELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 14
+
False
+
+ True
+
+
+ 6, 120
+
+
+ 67, 13
+
+
+ 15
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 12
+
False
+
+ True
+
+
+ 115, 120
+
+
+ 77, 13
+
+
+ 17
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 10
+
False
+
+ True
+
+
+ 225, 120
+
+
+ 80, 13
+
+
+ 19
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 8
+
False
+
+ True
+
+
+ 336, 120
+
+
+ 90, 13
+
+
+ 21
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 7
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 64, 108
+
+
+ 70, 13
+
+
+ 4
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 8
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ 6, 67
+
+
+ 21, 13
+
+
+ 6
+
+
+ ID:
+
+
+ GUIDLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 15
+
False
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 6, 94
+
+
+ 93, 15
+
+
+ 81
+
+
+ Window-Name:
+
+
+ WINDOW_NAMELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 0
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 64, 67
+
+
+ 154, 13
+
+
+ 8
+
+
+ Control-Sequence/-Reihenfolge:
+
+
+ SEQUENCE_NUMBERLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 13
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 224, 67
+
+
+ 198, 13
+
+
+ 83
+
+
+ Zu ersetzendes Pattern Windream-Suche:
+
+
+ PATTERN_WDSEARCHLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 9
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 224, 108
+
+
+ 82, 13
+
+
+ 85
+
+
+ Geändert wann:
+
+
+ CHANGED_WHENLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 5
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 224, 149
+
+
+ 73, 13
+
+
+ 86
+
+
+ Geändert wer:
+
+
+ CHANGED_WHOLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 3
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 64, 149
+
+
+ 61, 13
+
+
+ 87
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 1
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ 6, 21
+
+
+ 74, 13
+
+
+ 7
+
+
+ Suchpattern:
+
+
+ Label15
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBoxPatterns
+
+
+ 2
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 6, 74
+
+
+ 20, 13
+
+
+ 86
+
+
+ ID:
+
+
+ GUIDLabel3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 8
+
False
+
+ True
+
+
+ 64, 74
+
+
+ 73, 13
+
+
+ 87
+
+
+ Reihenfolge:
+
+
+ SEQUENCE_NUMBERLabel1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 6
+
False
+
+ True
+
+
+ 209, 74
+
+
+ 83, 13
+
+
+ 88
+
+
+ Control-Inhalt:
+
+
+ CONTROL_VALUELabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 4
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 64, 115
+
+
+ 61, 13
+
+
+ 89
+
+
+ Erstellt wer:
+
+
+ ADDED_WHOLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 2
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 209, 115
+
+
+ 70, 13
+
+
+ 90
+
+
+ Erstellt wann:
+
+
+ ADDED_WHENLabel2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 0
+
False
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ 6, 158
+
+
+ 95, 13
+
+
+ 9
+
+
+ Control-Matches:
+
+
+ Label17
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBoxPatterns
+
+
+ 0
+
17, 17
+
+ 97, 17
+
+
+ Windowname
+
+
+ 74, 17
+
+
+ Sequence
+
+
+ 0, 613
+
+
+ 972, 22
+
+
+ 0
+
+
+ StatusStrip1
+
+
+ StatusStrip1
+
+
+ System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 15
+
+
+ 6, 21
+
+
+ 542, 214
+
+
+ 8
+
+
+ ListBox_FormTitles
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBoxMainWindow
+
+
+ 2
+
+
+
+ Bottom, Left
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 6, 247
+
+
+ 185, 19
+
+
+ 11
+
+
+ Nur gefüllte Felder anzeigen
+
+
+ chkboxshowfilledControlsOnly
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBoxMainWindow
+
+
+ 0
+
+
+ Segoe UI, 9pt
+
+
+ MiddleRight
+
+
+ 473, 243
+
+
+ 75, 25
+
+
+ 0
+
+
+ weiter
+
+
+ MiddleLeft
+
+
+ btnpnlStart_weiter
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBoxMainWindow
+
+
+ 1
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 403, 6
+
+
+ 558, 274
+
+
+ 15
+
+
+ Schritt 2 - Wählen Sie das 'MainWindow' zur Auswahl der Inhalte
+
+
+ False
+
+
+ GroupBoxMainWindow
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage_Designer
+
+
+ 2
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 488, 265
+
+
+ 238, 13
+
+
+ 89
+
+
+ Match Control-Window erfolgreich angelegt
+
+
+ False
+
+
+ lblMatchadd
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 0
+
+
+ Segoe UI, 8.25pt
+
+
+ MiddleRight
+
+
+ 833, 237
+
+
+ 96, 24
+
+
+ 88
+
+
+ Hinzufügen
+
+
+ MiddleLeft
+
+
+ btnadd_WindowMatch
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 1
+
+
+ Segoe UI, 8.25pt
+
+
+ 694, 240
+
+
+ 133, 22
+
+
+ 87
+
+
+ txtValueMatch
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 2
+
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 615, 243
+
+
+ 79, 13
+
+
+ 86
+
+
+ enthält Value:
+
+
+ Label13
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 3
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ 491, 161
+
+
+ 418, 54
+
+
+ 85
+
+
+ Bei Nicht-Eindeutigkeit des MainWindow
+-Namens und der Control # muss
+zusätzlich eine Abhängigkeit zwischen Control-Inhalt und dem Windownamen
+geschaffen werden.
+
+
+ Label11
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 4
+
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 488, 224
+
+
+ 125, 13
+
+
+ 84
+
+
+ Reihenfolge # Control:
+
+
+ Label12
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 5
+
+
+ Segoe UI, 8.25pt
+
+
+ 491, 240
+
+
+ 118, 22
+
+
+ 83
+
+
+ txtControl_Match
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 6
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ 491, 19
+
+
+ 436, 54
+
+
+ 82
+
+
+ Hier wird die Reihenfolge-Nummer in Abhängigkeit zum Titel des 'MainWindows'
+gespeichert.
+Während der Laufzeit wird der Suchpattern der windream-Suche dann mit
+dem gelesenen Wert ersetzt.
+
+
+ Label10
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 7
+
+
+ Top, Bottom, Left, Right
+
+
+ #
+
+
+ Control-ID:
+
+
+ 100
+
+
+ Gelesener Wert
+
+
+ 305
+
+
+ Segoe UI Semibold, 8.25pt, style=Bold, Italic
+
+
+ 6, 19
+
+
+ 476, 237
+
+
+ 81
+
+
+ ListViewControls
+
+
+ System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 8
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 491, 121
+
+
+ 179, 13
+
+
+ 80
+
+
+ Pattern-Link erfolgreich angelegt
+
+
+ False
+
+
+ lblLinkadd
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 9
+
+
+ Segoe UI, 8.25pt
+
+
+ MiddleRight
+
+
+ 835, 93
+
+
+ 96, 24
+
+
+ 14
+
+
+ Hinzufügen
+
+
+ MiddleLeft
+
+
+ btnadd_Pattern
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 10
+
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 693, 80
+
+
+ 138, 13
+
+
+ 13
+
+
+ Windream-Suche Pattern:
+
+
+ Label8
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 11
+
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 491, 80
+
+
+ 125, 13
+
+
+ 12
+
+
+ Reihenfolge # Control:
+
+
+ Label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 12
+
+
+ Segoe UI, 8.25pt
+
+
+ 694, 96
+
+
+ 135, 22
+
+
+ 11
+
+
+ txtPattern
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 13
+
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 615, 99
+
+
+ 73, 13
+
+
+ 10
+
+
+ verlinken mit
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 14
+
+
+ Segoe UI, 8.25pt
+
+
+ 491, 96
+
+
+ 118, 22
+
+
+ 9
+
+
+ txtControl
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2_Controls
+
+
+ 15
+
+
+ Fill
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 3, 3
+
+
+ 936, 262
+
+
+ 9
+
+
+ Schritt 2 -Wählen Sie das Control mit dem zu übergebenden Wert
+
+
+ GroupBox2_Controls
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage7
+
+
+ 0
+
+
+ Segoe UI, 9.75pt, style=Bold, Italic
+
+
+ MiddleLeft
+
+
+ 215, 12
+
+
+ 170, 34
+
+
+ 81
+
+
+ Neues Profil erzeugen
+
+
+ MiddleRight
+
+
+ btnnewProfile
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 0
+
+
+ Segoe UI, 8.25pt
+
+
+ 360, 113
+
+
+ 25, 23
+
+
+ 80
+
+
+ ...
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 1
+
+
+ Top, Right
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 15, 192
+
+
+ 198, 13
+
+
+ 79
+
+
+ Hotkey-Profil erfolgreich gespeichert
+
+
+
+ False
+
+
+ lblSaveHotkey
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 2
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 124, 139
+
+
+ 109, 15
+
+
+ 11
+
+
+ Kombinationstaste:
+
+
+ Label6
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 3
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 15, 139
+
+
+ 87, 15
+
+
+ 10
+
+
+ Funktionstaste:
+
+
+ Label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 4
+
+
+ Segoe UI, 9pt
+
+
+ 127, 157
+
+
+ 53, 23
+
+
+ 9
+
+
+ txtKey
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 5
+
+
+ Segoe UI, 8.25pt
+
+
+ Strg
+
+
+ Shift
+
+
+ Alt
+
+
+ Win
+
+
+ 18, 157
+
+
+ 64, 21
+
+
+ 8
+
+
+ cmbFunktionstaste
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 6
+
+
+ Segoe UI, 9pt
+
+
+ 18, 113
+
+
+ 336, 23
+
+
+ 7
+
+
+ txtWDSearch
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 7
+
+
+ Segoe UI, 8.25pt
+
+
+ 18, 248
+
+
+ 113, 21
+
+
+ 6
+
+
+ False
+
+
+ cmbObjekttyp
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 8
+
+
+ Segoe UI, 9pt
+
+
+ 18, 69
+
+
+ 367, 23
+
+
+ 5
+
+
+ txtProfilname
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 9
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 15, 95
+
+
+ 102, 15
+
+
+ 3
+
+
+ Windream-Suche:
+
+
+ Label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 10
+
+
+ True
+
+
+ Segoe UI, 8.25pt
+
+
+ 137, 251
+
+
+ 61, 13
+
+
+ 2
+
+
+ Objekttyp:
+
+
+ False
+
+
+ Label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 11
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 15, 51
+
+
+ 68, 15
+
+
+ 1
+
+
+ Profilname:
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 12
+
+
+ Segoe UI, 9pt
+
+
+ MiddleRight
+
+
+ 316, 244
+
+
+ 69, 25
+
+
+ 0
+
+
+ weiter
+
+
+ MiddleLeft
+
+
+ btnGB1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 13
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 6, 6
+
+
+ 391, 275
+
+
+ 16
+
+
+ Schritt 1 - Grundangaben
+
+
+ GroupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage_Designer
+
+
+ 1
+
134, 17
@@ -228,22 +2173,292 @@
1386, 17
+
+ windream-Suche|*.wdf|Alle Dateien|*.*
+
+
+ windream-Suche wählen
+
+
+ True
+
1348, 95
+
+ 3, 3
+
+
+ 958, 25
+
+
+ 38
+
+
+ ToolStrip1
+
+
+ ToolStrip1
+
+
+ System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPageUebersicht
+
+
+ 0
+
471, 95
-
- 471, 95
-
+
+ 9, 174
+
+
+ 246, 108
+
+
+ 8
+
+
+ ListBox1
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBoxPatterns
+
+
+ 1
+
+
+ Top, Bottom, Left
+
+
+ Top, Right
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 446, 127
+
+
+ 164, 13
+
+
+ 89
+
+
+ Daten erfolgreich gespeichert!
+
+
+ False
+
+
+ lblSavePAttern
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 0
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 67, 164
+
+
+ 126, 22
+
+
+ 88
+
+
+ ADDED_WHOTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 2
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 227, 164
+
+
+ 141, 22
+
+
+ 87
+
+
+ CHANGED_WHOTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 4
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 227, 124
+
+
+ 141, 22
+
+
+ 86
+
+
+ CHANGED_WHENTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 6
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 67, 124
+
+
+ 126, 22
+
+
+ 5
+
+
+ ADDED_WHENTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 7
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 227, 83
+
+
+ 195, 22
+
+
+ 84
+
+
+ PATTERN_WDSEARCHTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 10
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 67, 83
+
+
+ 67, 22
+
+
+ 9
+
+
+ SEQUENCE_NUMBERTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 11
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ 6, 30
+
+
+ 548, 28
+
+
+ 83
+
+
+ Hier wird die Reihenfolge-Nummer in Abhängigkeit zum Titel des 'MainWindows' gespeichert.
+Während der Laufzeit wird der Suchpattern der windream-Suche dann mit dem gelesenen Wert ersetzt.
+
+
+ Label14
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 12
+
1040, 95
-
- 1040, 95
-
-
+
+ 44, 22
+
+
+ von {0}
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -256,6 +2471,15 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -267,6 +2491,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -276,6 +2509,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -285,6 +2548,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -296,15 +2568,525 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
-
- 317, 95
-
-
- 1098, 56
-
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ ToolStripButton2
+
+
+ 3, 3
+
+
+ 625, 25
+
+
+ 0
+
+
+ BindingNavigator2
+
+
+ BindingNavigator2
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 14
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ 9, 83
+
+
+ 43, 22
+
+
+ 7
+
+
+ GUIDTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage6
+
+
+ 16
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 631, 245
+
+
+ 2
+
+
+ Suchpatterns
+
+
+ TabPage6
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControlDetails
+
+
+ 0
+
+
+ True
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 189, 89
+
+
+ 44, 13
+
+
+ 87
+
+
+ Label10
+
+
+ False
+
+
+ lblHinweisRework1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 0
+
1098, 56
+
+ 339, 136
+
+
+ 129, 22
+
+
+ 86
+
+
+ CHANGED_WHENTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 1
+
+
+ True
+
+
+ 142, 70
+
+
+ 40, 13
+
+
+ 85
+
+
+ Label4
+
+
+ Text2Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 2
+
+
+ True
+
+
+ 6, 70
+
+
+ 40, 13
+
+
+ 84
+
+
+ Label4
+
+
+ Text1Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 3
+
+
+ True
+
+
+ 306, 28
+
+
+ 12, 13
+
+
+ 83
+
+
+ v
+
+
+ Function2Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 4
+
+
+ True
+
+
+ 189, 28
+
+
+ 12, 13
+
+
+ 82
+
+
+ v
+
+
+ Function1Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 5
+
+
+ Top, Right
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 225, 161
+
+
+ 164, 13
+
+
+ 81
+
+
+ Daten erfolgreich gespeichert!
+
+
+ False
+
+
+ lblsavePatternsRework
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 6
+
+
+ 228, 136
+
+
+ 100, 22
+
+
+ 20
+
+
+ CHANGED_WHOTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 9
+
+
+ 118, 136
+
+
+ 100, 22
+
+
+ 18
+
+
+ ADDED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 11
+
+
+ 9, 136
+
+
+ 100, 22
+
+
+ 16
+
+
+ ADDED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 13
+
+
+ 440, 44
+
+
+ 46, 22
+
+
+ 14
+
+
+ SEQUENCETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 15
+
+
+ 145, 86
+
+
+ 37, 22
+
+
+ 12
+
+
+ TEXT2TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 16
+
+
+ 9, 86
+
+
+ 55, 22
+
+
+ 10
+
+
+ TEXT1TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 17
+
+
+ 309, 44
+
+
+ 67, 22
+
+
+ 8
+
+
+ FUNCTION2TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 18
+
+
+ 192, 44
+
+
+ 111, 22
+
+
+ 6
+
+
+ FUNCTION1TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 19
+
+
+ VBREPLACE
+
+
+ VBSPLIT
+
+
+ Regular Expression
+
+
+ 52, 44
+
+
+ 130, 21
+
+
+ 4
+
+
+ TYPEComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 21
+
+
+ 9, 44
+
+
+ 34, 22
+
+
+ 2
+
+
+ GUIDTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 23
+
317, 95
@@ -320,6 +3102,24 @@
rkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Neu hinzufügen
+
+
+ 44, 22
+
+
+ von {0}
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -332,6 +3132,15 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -343,6 +3152,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -352,6 +3170,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -361,6 +3209,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -372,12 +3229,268 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+ Magenta
+
+
+ 23, 22
+
+
+ Speichern
+
+
+ 3, 3
+
+
+ 625, 25
+
+
+ 0
+
+
+ BindingNavigator1
+
+
+ BindingNavigator1
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 24
+
+
+ MiddleLeft
+
+
+ 338, 42
+
+
+ 96, 23
+
+
+ 88
+
+
+ Teste RegEx
+
+
+ MiddleRight
+
+
+ False
+
+
+ btnRegexTest
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage4
+
+
+ 25
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 631, 245
+
+
+ 0
+
+
+ Nachbearbeitungs-Schritte für Suchpattern
+
+
+ TabPage4
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControlDetails
+
+
+ 1
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 212, 131
+
+
+ 152, 22
+
+
+ 91
+
+
+ ADDED_WHENTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 1
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 67, 131
+
+
+ 136, 22
+
+
+ 90
+
+
+ ADDED_WHOTextBox2
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 3
+
+
+ 212, 90
+
+
+ 346, 22
+
+
+ 89
+
+
+ CONTROL_VALUETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 5
+
+
+ 67, 90
+
+
+ 46, 22
+
+
+ 88
+
+
+ SEQUENCE_NUMBERTextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 7
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 9, 90
+
+
+ 49, 22
+
+
+ 87
+
+
+ GUIDTextBox3
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 9
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ 9, 37
+
+
+ 550, 28
+
+
+ 86
+
+
+ Bei Nicht-Eindeutigkeit des MainWindow-Namens und der Control-Sequence/-Reihenfolge muss
+zusätzlich eine Abhängigkeit zwischen dem Control-Inhalt und dem Windownamen geschaffen werden.
+
+
+ Label16
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 10
+
1194, 95
-
- 1194, 95
-
+
+ 137, 22
+
+
+ von {0} Control-Matches
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -390,6 +3503,15 @@
bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Löschen
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -401,6 +3523,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -410,6 +3541,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -419,6 +3580,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -430,9 +3600,1333 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+ 3, 3
+
+
+ 625, 25
+
+
+ 1
+
+
+ BindingNavigator3
+
+
+ BindingNavigator3
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage5
+
+
+ 11
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 631, 245
+
+
+ 1
+
+
+ Control-Match für Window
+
+
+ TabPage5
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControlDetails
+
+
+ 2
+
+
+ 261, 21
+
+
+ 639, 271
+
+
+ 1
+
+
+ TabControlDetails
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBoxPatterns
+
+
+ 3
+
+
+ 9, 37
+
+
+ 246, 108
+
+
+ 0
+
+
+ ListBoxPatterns
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBoxPatterns
+
+
+ 4
+
+
+ 8, 283
+
+
+ 920, 298
+
+
+ 37
+
+
+ Suchpatterns und Control-Matches:
+
+
+ GroupBoxPatterns
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPageUebersicht
+
+
+ 1
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 9, 110
+
+
+ 431, 24
+
+
+ 82
+
+
+ WINDOW_NAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 1
+
+
+ 479, 67
+
+
+ 31, 23
+
+
+ 81
+
+
+ ...
+
+
+ Button2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 2
+
+
+ Top, Right
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 446, 114
+
+
+ 164, 13
+
+
+ 80
+
+
+ Daten erfolgreich gespeichert!
+
+
+ False
+
+
+ lblSave
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 3
+
+
+ BottomCenter
+
+
+ 525, 12
+
+
+ 85, 38
+
+
+ 21
+
+
+ Speichern
+
+
+ TopCenter
+
+
+ btnsave
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 4
+
+
+ 313, 156
+
+
+ 158, 22
+
+
+ 13
+
+
+ CHANGED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 6
+
+
+ 174, 156
+
+
+ 130, 22
+
+
+ 11
+
+
+ CHANGED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 8
+
+
+ 102, 156
+
+
+ 52, 22
+
+
+ 9
+
+
+ HOTKEY2TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 10
+
+
+ Strg
+
+
+ Shift
+
+
+ Alt
+
+
+ Win
+
+
+ 9, 156
+
+
+ 77, 21
+
+
+ 7
+
+
+ HOTKEY1ComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 12
+
+
+ 9, 69
+
+
+ 462, 22
+
+
+ 5
+
+
+ WD_SEARCHTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 14
+
+
+ 67, 28
+
+
+ 404, 22
+
+
+ 3
+
+
+ NAMETextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 16
+
+
+ 9, 28
+
+
+ 49, 22
+
+
+ 1
+
+
+ GUIDTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage3
+
+
+ 18
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 631, 189
+
+
+ 2
+
+
+ Eigenschaften Hotkey-Profil:
+
+
+ TabPage3
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl1
+
+
+ 0
+
+
+ Top, Bottom, Left
+
941, 56
+
+ 162, 22
+
+
+ Alle auswählen
+
+
+ 162, 22
+
+
+ Keine auswählen
+
+
+ 163, 48
+
+
+ ContextMenuStrip1
+
+
+ System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 3, 6
+
+
+ 290, 174
+
+
+ 35
+
+
+ chklbUser
+
+
+ System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage1
+
+
+ 0
+
+
+ Segoe UI, 8.25pt
+
+
+ MiddleRight
+
+
+ 299, 6
+
+
+ 200, 36
+
+
+ 34
+
+
+ Gewählten Usern Profil zuweisen
+
+
+ MiddleLeft
+
+
+ btnUserAdd_Profile
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage1
+
+
+ 1
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 631, 189
+
+
+ 0
+
+
+ User zu Profil zuordnen
+
+
+ TabPage1
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl1
+
+
+ 1
+
+
+ MiddleLeft
+
+
+ 303, 6
+
+
+ 197, 26
+
+
+ 37
+
+
+ Userprofile löschen
+
+
+ MiddleRight
+
+
+ btndeleteUserProfile
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
+
+
+ 0
+
+
+ Top, Bottom, Left
+
+
+ 6, 6
+
+
+ 291, 174
+
+
+ 36
+
+
+ chklbUserProfile
+
+
+ System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage2
+
+
+ 1
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 631, 189
+
+
+ 1
+
+
+ Usern Profile entziehen
+
+
+ TabPage2
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl1
+
+
+ 2
+
+
+ 269, 62
+
+
+ 639, 215
+
+
+ 36
+
+
+ TabControl1
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPageUebersicht
+
+
+ 2
+
+
+ MiddleLeft
+
+
+ 269, 30
+
+
+ 197, 26
+
+
+ 20
+
+
+ Profil löschen (Global und User)
+
+
+ MiddleRight
+
+
+ btndelete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPageUebersicht
+
+
+ 3
+
+
+ Top, Bottom, Left, Right
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 15
+
+
+ 8, 30
+
+
+ 255, 244
+
+
+ 4
+
+
+ ListBox_Profiles
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPageUebersicht
+
+
+ 4
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 5, 12
+
+
+ 142, 15
+
+
+ 3
+
+
+ Aktuelle globale Hotkeys:
+
+
+ Label9
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPageUebersicht
+
+
+ 5
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 964, 587
+
+
+ 2
+
+
+ Übersicht Hot Key-Profile
+
+
+ TabPageUebersicht
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControlMain
+
+
+ 0
+
+
+ True
+
+
+ Bottom, Left, Right
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 942, 268
+
+
+ 0
+
+
+ Control-abhängige Konfiguration
+
+
+ TabPage7
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl2
+
+
+ 0
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold, Italic
+
+
+ NoControl
+
+
+ 126, 18
+
+
+ 491, 28
+
+
+ 83
+
+
+ strgC Ein bereits markierter Text wird kopiert und an das Pattern übegeben
+strA and strgC Zuerst wird der gesamte Text markiert und dann an das pattern übergeben.
+
+
+ Label20
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage8
+
+
+ 0
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ NoControl
+
+
+ 266, 73
+
+
+ 179, 13
+
+
+ 81
+
+
+ Pattern-Link erfolgreich angelegt
+
+
+ False
+
+
+ lblLinkCopyPaste
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage8
+
+
+ 1
+
+
+ Segoe UI, 8.25pt
+
+
+ MiddleRight
+
+
+ NoControl
+
+
+ 150, 67
+
+
+ 96, 24
+
+
+ 15
+
+
+ Hinzufügen
+
+
+ MiddleLeft
+
+
+ btnAddCopypasteConfig
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage8
+
+
+ 2
+
+
+ 9, 70
+
+
+ 135, 22
+
+
+ 3
+
+
+ txtcopypastePatter
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage8
+
+
+ 3
+
+
+ True
+
+
+ 6, 54
+
+
+ 138, 13
+
+
+ 2
+
+
+ Windream-Suche Pattern:
+
+
+ Label19
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage8
+
+
+ 4
+
+
+ True
+
+
+ 6, 9
+
+
+ 114, 13
+
+
+ 1
+
+
+ Grundfunktionalität:
+
+
+ Label18
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage8
+
+
+ 5
+
+
+ strgC
+
+
+ strA and strgC
+
+
+ 9, 25
+
+
+ 111, 21
+
+
+ 0
+
+
+ cmbCopyPasteFunction
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage8
+
+
+ 6
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 942, 268
+
+
+ 1
+
+
+ ODER 'Copy and Paste'
+
+
+ TabPage8
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControl2
+
+
+ 1
+
+
+ 6, 287
+
+
+ 950, 294
+
+
+ 17
+
+
+ TabControl2
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPage_Designer
+
+
+ 0
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 964, 587
+
+
+ 0
+
+
+ Hotkey-Profil definieren
+
+
+ TabPage_Designer
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControlMain
+
+
+ 1
+
+
+ Bottom, Left
+
+
+ True
+
+
+ Segoe UI, 9pt, style=Bold, Italic
+
+
+ 6, 555
+
+
+ 185, 19
+
+
+ 10
+
+
+ Nur gefüllte Felder anzeigen
+
+
+ chkboxshowfilledControlsOnly_Test
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 0
+
+
+ Top, Bottom, Left, Right
+
+
+ #
+
+
+ Control-ID:
+
+
+ 80
+
+
+ Gelesener Wert
+
+
+ 350
+
+
+ Segoe UI, 8.25pt, style=Italic
+
+
+ 6, 27
+
+
+ 414, 514
+
+
+ 82
+
+
+ ListViewControls_Test
+
+
+ System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox3
+
+
+ 1
+
+
+ Fill
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 538, 3
+
+
+ 423, 581
+
+
+ 17
+
+
+ Auslesbare Controls für gewähltes 'MainWindow'
+
+
+ GroupBox3
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPageTest
+
+
+ 0
+
+
+ Bottom, Left
+
+
+ Segoe UI, 8.25pt
+
+
+ MiddleLeft
+
+
+ 6, 552
+
+
+ 75, 23
+
+
+ 9
+
+
+ Refresh
+
+
+ MiddleRight
+
+
+ Button3
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 0
+
+
+ Top, Bottom, Left, Right
+
+
+ Segoe UI, 9pt, style=Italic
+
+
+ 15
+
+
+ 6, 27
+
+
+ 514, 514
+
+
+ 8
+
+
+ ListBox_MainWindows_Test
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 1
+
+
+ Left
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 3, 3
+
+
+ 535, 581
+
+
+ 16
+
+
+ Schritt 1 - Wählen Sie das 'MainWindow' zur Auswahl der Inhalte
+
+
+ GroupBox2
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabPageTest
+
+
+ 1
+
+
+ 4, 22
+
+
+ 3, 3, 3, 3
+
+
+ 964, 587
+
+
+ 1
+
+
+ Test - Auswerten Window-Handle
+
+
+ TabPageTest
+
+
+ System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TabControlMain
+
+
+ 2
+
+
+ Fill
+
+
+ 0, 0
+
+
+ 972, 613
+
+
+ 17
+
+
+ TabControlMain
+
+
+ System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
17, 56
@@ -451,12 +4945,24 @@
758, 95
-
- 1348, 95
-
17, 134
+
+ True
+
+
+ 67
+
+
+ 6, 13
+
+
+ 972, 635
+
+
+ Segoe UI, 8.25pt
+
AAABAAYAICAQAAEABADoAgAAZgAAABAQEAABAAQAKAEAAE4DAAAgIAAAAQAIAKgIAAB2BAAAEBAAAAEA
@@ -609,4 +5115,367 @@
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
+
+ HotKey - Administration
+
+
+ tslbl_Hotkeywindow
+
+
+ System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tslbl_HotkeySequence
+
+
+ System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ColumnHeader3
+
+
+ System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ControlID
+
+
+ System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ControlValue
+
+
+ System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBHOTKEY_PROFILEBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBHOTKEY_PROFILETableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_PROFILETableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBHOTKEY_PATTERNSTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_PATTERNSTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBHOTKEY_PATTERNSBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ OFDWindreamsuche
+
+
+ System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBHOTKEY_WINDOW_HOOKBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorCountItem1
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorDeleteItem1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveFirstItem1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMovePreviousItem1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator3
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorPositionItem1
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator4
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveNextItem1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveLastItem1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator5
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tsbtnsave_pattern
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBHOTKEY_PATTERNS_REWORKBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorAddNewItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorCountItem
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorDeleteItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveFirstItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMovePreviousItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorPositionItem
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveNextItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveLastItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel1
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton2
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton3
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton4
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripTextBox1
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton5
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripButton6
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripSeparator3
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ AlleAuswählenToolStripMenuItem
+
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ KeineAuswählenToolStripMenuItem
+
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ColumnHeader4
+
+
+ System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ColumnHeader1
+
+
+ System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ColumnHeader2
+
+
+ System.Windows.Forms.ColumnHeader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_USERBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_USERTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_USERTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBHOTKEY_USER_PROFILEBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBHOTKEY_USER_PROFILETableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_USER_PROFILETableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBHOTKEY_PATTERNS_REWORKTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_PATTERNS_REWORKTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBHOTKEY_WINDOW_HOOKTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_WINDOW_HOOKTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ ToolTipController1
+
+
+ DevExpress.Utils.ToolTipController, DevExpress.Utils.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ frmHotKey_Add
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmHotKey_Add.vb b/Global_Indexer/frmHotKey_Add.vb
index c658344..00ee3f8 100644
--- a/Global_Indexer/frmHotKey_Add.vb
+++ b/Global_Indexer/frmHotKey_Add.vb
@@ -719,6 +719,7 @@
GroupBoxMainWindow.Visible = False
GroupBox2_Controls.Visible = False
ListBox_FormTitles.Enabled = True
+ btnAddCopypasteConfig.Enabled = True
End Sub
Private Sub TEXT1TextBox_TextChanged(sender As Object, e As EventArgs) Handles TEXT1TextBox.TextChanged
@@ -746,4 +747,35 @@
Private Sub chklbUser_MouseLeave(sender As Object, e As EventArgs) Handles chklbUser.MouseLeave
ToolTipController1.HideHint()
End Sub
+
+ Private Sub btnAddCopypasteConfig_Click(sender As Object, e As EventArgs) Handles btnAddCopypasteConfig.Click
+ Try
+ lblLinkCopyPaste.Visible = False
+ If txtcopypastePatter.Text = "" Then
+ Exit Sub
+ End If
+ Dim sql As String = "select max(guid) from tbhotkey_Profile where upper(name) = Upper('" & txtProfilname.Text & "')"
+ Dim kopfid = ClassDatabase.Execute_Scalar(sql, MyConnectionString, True)
+ If IsDBNull(kopfid) Then
+ TBHOTKEY_PROFILETableAdapter.Insert(txtProfilname.Text, "COPYPASTE", txtWDSearch.Text, cmbFunktionstaste.Text, txtKey.Text.ToUpper, ListBox_FormTitles.SelectedItem, Environment.UserName)
+ Else
+ TBHOTKEY_PROFILETableAdapter.cmdUpdate(txtProfilname.Text, "COPYPASTE", txtWDSearch.Text, cmbFunktionstaste.Text, txtKey.Text.ToUpper, ListBox_FormTitles.SelectedItem, Environment.UserName, kopfid)
+ End If
+ lblSaveHotkey.Visible = True
+ sql = "select max(guid) from tbhotkey_Profile where upper(name) = Upper('" & txtProfilname.Text & "')"
+ Dim id = ClassDatabase.Execute_Scalar(sql, MyConnectionString, True)
+ If id > 0 Then
+ TBHOTKEY_PATTERNSTableAdapter.Insert(id, txtcopypastePatter.Text, cmbCopyPasteFunction.Text, Environment.UserName, txtControl.Text)
+ lblLinkCopyPaste.Text = "Pattern-Link " & cmbCopyPasteFunction.Text & " || " & txtcopypastePatter.Text & " erfolgreich angelegt"
+ lblLinkCopyPaste.Visible = True
+ btnAddCopypasteConfig.Enabled = False
+ End If
+ Catch ex As Exception
+ MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Error in CopyPaste Add Pattern or Profile:")
+ End Try
+ End Sub
+
+ Private Sub cmbCopyPasteFunction_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cmbCopyPasteFunction.SelectedIndexChanged
+
+ End Sub
End Class
\ No newline at end of file
diff --git a/Global_Indexer/frmHotkey_User.Designer.vb b/Global_Indexer/frmHotkey_User.Designer.vb
index adf6860..6d36005 100644
--- a/Global_Indexer/frmHotkey_User.Designer.vb
+++ b/Global_Indexer/frmHotkey_User.Designer.vb
@@ -24,12 +24,12 @@ Partial Class frmHotkey_User
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim WD_SEARCHLabel As System.Windows.Forms.Label
+ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmHotkey_User))
Dim HOTKEY2Label As System.Windows.Forms.Label
Dim ADDED_WHENLabel As System.Windows.Forms.Label
Dim CHANGED_WHOLabel As System.Windows.Forms.Label
Dim CHANGED_WHENLabel As System.Windows.Forms.Label
Dim HOTKEY1Label As System.Windows.Forms.Label
- Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmHotkey_User))
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
Me.Label1 = New System.Windows.Forms.Label()
Me.MyDataset = New Global_Indexer.MyDataset()
@@ -72,75 +72,43 @@ Partial Class frmHotkey_User
'
'WD_SEARCHLabel
'
- WD_SEARCHLabel.AutoSize = True
- WD_SEARCHLabel.Location = New System.Drawing.Point(6, 20)
+ resources.ApplyResources(WD_SEARCHLabel, "WD_SEARCHLabel")
WD_SEARCHLabel.Name = "WD_SEARCHLabel"
- WD_SEARCHLabel.Size = New System.Drawing.Size(96, 13)
- WD_SEARCHLabel.TabIndex = 6
- WD_SEARCHLabel.Text = "windream-Suche:"
'
'HOTKEY2Label
'
- HOTKEY2Label.AutoSize = True
- HOTKEY2Label.Location = New System.Drawing.Point(99, 61)
+ resources.ApplyResources(HOTKEY2Label, "HOTKEY2Label")
HOTKEY2Label.Name = "HOTKEY2Label"
- HOTKEY2Label.Size = New System.Drawing.Size(46, 13)
- HOTKEY2Label.TabIndex = 8
- HOTKEY2Label.Text = "Hotkey:"
'
'ADDED_WHENLabel
'
- ADDED_WHENLabel.AutoSize = True
- ADDED_WHENLabel.Location = New System.Drawing.Point(6, 99)
+ resources.ApplyResources(ADDED_WHENLabel, "ADDED_WHENLabel")
ADDED_WHENLabel.Name = "ADDED_WHENLabel"
- ADDED_WHENLabel.Size = New System.Drawing.Size(76, 13)
- ADDED_WHENLabel.TabIndex = 12
- ADDED_WHENLabel.Text = "Added when:"
'
'CHANGED_WHOLabel
'
- CHANGED_WHOLabel.AutoSize = True
- CHANGED_WHOLabel.Location = New System.Drawing.Point(146, 99)
+ resources.ApplyResources(CHANGED_WHOLabel, "CHANGED_WHOLabel")
CHANGED_WHOLabel.Name = "CHANGED_WHOLabel"
- CHANGED_WHOLabel.Size = New System.Drawing.Size(83, 13)
- CHANGED_WHOLabel.TabIndex = 14
- CHANGED_WHOLabel.Text = "Changed who:"
'
'CHANGED_WHENLabel
'
- CHANGED_WHENLabel.AutoSize = True
- CHANGED_WHENLabel.Location = New System.Drawing.Point(289, 99)
+ resources.ApplyResources(CHANGED_WHENLabel, "CHANGED_WHENLabel")
CHANGED_WHENLabel.Name = "CHANGED_WHENLabel"
- CHANGED_WHENLabel.Size = New System.Drawing.Size(89, 13)
- CHANGED_WHENLabel.TabIndex = 16
- CHANGED_WHENLabel.Text = "Changed when:"
'
'HOTKEY1Label
'
- HOTKEY1Label.AutoSize = True
- HOTKEY1Label.Location = New System.Drawing.Point(6, 61)
+ resources.ApplyResources(HOTKEY1Label, "HOTKEY1Label")
HOTKEY1Label.Name = "HOTKEY1Label"
- HOTKEY1Label.Size = New System.Drawing.Size(87, 13)
- HOTKEY1Label.TabIndex = 18
- HOTKEY1Label.Text = "Funktionstaste:"
'
'StatusStrip1
'
- Me.StatusStrip1.Location = New System.Drawing.Point(0, 520)
+ resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
Me.StatusStrip1.Name = "StatusStrip1"
- Me.StatusStrip1.Size = New System.Drawing.Size(754, 22)
- Me.StatusStrip1.TabIndex = 0
- Me.StatusStrip1.Text = "StatusStrip1"
'
'Label1
'
- Me.Label1.AutoSize = True
- Me.Label1.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label1.Location = New System.Drawing.Point(12, 9)
+ resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(142, 15)
- Me.Label1.TabIndex = 1
- Me.Label1.Text = "Aktuelle globale Hotkeys:"
'
'MyDataset
'
@@ -181,12 +149,9 @@ Partial Class frmHotkey_User
'
Me.ListBox1.DataSource = Me.TBHOTKEY_PROFILEBindingSource
Me.ListBox1.DisplayMember = "String"
- Me.ListBox1.Font = New System.Drawing.Font("Segoe UI Semibold", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ListBox1, "ListBox1")
Me.ListBox1.FormattingEnabled = True
- Me.ListBox1.Location = New System.Drawing.Point(15, 27)
Me.ListBox1.Name = "ListBox1"
- Me.ListBox1.Size = New System.Drawing.Size(298, 251)
- Me.ListBox1.TabIndex = 2
Me.ListBox1.ValueMember = "GUID"
'
'ListBoxMyHK
@@ -194,10 +159,8 @@ Partial Class frmHotkey_User
Me.ListBoxMyHK.DataSource = Me.TBMYHOTKEYSBindingSource
Me.ListBoxMyHK.DisplayMember = "String"
Me.ListBoxMyHK.FormattingEnabled = True
- Me.ListBoxMyHK.Location = New System.Drawing.Point(408, 27)
+ resources.ApplyResources(Me.ListBoxMyHK, "ListBoxMyHK")
Me.ListBoxMyHK.Name = "ListBoxMyHK"
- Me.ListBoxMyHK.Size = New System.Drawing.Size(338, 251)
- Me.ListBoxMyHK.TabIndex = 3
Me.ListBoxMyHK.ValueMember = "GUID"
'
'TBMYHOTKEYSBindingSource
@@ -207,13 +170,8 @@ Partial Class frmHotkey_User
'
'lblmeinehotkeys
'
- Me.lblmeinehotkeys.AutoSize = True
- Me.lblmeinehotkeys.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblmeinehotkeys.Location = New System.Drawing.Point(405, 9)
+ resources.ApplyResources(Me.lblmeinehotkeys, "lblmeinehotkeys")
Me.lblmeinehotkeys.Name = "lblmeinehotkeys"
- Me.lblmeinehotkeys.Size = New System.Drawing.Size(85, 15)
- Me.lblmeinehotkeys.TabIndex = 4
- Me.lblmeinehotkeys.Text = "Meine Hotkeys"
'
'TBMYHOTKEYSTableAdapter
'
@@ -222,13 +180,8 @@ Partial Class frmHotkey_User
'btnAddtomyHK
'
Me.btnAddtomyHK.Image = Global.Global_Indexer.My.Resources.Resources.arrow_Forward_16xMD
- Me.btnAddtomyHK.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
- Me.btnAddtomyHK.Location = New System.Drawing.Point(317, 72)
+ resources.ApplyResources(Me.btnAddtomyHK, "btnAddtomyHK")
Me.btnAddtomyHK.Name = "btnAddtomyHK"
- Me.btnAddtomyHK.Size = New System.Drawing.Size(85, 37)
- Me.btnAddtomyHK.TabIndex = 5
- Me.btnAddtomyHK.Text = "Hinzufügen"
- Me.btnAddtomyHK.TextAlign = System.Drawing.ContentAlignment.TopCenter
Me.btnAddtomyHK.UseVisualStyleBackColor = True
'
'TBHOTKEY_USER_PROFILEBindingSource
@@ -243,42 +196,32 @@ Partial Class frmHotkey_User
'WD_SEARCHTextBox
'
Me.WD_SEARCHTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_USER_PROFILEBindingSource, "WD_SEARCH", True))
- Me.WD_SEARCHTextBox.Location = New System.Drawing.Point(9, 36)
+ resources.ApplyResources(Me.WD_SEARCHTextBox, "WD_SEARCHTextBox")
Me.WD_SEARCHTextBox.Name = "WD_SEARCHTextBox"
- Me.WD_SEARCHTextBox.Size = New System.Drawing.Size(623, 22)
- Me.WD_SEARCHTextBox.TabIndex = 7
'
'HOTKEY2TextBox
'
Me.HOTKEY2TextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_USER_PROFILEBindingSource, "HOTKEY2", True))
- Me.HOTKEY2TextBox.Location = New System.Drawing.Point(102, 75)
+ resources.ApplyResources(Me.HOTKEY2TextBox, "HOTKEY2TextBox")
Me.HOTKEY2TextBox.Name = "HOTKEY2TextBox"
- Me.HOTKEY2TextBox.Size = New System.Drawing.Size(52, 22)
- Me.HOTKEY2TextBox.TabIndex = 9
'
'ADDED_WHENTextBox
'
Me.ADDED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_USER_PROFILEBindingSource, "ADDED_WHEN", True))
- Me.ADDED_WHENTextBox.Location = New System.Drawing.Point(9, 115)
+ resources.ApplyResources(Me.ADDED_WHENTextBox, "ADDED_WHENTextBox")
Me.ADDED_WHENTextBox.Name = "ADDED_WHENTextBox"
- Me.ADDED_WHENTextBox.Size = New System.Drawing.Size(131, 22)
- Me.ADDED_WHENTextBox.TabIndex = 13
'
'CHANGED_WHOTextBox
'
Me.CHANGED_WHOTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_USER_PROFILEBindingSource, "CHANGED_WHO", True))
- Me.CHANGED_WHOTextBox.Location = New System.Drawing.Point(149, 115)
+ resources.ApplyResources(Me.CHANGED_WHOTextBox, "CHANGED_WHOTextBox")
Me.CHANGED_WHOTextBox.Name = "CHANGED_WHOTextBox"
- Me.CHANGED_WHOTextBox.Size = New System.Drawing.Size(137, 22)
- Me.CHANGED_WHOTextBox.TabIndex = 15
'
'CHANGED_WHENTextBox
'
Me.CHANGED_WHENTextBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_USER_PROFILEBindingSource, "CHANGED_WHEN", True))
- Me.CHANGED_WHENTextBox.Location = New System.Drawing.Point(292, 115)
+ resources.ApplyResources(Me.CHANGED_WHENTextBox, "CHANGED_WHENTextBox")
Me.CHANGED_WHENTextBox.Name = "CHANGED_WHENTextBox"
- Me.CHANGED_WHENTextBox.Size = New System.Drawing.Size(123, 22)
- Me.CHANGED_WHENTextBox.TabIndex = 17
'
'GroupBox1
'
@@ -298,93 +241,62 @@ Partial Class frmHotkey_User
Me.GroupBox1.Controls.Add(Me.ADDED_WHENTextBox)
Me.GroupBox1.Controls.Add(ADDED_WHENLabel)
Me.GroupBox1.Controls.Add(Me.HOTKEY2TextBox)
- Me.GroupBox1.Location = New System.Drawing.Point(15, 284)
+ resources.ApplyResources(Me.GroupBox1, "GroupBox1")
Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Size = New System.Drawing.Size(731, 181)
- Me.GroupBox1.TabIndex = 18
Me.GroupBox1.TabStop = False
- Me.GroupBox1.Text = "Bearbeitung Hotkey:"
'
'chkbxMaximizeWS
'
- Me.chkbxMaximizeWS.AutoSize = True
+ 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.Location = New System.Drawing.Point(9, 143)
Me.chkbxMaximizeWS.Name = "chkbxMaximizeWS"
- Me.chkbxMaximizeWS.Size = New System.Drawing.Size(203, 17)
- Me.chkbxMaximizeWS.TabIndex = 81
- Me.chkbxMaximizeWS.Text = "windream-Suche maximiert starten"
Me.chkbxMaximizeWS.UseVisualStyleBackColor = True
'
'Button1
'
- Me.Button1.Location = New System.Drawing.Point(640, 36)
+ resources.ApplyResources(Me.Button1, "Button1")
Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(31, 23)
- Me.Button1.TabIndex = 80
- Me.Button1.Text = "..."
Me.Button1.UseVisualStyleBackColor = True
'
'lblSave
'
- Me.lblSave.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.lblSave.AutoSize = True
+ resources.ApplyResources(Me.lblSave, "lblSave")
Me.lblSave.BackColor = System.Drawing.Color.Yellow
- Me.lblSave.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSave.Location = New System.Drawing.Point(468, 118)
Me.lblSave.Name = "lblSave"
- Me.lblSave.Size = New System.Drawing.Size(164, 13)
- Me.lblSave.TabIndex = 79
- Me.lblSave.Text = "Daten erfolgreich gespeichert!"
- Me.lblSave.Visible = False
'
'btnsave
'
Me.btnsave.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
- Me.btnsave.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
- Me.btnsave.Location = New System.Drawing.Point(640, 99)
+ resources.ApplyResources(Me.btnsave, "btnsave")
Me.btnsave.Name = "btnsave"
- Me.btnsave.Size = New System.Drawing.Size(85, 38)
- Me.btnsave.TabIndex = 20
- Me.btnsave.Text = "Speichern"
- Me.btnsave.TextAlign = System.Drawing.ContentAlignment.TopCenter
Me.btnsave.UseVisualStyleBackColor = True
'
'HOTKEY1ComboBox
'
Me.HOTKEY1ComboBox.DataBindings.Add(New System.Windows.Forms.Binding("Text", Me.TBHOTKEY_USER_PROFILEBindingSource, "HOTKEY1", True))
Me.HOTKEY1ComboBox.FormattingEnabled = True
- Me.HOTKEY1ComboBox.Items.AddRange(New Object() {"Strg", "Shift", "Alt", "Win"})
- Me.HOTKEY1ComboBox.Location = New System.Drawing.Point(9, 75)
+ Me.HOTKEY1ComboBox.Items.AddRange(New Object() {resources.GetString("HOTKEY1ComboBox.Items"), resources.GetString("HOTKEY1ComboBox.Items1"), resources.GetString("HOTKEY1ComboBox.Items2"), resources.GetString("HOTKEY1ComboBox.Items3")})
+ resources.ApplyResources(Me.HOTKEY1ComboBox, "HOTKEY1ComboBox")
Me.HOTKEY1ComboBox.Name = "HOTKEY1ComboBox"
- Me.HOTKEY1ComboBox.Size = New System.Drawing.Size(70, 21)
- Me.HOTKEY1ComboBox.TabIndex = 19
'
'btndelete
'
Me.btndelete.Image = Global.Global_Indexer.My.Resources.Resources.delete_12x12
- Me.btndelete.ImageAlign = System.Drawing.ContentAlignment.BottomCenter
- Me.btndelete.Location = New System.Drawing.Point(317, 115)
+ resources.ApplyResources(Me.btndelete, "btndelete")
Me.btndelete.Name = "btndelete"
- Me.btndelete.Size = New System.Drawing.Size(85, 37)
- Me.btndelete.TabIndex = 19
- Me.btndelete.Text = "Löschen"
- Me.btndelete.TextAlign = System.Drawing.ContentAlignment.TopCenter
Me.btndelete.UseVisualStyleBackColor = True
'
'OFDWindreamsuche
'
- Me.OFDWindreamsuche.Filter = "windream-Suche|*.wdf|Alle Dateien|*.*"
+ resources.ApplyResources(Me.OFDWindreamsuche, "OFDWindreamsuche")
Me.OFDWindreamsuche.RestoreDirectory = True
- Me.OFDWindreamsuche.Title = "windream-Suche wählen"
'
'frmHotkey_User
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(754, 542)
Me.Controls.Add(Me.btndelete)
Me.Controls.Add(Me.GroupBox1)
Me.Controls.Add(Me.btnAddtomyHK)
@@ -393,10 +305,7 @@ Partial Class frmHotkey_User
Me.Controls.Add(Me.ListBox1)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.StatusStrip1)
- Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "frmHotkey_User"
- Me.Text = "Meine Hotkeys"
CType(Me.MyDataset, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBHOTKEY_PROFILEBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBMYHOTKEYSBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
diff --git a/Global_Indexer/frmHotkey_User.resx b/Global_Indexer/frmHotkey_User.resx
index 96a5ea7..1b35ffe 100644
--- a/Global_Indexer/frmHotkey_User.resx
+++ b/Global_Indexer/frmHotkey_User.resx
@@ -120,24 +120,242 @@
False
+
+
+ True
+
+
+
+ 6, 20
+
+
+ 96, 13
+
+
+ 6
+
+
+ windream-Suche:
+
+
+ WD_SEARCHLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 8
+
False
+
+ True
+
+
+ 99, 61
+
+
+ 46, 13
+
+
+ 8
+
+
+ Hotkey:
+
+
+ HOTKEY2Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 12
+
False
+
+ True
+
+
+ 6, 99
+
+
+ 76, 13
+
+
+ 12
+
+
+ Added when:
+
+
+ ADDED_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 14
+
False
+
+ True
+
+
+ 146, 99
+
+
+ 83, 13
+
+
+ 14
+
+
+ Changed who:
+
+
+ CHANGED_WHOLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 10
+
False
+
+ True
+
+
+ 289, 99
+
+
+ 89, 13
+
+
+ 16
+
+
+ Changed when:
+
+
+ CHANGED_WHENLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 6
+
False
+
+ True
+
+
+ 6, 61
+
+
+ 87, 13
+
+
+ 18
+
+
+ Funktionstaste:
+
+
+ HOTKEY1Label
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 7
+
17, 17
+
+ 0, 520
+
+
+ 754, 22
+
+
+ 0
+
+
+ StatusStrip1
+
+
+ StatusStrip1
+
+
+ System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 7
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 12, 9
+
+
+ 142, 15
+
+
+ 1
+
+
+ Aktuelle globale Hotkeys:
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 6
+
134, 17
@@ -150,22 +368,454 @@
716, 17
+
+ Segoe UI Semibold, 8.25pt, style=Bold, Italic
+
+
+ 15, 27
+
+
+ 298, 251
+
+
+ 2
+
+
+ ListBox1
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 5
+
889, 17
+
+ 408, 27
+
+
+ 338, 251
+
+
+ 3
+
+
+ ListBoxMyHK
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 405, 9
+
+
+ 85, 15
+
+
+ 4
+
+
+ Meine Hotkeys
+
+
+ lblmeinehotkeys
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
1102, 17
+
+ BottomCenter
+
+
+ 317, 72
+
+
+ 85, 37
+
+
+ 5
+
+
+ Hinzufügen
+
+
+ TopCenter
+
+
+ btnAddtomyHK
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
17, 56
290, 56
+
+ 9, 36
+
+
+ 623, 22
+
+
+ 7
+
+
+ WD_SEARCHTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 11
+
+
+ 102, 75
+
+
+ 52, 22
+
+
+ 9
+
+
+ HOTKEY2TextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 15
+
+
+ 9, 115
+
+
+ 131, 22
+
+
+ 13
+
+
+ ADDED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 13
+
+
+ 149, 115
+
+
+ 137, 22
+
+
+ 15
+
+
+ CHANGED_WHOTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 9
+
+
+ 292, 115
+
+
+ 123, 22
+
+
+ 17
+
+
+ CHANGED_WHENTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 5
+
+
+ True
+
+
+ 9, 143
+
+
+ 203, 17
+
+
+ 81
+
+
+ windream-Suche maximiert starten
+
+
+ chkbxMaximizeWS
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 0
+
+
+ 640, 36
+
+
+ 31, 23
+
+
+ 80
+
+
+ ...
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 1
+
+
+
+ Top, Right
+
+
+ True
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ 468, 118
+
+
+ 164, 13
+
+
+ 79
+
+
+ Daten erfolgreich gespeichert!
+
+
+ False
+
+
+ lblSave
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 2
+
+
+ BottomCenter
+
+
+ 640, 99
+
+
+ 85, 38
+
+
+ 20
+
+
+ Speichern
+
+
+ TopCenter
+
+
+ btnsave
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 3
+
+
+ Strg
+
+
+ Shift
+
+
+ Alt
+
+
+ Win
+
+
+ 9, 75
+
+
+ 70, 21
+
+
+ 19
+
+
+ HOTKEY1ComboBox
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 4
+
+
+ 15, 284
+
+
+ 731, 181
+
+
+ 18
+
+
+ Bearbeitung Hotkey:
+
+
+ GroupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ BottomCenter
+
+
+ 317, 115
+
+
+ 85, 37
+
+
+ 19
+
+
+ Löschen
+
+
+ TopCenter
+
+
+ btndelete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
557, 56
-
+
+ windream-Suche|*.wdf|Alle Dateien|*.*
+
+
+ windream-Suche wählen
+
+
+ True
+
+
+ 6, 13
+
+
+ 754, 542
+
+
+ Segoe UI, 8.25pt
+
AAABAAYAICAQAAEABADoAgAAZgAAABAQEAABAAQAKAEAAE4DAAAgIAAAAQAIAKgIAAB2BAAAEBAAAAEA
@@ -318,4 +968,67 @@
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
+
+ Meine Hotkeys
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBHOTKEY_PROFILEBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBHOTKEY_PROFILETableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_PROFILETableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBMYHOTKEYSBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBMYHOTKEYSTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBMYHOTKEYSTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBHOTKEY_USER_PROFILEBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBHOTKEY_USER_PROFILETableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_USER_PROFILETableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ OFDWindreamsuche
+
+
+ System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ frmHotkey_User
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmIndex.designer.vb b/Global_Indexer/frmIndex.designer.vb
index a489e7a..e61e15e 100644
--- a/Global_Indexer/frmIndex.designer.vb
+++ b/Global_Indexer/frmIndex.designer.vb
@@ -23,9 +23,11 @@ Partial Class frmIndex
_
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
+ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmIndex))
Me.Label1 = New System.Windows.Forms.Label()
Me.cmbDokumentart = New System.Windows.Forms.ComboBox()
Me.Panel1 = New System.Windows.Forms.Panel()
+ Me.CheckBox1 = New System.Windows.Forms.CheckBox()
Me.Button1 = New System.Windows.Forms.Button()
Me.ToolStrip1 = New System.Windows.Forms.ToolStrip()
Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton()
@@ -111,108 +113,78 @@ Partial Class frmIndex
'
'Label1
'
- Me.Label1.AutoSize = True
- Me.Label1.Location = New System.Drawing.Point(3, 25)
+ resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(208, 17)
- Me.Label1.TabIndex = 1
- Me.Label1.Text = "Bitte wählen Sie eine Dokumentart:"
'
'cmbDokumentart
'
- Me.cmbDokumentart.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
+ resources.ApplyResources(Me.cmbDokumentart, "cmbDokumentart")
Me.cmbDokumentart.DisplayMember = "DOKART_ID"
Me.cmbDokumentart.FormattingEnabled = True
- Me.cmbDokumentart.Location = New System.Drawing.Point(5, 44)
Me.cmbDokumentart.Name = "cmbDokumentart"
- Me.cmbDokumentart.Size = New System.Drawing.Size(376, 25)
- Me.cmbDokumentart.TabIndex = 2
Me.cmbDokumentart.ValueMember = "DOKART_ID"
'
'Panel1
'
Me.Panel1.BackColor = System.Drawing.SystemColors.ButtonHighlight
+ Me.Panel1.Controls.Add(Me.CheckBox1)
Me.Panel1.Controls.Add(Me.Button1)
Me.Panel1.Controls.Add(Me.ToolStrip1)
Me.Panel1.Controls.Add(Me.lblerror)
Me.Panel1.Controls.Add(Me.cmbDokumentart)
Me.Panel1.Controls.Add(Me.Label1)
- Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top
- Me.Panel1.Location = New System.Drawing.Point(0, 0)
- Me.Panel1.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
+ resources.ApplyResources(Me.Panel1, "Panel1")
Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(526, 110)
- Me.Panel1.TabIndex = 4
+ '
+ 'CheckBox1
+ '
+ resources.ApplyResources(Me.CheckBox1, "CheckBox1")
+ Me.CheckBox1.Checked = Global.Global_Indexer.My.MySettings.Default.DA_Vorauswahlaktiv
+ Me.CheckBox1.DataBindings.Add(New System.Windows.Forms.Binding("Checked", Global.Global_Indexer.My.MySettings.Default, "DA_Vorauswahlaktiv", True, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged))
+ Me.CheckBox1.Name = "CheckBox1"
+ Me.CheckBox1.UseVisualStyleBackColor = True
'
'Button1
'
- Me.Button1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.Button1.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.Button1, "Button1")
Me.Button1.Image = Global.Global_Indexer.My.Resources.Resources.cancel
- Me.Button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.Button1.Location = New System.Drawing.Point(387, 41)
Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(133, 30)
- Me.Button1.TabIndex = 11
- Me.Button1.Text = "Abbruch"
- Me.Button1.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.Button1.UseVisualStyleBackColor = True
'
'ToolStrip1
'
Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton1})
- Me.ToolStrip1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.ToolStrip1, "ToolStrip1")
Me.ToolStrip1.Name = "ToolStrip1"
- Me.ToolStrip1.Size = New System.Drawing.Size(526, 25)
- Me.ToolStrip1.TabIndex = 6
- Me.ToolStrip1.Text = "ToolStrip1"
'
'ToolStripButton1
'
Me.ToolStripButton1.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
Me.ToolStripButton1.BackColor = System.Drawing.SystemColors.ButtonHighlight
Me.ToolStripButton1.Image = Global.Global_Indexer.My.Resources.Resources.bullet_arrow_top
- Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripButton1, "ToolStripButton1")
Me.ToolStripButton1.Name = "ToolStripButton1"
- Me.ToolStripButton1.Size = New System.Drawing.Size(118, 22)
- Me.ToolStripButton1.Text = "Top Most = False"
'
'lblerror
'
- Me.lblerror.AutoSize = True
- Me.lblerror.Font = New System.Drawing.Font("Verdana", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblerror.Location = New System.Drawing.Point(4, 78)
- Me.lblerror.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
+ resources.ApplyResources(Me.lblerror, "lblerror")
Me.lblerror.Name = "lblerror"
- Me.lblerror.Size = New System.Drawing.Size(39, 16)
- Me.lblerror.TabIndex = 3
- Me.lblerror.Text = "Error"
- Me.lblerror.Visible = False
'
'StatusStrip1
'
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.lblhinweis, Me.tslblVorschau})
- Me.StatusStrip1.Location = New System.Drawing.Point(0, 510)
+ resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
Me.StatusStrip1.Name = "StatusStrip1"
- Me.StatusStrip1.Padding = New System.Windows.Forms.Padding(1, 0, 10, 0)
- Me.StatusStrip1.Size = New System.Drawing.Size(813, 22)
- Me.StatusStrip1.TabIndex = 6
- Me.StatusStrip1.Text = "StatusStrip1"
'
'lblhinweis
'
Me.lblhinweis.Name = "lblhinweis"
- Me.lblhinweis.Size = New System.Drawing.Size(0, 17)
- Me.lblhinweis.TextAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.lblhinweis.Visible = False
+ resources.ApplyResources(Me.lblhinweis, "lblhinweis")
'
'tslblVorschau
'
Me.tslblVorschau.Name = "tslblVorschau"
- Me.tslblVorschau.Size = New System.Drawing.Size(99, 17)
- Me.tslblVorschau.Text = "Vorschau ist aktiv"
- Me.tslblVorschau.Visible = False
+ resources.ApplyResources(Me.tslblVorschau, "tslblVorschau")
'
'Panel2
'
@@ -221,75 +193,39 @@ Partial Class frmIndex
Me.Panel2.Controls.Add(Me.Label2)
Me.Panel2.Controls.Add(Me.txtIndexfilepath)
Me.Panel2.Controls.Add(Me.btnOK)
- Me.Panel2.Dock = System.Windows.Forms.DockStyle.Bottom
- Me.Panel2.Location = New System.Drawing.Point(0, 373)
- Me.Panel2.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
+ resources.ApplyResources(Me.Panel2, "Panel2")
Me.Panel2.Name = "Panel2"
- Me.Panel2.Size = New System.Drawing.Size(526, 137)
- Me.Panel2.TabIndex = 7
'
'chkMultiIndexer
'
- Me.chkMultiIndexer.AutoSize = True
+ resources.ApplyResources(Me.chkMultiIndexer, "chkMultiIndexer")
Me.chkMultiIndexer.BackColor = System.Drawing.Color.Yellow
- Me.chkMultiIndexer.Font = New System.Drawing.Font("Verdana", 9.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.chkMultiIndexer.ForeColor = System.Drawing.Color.Maroon
- Me.chkMultiIndexer.Location = New System.Drawing.Point(3, 39)
Me.chkMultiIndexer.Name = "chkMultiIndexer"
- Me.chkMultiIndexer.Size = New System.Drawing.Size(520, 20)
- Me.chkMultiIndexer.TabIndex = 10
- Me.chkMultiIndexer.Text = "Multi-Indexing - Alle nachfolgenden Dateien (0) identisch indexieren"
Me.chkMultiIndexer.UseVisualStyleBackColor = False
'
'chkdelete_origin
'
- Me.chkdelete_origin.AutoSize = True
- Me.chkdelete_origin.Font = New System.Drawing.Font("Verdana", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.chkdelete_origin.Location = New System.Drawing.Point(3, 13)
- Me.chkdelete_origin.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
+ resources.ApplyResources(Me.chkdelete_origin, "chkdelete_origin")
Me.chkdelete_origin.Name = "chkdelete_origin"
- Me.chkdelete_origin.Size = New System.Drawing.Size(176, 20)
- Me.chkdelete_origin.TabIndex = 3
- Me.chkdelete_origin.Text = "Lösche Ursprungsdatei"
Me.chkdelete_origin.UseVisualStyleBackColor = True
'
'Label2
'
- Me.Label2.AutoSize = True
- Me.Label2.Font = New System.Drawing.Font("Verdana", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label2.Location = New System.Drawing.Point(2, 84)
- Me.Label2.Margin = New System.Windows.Forms.Padding(2, 0, 2, 0)
+ resources.ApplyResources(Me.Label2, "Label2")
Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(92, 13)
- Me.Label2.TabIndex = 2
- Me.Label2.Text = "Aktuelle Datei;"
'
'txtIndexfilepath
'
- Me.txtIndexfilepath.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.txtIndexfilepath.Font = New System.Drawing.Font("Verdana", 6.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtIndexfilepath.Location = New System.Drawing.Point(2, 100)
- Me.txtIndexfilepath.Margin = New System.Windows.Forms.Padding(2, 3, 2, 3)
- Me.txtIndexfilepath.Multiline = True
+ resources.ApplyResources(Me.txtIndexfilepath, "txtIndexfilepath")
Me.txtIndexfilepath.Name = "txtIndexfilepath"
Me.txtIndexfilepath.ReadOnly = True
- Me.txtIndexfilepath.Size = New System.Drawing.Size(519, 34)
- Me.txtIndexfilepath.TabIndex = 1
'
'btnOK
'
- Me.btnOK.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.btnOK.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnOK, "btnOK")
Me.btnOK.Image = Global.Global_Indexer.My.Resources.Resources.Go
- Me.btnOK.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnOK.Location = New System.Drawing.Point(354, 6)
- Me.btnOK.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.btnOK.Name = "btnOK"
- Me.btnOK.Size = New System.Drawing.Size(167, 30)
- Me.btnOK.TabIndex = 0
- Me.btnOK.Text = "Indexiere Datei"
- Me.btnOK.TextAlign = System.Drawing.ContentAlignment.MiddleRight
'
'MyDataset
'
@@ -338,8 +274,7 @@ Partial Class frmIndex
'
'SplitContainer1
'
- Me.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.SplitContainer1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.SplitContainer1, "SplitContainer1")
Me.SplitContainer1.Name = "SplitContainer1"
'
'SplitContainer1.Panel1
@@ -353,130 +288,90 @@ Partial Class frmIndex
Me.SplitContainer1.Panel2.Controls.Add(Me.grpbxMailBody)
Me.SplitContainer1.Panel2.Controls.Add(Me.grpBetreff)
Me.SplitContainer1.Panel2.Controls.Add(Me.pnlPDF)
- Me.SplitContainer1.Size = New System.Drawing.Size(813, 510)
- Me.SplitContainer1.SplitterDistance = 526
- Me.SplitContainer1.TabIndex = 8
'
'pnlIndex
'
Me.pnlIndex.BackColor = System.Drawing.SystemColors.ControlLight
- Me.pnlIndex.Dock = System.Windows.Forms.DockStyle.Fill
- Me.pnlIndex.Location = New System.Drawing.Point(0, 110)
+ resources.ApplyResources(Me.pnlIndex, "pnlIndex")
Me.pnlIndex.Name = "pnlIndex"
- Me.pnlIndex.Size = New System.Drawing.Size(526, 263)
- Me.pnlIndex.TabIndex = 8
- Me.pnlIndex.Visible = False
'
'grpbxMailBody
'
Me.grpbxMailBody.Controls.Add(Me.WebBrowser)
Me.grpbxMailBody.Controls.Add(Me.StatusStrip3)
- Me.grpbxMailBody.Font = New System.Drawing.Font("Segoe UI Semibold", 9.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.grpbxMailBody.Location = New System.Drawing.Point(58, 352)
+ resources.ApplyResources(Me.grpbxMailBody, "grpbxMailBody")
Me.grpbxMailBody.Name = "grpbxMailBody"
- Me.grpbxMailBody.Size = New System.Drawing.Size(200, 100)
- Me.grpbxMailBody.TabIndex = 5
Me.grpbxMailBody.TabStop = False
- Me.grpbxMailBody.Text = "Mail-Body:"
'
'WebBrowser
'
- Me.WebBrowser.Dock = System.Windows.Forms.DockStyle.Fill
- Me.WebBrowser.Location = New System.Drawing.Point(3, 21)
- Me.WebBrowser.MinimumSize = New System.Drawing.Size(20, 20)
+ resources.ApplyResources(Me.WebBrowser, "WebBrowser")
Me.WebBrowser.Name = "WebBrowser"
- Me.WebBrowser.Size = New System.Drawing.Size(194, 54)
- Me.WebBrowser.TabIndex = 2
'
'StatusStrip3
'
Me.StatusStrip3.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblWebbrowser})
- Me.StatusStrip3.Location = New System.Drawing.Point(3, 75)
+ resources.ApplyResources(Me.StatusStrip3, "StatusStrip3")
Me.StatusStrip3.Name = "StatusStrip3"
- Me.StatusStrip3.Size = New System.Drawing.Size(194, 22)
- Me.StatusStrip3.TabIndex = 0
- Me.StatusStrip3.Text = "StatusStrip3"
'
'tslblWebbrowser
'
Me.tslblWebbrowser.Name = "tslblWebbrowser"
- Me.tslblWebbrowser.Size = New System.Drawing.Size(121, 17)
- Me.tslblWebbrowser.Text = "ToolStripStatusLabel1"
+ resources.ApplyResources(Me.tslblWebbrowser, "tslblWebbrowser")
'
'grpBetreff
'
Me.grpBetreff.Controls.Add(Me.txtBetreff)
- Me.grpBetreff.Font = New System.Drawing.Font("Segoe UI Semibold", 9.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.grpBetreff.Location = New System.Drawing.Point(20, 64)
+ resources.ApplyResources(Me.grpBetreff, "grpBetreff")
Me.grpBetreff.Name = "grpBetreff"
- Me.grpBetreff.Size = New System.Drawing.Size(200, 58)
- Me.grpBetreff.TabIndex = 4
Me.grpBetreff.TabStop = False
- Me.grpBetreff.Text = "Betreff"
'
'txtBetreff
'
Me.txtBetreff.BackColor = System.Drawing.SystemColors.Info
- Me.txtBetreff.Dock = System.Windows.Forms.DockStyle.Fill
- Me.txtBetreff.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtBetreff.Location = New System.Drawing.Point(3, 21)
+ resources.ApplyResources(Me.txtBetreff, "txtBetreff")
Me.txtBetreff.Name = "txtBetreff"
Me.txtBetreff.ReadOnly = True
- Me.txtBetreff.Size = New System.Drawing.Size(194, 25)
- Me.txtBetreff.TabIndex = 0
'
'pnlPDF
'
Me.pnlPDF.Controls.Add(Me.PdfViewer1)
Me.pnlPDF.Controls.Add(Me.StatusStrip2)
Me.pnlPDF.Controls.Add(Me.RibbonControl1)
- Me.pnlPDF.Location = New System.Drawing.Point(67, 25)
+ resources.ApplyResources(Me.pnlPDF, "pnlPDF")
Me.pnlPDF.Name = "pnlPDF"
- Me.pnlPDF.Size = New System.Drawing.Size(200, 308)
- Me.pnlPDF.TabIndex = 1
'
'PdfViewer1
'
- Me.PdfViewer1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.PdfViewer1.Location = New System.Drawing.Point(0, 141)
+ resources.ApplyResources(Me.PdfViewer1, "PdfViewer1")
Me.PdfViewer1.Name = "PdfViewer1"
- Me.PdfViewer1.Size = New System.Drawing.Size(200, 145)
- Me.PdfViewer1.TabIndex = 4
'
'StatusStrip2
'
Me.StatusStrip2.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.pdfstatuslblPageNumber, Me.ToolStripDropDownButton1})
- Me.StatusStrip2.Location = New System.Drawing.Point(0, 286)
+ resources.ApplyResources(Me.StatusStrip2, "StatusStrip2")
Me.StatusStrip2.Name = "StatusStrip2"
- Me.StatusStrip2.Size = New System.Drawing.Size(200, 22)
- Me.StatusStrip2.TabIndex = 3
- Me.StatusStrip2.Text = "StatusStrip2"
'
'pdfstatuslblPageNumber
'
- Me.pdfstatuslblPageNumber.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.pdfstatuslblPageNumber, "pdfstatuslblPageNumber")
Me.pdfstatuslblPageNumber.Image = Global.Global_Indexer.My.Resources.Resources.page_red
Me.pdfstatuslblPageNumber.Name = "pdfstatuslblPageNumber"
- Me.pdfstatuslblPageNumber.Size = New System.Drawing.Size(139, 17)
- Me.pdfstatuslblPageNumber.Text = "ToolStripStatusLabel1"
'
'ToolStripDropDownButton1
'
- Me.ToolStripDropDownButton1.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.ToolStripDropDownButton1, "ToolStripDropDownButton1")
Me.ToolStripDropDownButton1.Name = "ToolStripDropDownButton1"
- Me.ToolStripDropDownButton1.Size = New System.Drawing.Size(137, 19)
- Me.ToolStripDropDownButton1.Text = "Seitenansicht Minimal"
'
'RibbonControl1
'
Me.RibbonControl1.ExpandCollapseItem.Id = 0
Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.PdfFileOpenBarItem1, Me.PdfFileSaveAsBarItem1, Me.PdfFilePrintBarItem1, Me.PdfPreviousPageBarItem1, Me.PdfNextPageBarItem1, Me.PdfFindTextBarItem1, Me.PdfZoomOutBarItem1, Me.PdfZoomInBarItem1, Me.PdfExactZoomListBarSubItem1, Me.PdfZoom10CheckItem1, Me.PdfZoom25CheckItem1, Me.PdfZoom50CheckItem1, Me.PdfZoom75CheckItem1, Me.PdfZoom100CheckItem1, Me.PdfZoom125CheckItem1, Me.PdfZoom150CheckItem1, Me.PdfZoom200CheckItem1, Me.PdfZoom400CheckItem1, Me.PdfZoom500CheckItem1, Me.PdfSetActualSizeZoomModeCheckItem1, Me.PdfSetPageLevelZoomModeCheckItem1, Me.PdfSetFitWidthZoomModeCheckItem1, Me.PdfSetFitVisibleZoomModeCheckItem1})
- Me.RibbonControl1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
Me.RibbonControl1.MaxItemId = 24
Me.RibbonControl1.Name = "RibbonControl1"
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.PdfRibbonPage1})
Me.RibbonControl1.RibbonStyle = DevExpress.XtraBars.Ribbon.RibbonControlStyle.Office2010
- Me.RibbonControl1.Size = New System.Drawing.Size(200, 141)
Me.RibbonControl1.ToolbarLocation = DevExpress.XtraBars.Ribbon.RibbonQuickAccessToolbarLocation.Above
'
'PdfFileOpenBarItem1
@@ -655,19 +550,15 @@ Partial Class frmIndex
'
'frmIndex
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(813, 532)
Me.ControlBox = False
Me.Controls.Add(Me.SplitContainer1)
Me.Controls.Add(Me.StatusStrip1)
- Me.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmIndex"
- Me.Text = "Indexierung Drag 'n Drop File:"
Me.Panel1.ResumeLayout(False)
Me.Panel1.PerformLayout()
Me.ToolStrip1.ResumeLayout(False)
@@ -775,6 +666,7 @@ Partial Class frmIndex
Friend WithEvents txtBetreff As System.Windows.Forms.TextBox
Friend WithEvents grpbxMailBody As System.Windows.Forms.GroupBox
Friend WithEvents Button1 As System.Windows.Forms.Button
+ Friend WithEvents CheckBox1 As System.Windows.Forms.CheckBox
diff --git a/Global_Indexer/frmIndex.resx b/Global_Indexer/frmIndex.resx
index e9170d3..84f5e28 100644
--- a/Global_Indexer/frmIndex.resx
+++ b/Global_Indexer/frmIndex.resx
@@ -117,12 +117,474 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ True
+
+
+
+ 3, 25
+
+
+ 208, 17
+
+
+ 1
+
+
+ Bitte wählen Sie eine Dokumentart:
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 5
+
+
+
+ Top, Left, Right
+
+
+ 5, 44
+
+
+ 368, 25
+
+
+ 2
+
+
+ cmbDokumentart
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 4
+
+
+ Top, Right
+
+
+ True
+
+
+ MiddleRight
+
+
+ 249, 76
+
+
+ No
+
+
+ 124, 21
+
+
+ 12
+
+
+ Vorauswahl aktiv
+
+
+ CheckBox1
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 0
+
+
+ Bottom, Right
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ MiddleLeft
+
+
+ 379, 41
+
+
+ 133, 30
+
+
+ 11
+
+
+ Abbruch
+
+
+ MiddleRight
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 1
+
17, 212
+
+ Magenta
+
+
+ 118, 22
+
+
+ Top Most = False
+
+
+ 0, 0
+
+
+ 518, 25
+
+
+ 6
+
+
+ ToolStrip1
+
+
+ ToolStrip1
+
+
+ System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 2
+
+
+ True
+
+
+ Verdana, 9.75pt
+
+
+ 4, 78
+
+
+ 2, 0, 2, 0
+
+
+ 39, 16
+
+
+ 3
+
+
+ Error
+
+
+ False
+
+
+ lblerror
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 3
+
+
+ Top
+
+
+ 0, 0
+
+
+ 2, 3, 2, 3
+
+
+ 518, 110
+
+
+ 4
+
+
+ Panel1
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel1
+
+
+ 1
+
17, 17
+
+ 0, 17
+
+
+ MiddleLeft
+
+
+ False
+
+
+ 99, 17
+
+
+ Vorschau ist aktiv
+
+
+ False
+
+
+ 0, 510
+
+
+ 1, 0, 10, 0
+
+
+ 801, 22
+
+
+ 6
+
+
+ StatusStrip1
+
+
+ StatusStrip1
+
+
+ System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ True
+
+
+ Verdana, 9.75pt, style=Bold, Italic
+
+
+ 3, 39
+
+
+ 520, 20
+
+
+ 10
+
+
+ Multi-Indexing - Alle nachfolgenden Dateien (0) identisch indexieren
+
+
+ chkMultiIndexer
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel2
+
+
+ 0
+
+
+ True
+
+
+ Verdana, 9.75pt
+
+
+ 3, 13
+
+
+ 2, 3, 2, 3
+
+
+ 176, 20
+
+
+ 3
+
+
+ Lösche Ursprungsdatei
+
+
+ chkdelete_origin
+
+
+ System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel2
+
+
+ 1
+
+
+ True
+
+
+ Verdana, 8.25pt
+
+
+ 2, 84
+
+
+ 2, 0, 2, 0
+
+
+ 92, 13
+
+
+ 2
+
+
+ Aktuelle Datei;
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel2
+
+
+ 2
+
+
+ Top, Left, Right
+
+
+ Verdana, 6.75pt
+
+
+ 2, 100
+
+
+ 2, 3, 2, 3
+
+
+ True
+
+
+ 511, 34
+
+
+ 1
+
+
+ txtIndexfilepath
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel2
+
+
+ 3
+
+
+ Bottom, Right
+
+
+ Segoe UI, 9.75pt, style=Bold
+
+
+ MiddleLeft
+
+
+ 346, 6
+
+
+ 3, 4, 3, 4
+
+
+ 167, 30
+
+
+ 0
+
+
+ Indexiere Datei
+
+
+ MiddleRight
+
+
+ btnOK
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel2
+
+
+ 4
+
+
+ Bottom
+
+
+ 0, 373
+
+
+ 2, 3, 2, 3
+
+
+ 518, 137
+
+
+ 7
+
+
+ Panel2
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel1
+
+
+ 2
+
134, 17
@@ -141,19 +603,610 @@
17, 56
+
+ Fill
+
+
+ 0, 0
+
+
+ Fill
+
+
+ 0, 110
+
+
+ 518, 263
+
+
+ 8
+
+
+ False
+
+
+ pnlIndex
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel1
+
+
+ 0
+
+
+ SplitContainer1.Panel1
+
+
+ System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1
+
+
+ 0
+
+
+ Fill
+
+
+ 3, 21
+
+
+ 20, 20
+
+
+ 194, 54
+
+
+ 2
+
+
+ WebBrowser
+
+
+ System.Windows.Forms.WebBrowser, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grpbxMailBody
+
+
+ 0
+
1477, 173
+
+ 121, 17
+
+
+ ToolStripStatusLabel1
+
+
+ 3, 75
+
+
+ 194, 22
+
+
+ 0
+
+
+ StatusStrip3
+
+
+ StatusStrip3
+
+
+ System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grpbxMailBody
+
+
+ 1
+
+
+ Segoe UI Semibold, 9.75pt, style=Bold, Italic
+
+
+ 58, 352
+
+
+ 200, 100
+
+
+ 5
+
+
+ Mail-Body:
+
+
+ grpbxMailBody
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel2
+
+
+ 0
+
+
+ Fill
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 3, 21
+
+
+ 194, 25
+
+
+ 0
+
+
+ txtBetreff
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grpBetreff
+
+
+ 0
+
+
+ Segoe UI Semibold, 9.75pt, style=Bold, Italic
+
+
+ 20, 64
+
+
+ 200, 58
+
+
+ 4
+
+
+ Betreff
+
+
+ grpBetreff
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel2
+
+
+ 1
+
+
+ Fill
+
+
+ 0, 141
+
+
+ 200, 145
+
+
+ 4
+
+
+ PdfViewer1
+
+
+ DevExpress.XtraPdfViewer.PdfViewer, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ pnlPDF
+
+
+ 0
+
1212, 173
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 139, 17
+
+
+ ToolStripStatusLabel1
+
+
+ Magenta
+
+
+ 137, 19
+
+
+ Seitenansicht Minimal
+
+
+ 0, 286
+
+
+ 200, 22
+
+
+ 3
+
+
+ StatusStrip2
+
+
+ StatusStrip2
+
+
+ System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pnlPDF
+
+
+ 1
+
+
+ 0, 0
+
+
+ 200, 141
+
+
+ RibbonControl1
+
+
+ DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ pnlPDF
+
+
+ 2
+
+
+ 67, 25
+
+
+ 200, 308
+
+
+ 1
+
+
+ pnlPDF
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel2
+
+
+ 2
+
+
+ SplitContainer1.Panel2
+
+
+ System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1
+
+
+ 1
+
+
+ 801, 510
+
+
+ 518
+
+
+ 8
+
+
+ SplitContainer1
+
+
+ System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
244, 56
1329, 173
+
+ True
+
160
+
+ 7, 17
+
+
+ 801, 532
+
+
+ Segoe UI, 9.75pt
+
+
+ 3, 4, 3, 4
+
+
+ Indexierung Drag 'n Drop File:
+
+
+ ToolStripButton1
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ lblhinweis
+
+
+ System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tslblVorschau
+
+
+ System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ VWDDINDEX_MANBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ VWDDINDEX_MANTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.VWDDINDEX_MANTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ VWINDEX_AUTOMBindingSource1
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ VWINDEX_AUTOMTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.VWDDINDEX_AUTOMTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ tslblWebbrowser
+
+
+ System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ pdfstatuslblPageNumber
+
+
+ System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripDropDownButton1
+
+
+ System.Windows.Forms.ToolStripDropDownButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ PdfFileOpenBarItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfFileOpenBarItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfFileSaveAsBarItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfFileSaveAsBarItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfFilePrintBarItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfFilePrintBarItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfPreviousPageBarItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfPreviousPageBarItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfNextPageBarItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfNextPageBarItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfFindTextBarItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfFindTextBarItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoomOutBarItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoomOutBarItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoomInBarItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoomInBarItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfExactZoomListBarSubItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfExactZoomListBarSubItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom10CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom10CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom25CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom25CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom50CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom50CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom75CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom75CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom100CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom100CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom125CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom125CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom150CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom150CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom200CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom200CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom400CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom400CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoom500CheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoom500CheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfSetActualSizeZoomModeCheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfSetActualSizeZoomModeCheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfSetPageLevelZoomModeCheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfSetPageLevelZoomModeCheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfSetFitWidthZoomModeCheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfSetFitWidthZoomModeCheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfSetFitVisibleZoomModeCheckItem1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfSetFitVisibleZoomModeCheckItem, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfRibbonPage1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfRibbonPage, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfFileRibbonPageGroup1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfFileRibbonPageGroup, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfNavigationRibbonPageGroup1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfNavigationRibbonPageGroup, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfZoomRibbonPageGroup1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfZoomRibbonPageGroup, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfBarController1
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfBarController, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ PdfBarController2
+
+
+ DevExpress.XtraPdfViewer.Bars.PdfBarController, DevExpress.XtraPdfViewer.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ frmIndex
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmIndex.vb b/Global_Indexer/frmIndex.vb
index 62fc031..4eb284e 100644
--- a/Global_Indexer/frmIndex.vb
+++ b/Global_Indexer/frmIndex.vb
@@ -936,12 +936,15 @@ Public Class frmIndex
Dim preg As String = "\[%{1}[a-zA-Z0-9\!\$\&\/\(\)\=\?\,\.\-\;\:_öÖüÜäÄ\#\'\+\*\~\{\}\@\€\<\>\ ]+]{1}"
'schonmal den gesamten Pfad laden
Dim DATEINAME As String = Zielordner & "\" & DT.Rows(0).Item("NAMENKONVENTION")
-
+ NewFileString = DATEINAME
' einen Regulären Ausdruck laden
Dim regulärerAusdruck As System.Text.RegularExpressions.Regex = New System.Text.RegularExpressions.Regex(preg)
' die Vorkommen im SQL-String auslesen
Dim elemente As System.Text.RegularExpressions.MatchCollection = regulärerAusdruck.Matches(DATEINAME)
'####
+ If elemente.Count = 0 Then
+ ClassLogger.Add(" >> No RegularExpression Fileds on Nameconvention!", False)
+ End If
' alle Vorkommen innerhalbd er Namenkonvention durchlaufen
For Each element As System.Text.RegularExpressions.Match In elemente
Console.WriteLine(element.ToString)
@@ -1018,6 +1021,10 @@ Public Class frmIndex
datetemp = _day & "_" & _Month & "_" & My.Computer.Clock.LocalTime.Year
Case "OFilename"
DATEINAME = DATEINAME.Replace(element.Value, System.IO.Path.GetFileNameWithoutExtension(CURRENT_WORKFILE))
+ Case "Username"
+ DATEINAME = DATEINAME.Replace(element.Value, Environment.UserName)
+ Case "Usercode"
+ DATEINAME = DATEINAME.Replace(element.Value, CURRENT_USER_SHORT)
End Select
If datetemp <> "" Then
DATEINAME = DATEINAME.Replace(element.Value, datetemp)
@@ -1056,8 +1063,14 @@ Public Class frmIndex
If folder_Created = False Then
' Den Zielordner erstellen
If Directory.Exists(path) = False Then
- 'Try to create the directory.
- Directory.CreateDirectory(path)
+ Try
+ 'Try to create the directory.
+ Directory.CreateDirectory(path)
+ Catch ex As Exception
+ ClassLogger.Add("Unexpected Error in 'Name_Generieren' - Error: " & vbNewLine & ex.Message & vbNewLine & "Directory.CreateDirectory(" & path & ")", True)
+ MsgBox("Unexpected Error in 'Name_Generieren' - Error: " & vbNewLine & ex.Message & vbNewLine & "Directory.CreateDirectory(" & path & ")", MsgBoxStyle.Critical)
+ End Try
+
End If
folder_Created = True
End If
@@ -1156,7 +1169,7 @@ Public Class frmIndex
MsgBox("Error in SetEmailIndices - See log", MsgBoxStyle.Critical)
Return False
End If
- ElseIf DropType = "@ATTMNTEXTRACTED@" Then
+ ElseIf DropType = "@ATTMNTEXTRACTED@" Or DropType = "@OUTLOOK_ATTACHMENT@" Then
indexierung_erfolgreich = SetAttachmentIndices()
If indexierung_erfolgreich = False Then
MsgBox("Error in SetEmailIndices - See log", MsgBoxStyle.Critical)
@@ -1343,8 +1356,6 @@ Public Class frmIndex
Return False
End Try
-
-
End Function
Private Function SINGLEFILE_2_WINDREAM(_Objekttyp As String)
@@ -1416,6 +1427,7 @@ Public Class frmIndex
Try
ClassWindowLocation.SaveFormLocationSize(Me)
CloseUniversalViewer()
+ My.Settings.Save()
Catch ex As Exception
ClassLogger.Add(" - Fehler bei Schliessen des Formulares - Fehler: " & vbNewLine & ex.Message)
MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler bei Schliessen des Formulares:")
@@ -1447,7 +1459,6 @@ Public Class frmIndex
End Try
End If
- My.Settings.Save()
'If Not IsNothing(DocView) And viewer_string <> "" Then
' DocView.CloseView(viewer_string, 0)
@@ -1476,7 +1487,7 @@ Public Class frmIndex
ElseIf DropType = "@MSGONLY@" Then
Me.Text = "Indexierung der msg-Datei (ohne Anhang):"
- ElseIf DropType = "@ATTMNTEXTRACTED@" Then
+ ElseIf DropType = "@ATTMNTEXTRACTED@" Or DropType = "@OUTLOOK_ATTACHMENT@" Then
CURRENT_ISATTACHMENT = True
Me.Text = "Indexierung eines Email-Attachments:"
ElseIf DropType = "@FW_SIMPLEINDEXER@" Then
@@ -1535,6 +1546,11 @@ Public Class frmIndex
Refresh_Dokart()
Me.pnlIndex.Controls.Clear()
formloaded = True
+ If My.Settings.DA_Vorauswahlaktiv = True Then
+ If CURRENT_LASTDOKART <> "" Then
+ cmbDokumentart.SelectedIndex = cmbDokumentart.FindStringExact(CURRENT_LASTDOKART)
+ End If
+ End If
End Sub
Sub Refresh_Dokart()
Try
@@ -1545,9 +1561,6 @@ Public Class frmIndex
cmbDokumentart.AutoCompleteMode = AutoCompleteMode.Suggest
cmbDokumentart.AutoCompleteSource = AutoCompleteSource.ListItems
Me.cmbDokumentart.SelectedIndex = -1
- 'If CURRENT_LASTDOKART <> "" Then
- 'cmbDokumentart.SelectedIndex = cmbDokumentart.FindStringExact(CURRENT_LASTDOKART)
- 'End If
Catch ex As Exception
ClassLogger.Add(" - Fehler beim Laden der Dokumentarten - Fehler: " & vbNewLine & ex.Message)
MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler bei Laden der Dokumentarten:")
@@ -1734,6 +1747,11 @@ Public Class frmIndex
DEFAULTVALUE = owner
Case "$DateDDMMYYY".ToUpper
DEFAULTVALUE = System.DateTime.Now.ToShortDateString
+ Case "$Username"
+ DEFAULTVALUE = Environment.UserName
+ Case "$Usercode"
+ DEFAULTVALUE = CURRENT_USER_SHORT
+
End Select
If LogErrorsOnly = False Then ClassLogger.Add(" >> Ergebnis der Windowsvariable: '" & DEFAULTVALUE & "'", False)
Else
@@ -1915,7 +1933,7 @@ Public Class frmIndex
'Den Zielnamen zusammenbauen
If Name_Generieren() = True Then
If LogErrorsOnly = False Then ClassLogger.Add(" ...Name_Generieren durchlaufen", False)
- 'Dokumentenviewer ausblenden
+ 'Dokumentenviewer ausblenden um keinen Zugriffsfehler zu produzieren
CloseUniversalViewer()
If LogErrorsOnly = False Then ClassLogger.Add(" ...Viewer geschlossen", False)
'Die Datei verschieben
@@ -1925,17 +1943,23 @@ Public Class frmIndex
If DropType = "@DROPFROMFSYSTEM@" Then
If chkdelete_origin.Checked = True Then
'Die temporäre Datei löschen
- File.Delete(CURRENT_WORKFILE)
+ DeleteFile
End If
- ElseIf DropType = "@ATTMNTEXTRACTED@" Then
+ ElseIf DropType = "@ATTMNTEXTRACTED@" Or DropType = "@OUTLOOK_ATTACHMENT@" Then
'Die temporäre Datei löschen
- File.Delete(CURRENT_WORKFILE)
+ If CURRENT_WORKFILE.EndsWith("pdf") Then
+ Me.PdfViewer1.DocumentFilePath = ""
+ End If
+
+ DeleteFile()
ElseIf (DropType = "@OUTLOOK_MESSAGE@" Or DropType = "@FW_MSGONLY@" Or DropType = "@MSGONLY@") Then
'Die temporäre Datei löschen
- File.Delete(CURRENT_WORKFILE)
+ DeleteFile()
+
ElseIf DropType = "@FW_SIMPLEINDEXER@" Then
'Die temporäre Datei löschen
- File.Delete(CURRENT_WORKFILE)
+ DeleteFile()
+
End If
CURRENT_LASTDOKART = cmbDokumentart.Text
@@ -1964,6 +1988,13 @@ Public Class frmIndex
Return False
End Try
End Function
+ Sub DeleteFile()
+ Try
+ File.Delete(CURRENT_WORKFILE)
+ Catch ex As Exception
+ MsgBox("Unexpeted Error in Delete Current Workfile:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
+ End Try
+ End Sub
Private Sub OK_Button_Click(sender As Object, e As EventArgs) Handles btnOK.Click
lblhinweis.Visible = False
lblerror.Visible = False
@@ -2057,14 +2088,14 @@ Public Class frmIndex
Try
Insert_String = sql_history_INSERT_INTO & ",ADDED_WHO) VALUES ('" & CURRENT_WORKFILE & "','" & CURRENT_NEWFILENAME & "'" & sql_history_Index_Values & ",'" & Environment.UserDomainName & "\" & Environment.UserName & "')"
ClassDatabase.Execute_Scalar(Insert_String, MyConnectionString, True)
- If DropType.Contains("MSG") Or DropType = "@ATTMNTEXTRACTED@" Then
+ If DropType.Contains("MSG") Or DropType = "@ATTMNTEXTRACTED@" Or DropType = "@OUTLOOK_ATTACHMENT@" Then
If CURRENT_MESSAGEID <> "" Then
Dim max As String = "SELECT MAX(GUID) FROM TBGI_HISTORY"
Dim GUID = ClassDatabase.Execute_Scalar(max, MyConnectionString, True)
Try
If GUID > 0 Then
Dim sqlUpdate As String
- If DropType = "@ATTMNTEXTRACTED@" Then
+ If DropType = "@ATTMNTEXTRACTED@" Or DropType = "@OUTLOOK_ATTACHMENT@" Then
sqlUpdate = "Update TBGI_HISTORY SET ATTACHMENT = 1, MSG_ID = '" & CURRENT_MESSAGEID & "' WHERE GUID = " & GUID
ClassDatabase.Execute_non_Query(sqlUpdate, True)
Else
@@ -2319,4 +2350,12 @@ Public Class frmIndex
MULTIINDEXING_ACTIVE = False
End If
End Sub
+
+ Private Sub CheckBox1_CheckedChanged_1(sender As Object, e As EventArgs) Handles CheckBox1.CheckedChanged
+ If My.Settings.DA_Vorauswahlaktiv = True Then
+ CheckBox1.Text = "Vorauswahl Dokumentart aktivieren"
+ Else
+ CheckBox1.Text = "Vorauswahl Dokumentart inaktivieren"
+ End If
+ End Sub
End Class
diff --git a/Global_Indexer/frmIndexFileList.Designer.vb b/Global_Indexer/frmIndexFileList.Designer.vb
index 8779947..d327767 100644
--- a/Global_Indexer/frmIndexFileList.Designer.vb
+++ b/Global_Indexer/frmIndexFileList.Designer.vb
@@ -43,55 +43,32 @@ Partial Class frmIndexFileList
'Panel1
'
Me.Panel1.Controls.Add(Me.Label1)
- Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top
- Me.Panel1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.Panel1, "Panel1")
Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(648, 44)
- Me.Panel1.TabIndex = 0
'
'Label1
'
- Me.Label1.AutoSize = True
- Me.Label1.Location = New System.Drawing.Point(3, 9)
+ resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(440, 30)
- Me.Label1.TabIndex = 0
- Me.Label1.Text = "Folgende Dateien werden zur Indexierung angeboten! " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Sie haben nun Möglichkeit di" & _
- "e Indexierung für ausgewählte Dateien zu verhindern."
'
'btnstartIndex
'
- Me.btnstartIndex.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.btnstartIndex.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnstartIndex, "btnstartIndex")
Me.btnstartIndex.Image = Global.Global_Indexer.My.Resources.Resources.Go
- Me.btnstartIndex.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnstartIndex.Location = New System.Drawing.Point(491, 232)
Me.btnstartIndex.Name = "btnstartIndex"
- Me.btnstartIndex.Size = New System.Drawing.Size(145, 36)
- Me.btnstartIndex.TabIndex = 3
- Me.btnstartIndex.Text = "Starte Indexierung"
- Me.btnstartIndex.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnstartIndex.UseVisualStyleBackColor = True
'
'CheckedListBoxControl1
'
- Me.CheckedListBoxControl1.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.CheckedListBoxControl1.Appearance.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.CheckedListBoxControl1, "CheckedListBoxControl1")
+ Me.CheckedListBoxControl1.Appearance.Font = CType(resources.GetObject("CheckedListBoxControl1.Appearance.Font"), System.Drawing.Font)
Me.CheckedListBoxControl1.Appearance.Options.UseFont = True
- Me.CheckedListBoxControl1.Location = New System.Drawing.Point(6, 50)
Me.CheckedListBoxControl1.Name = "CheckedListBoxControl1"
- Me.CheckedListBoxControl1.Size = New System.Drawing.Size(630, 176)
- Me.CheckedListBoxControl1.TabIndex = 4
'
'Button1
'
- Me.Button1.Location = New System.Drawing.Point(6, 232)
+ resources.ApplyResources(Me.Button1, "Button1")
Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(115, 23)
- Me.Button1.TabIndex = 5
- Me.Button1.Text = "Alle auswählen"
Me.Button1.UseVisualStyleBackColor = True
'
'TBGI_FILES_USERBindingSource
@@ -132,30 +109,23 @@ Partial Class frmIndexFileList
'
'Button2
'
- Me.Button2.Location = New System.Drawing.Point(6, 259)
+ resources.ApplyResources(Me.Button2, "Button2")
Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(115, 23)
- Me.Button2.TabIndex = 6
- Me.Button2.Text = "Alle unselektieren"
Me.Button2.UseVisualStyleBackColor = True
'
'frmIndexFileList
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(648, 294)
Me.ControlBox = False
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.CheckedListBoxControl1)
Me.Controls.Add(Me.btnstartIndex)
Me.Controls.Add(Me.Panel1)
- Me.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmIndexFileList"
- Me.Text = "Zu indexierende Dateien:"
Me.TopMost = True
Me.Panel1.ResumeLayout(False)
Me.Panel1.PerformLayout()
diff --git a/Global_Indexer/frmIndexFileList.resx b/Global_Indexer/frmIndexFileList.resx
index 9c23638..eed216f 100644
--- a/Global_Indexer/frmIndexFileList.resx
+++ b/Global_Indexer/frmIndexFileList.resx
@@ -117,6 +117,148 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ True
+
+
+
+ 3, 9
+
+
+ 440, 30
+
+
+ 0
+
+
+ Folgende Dateien werden zur Indexierung angeboten!
+Sie haben nun Möglichkeit die Indexierung für ausgewählte Dateien zu verhindern.
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 0
+
+
+
+ Top
+
+
+ 0, 0
+
+
+ 648, 44
+
+
+ 0
+
+
+ Panel1
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
+
+ Bottom, Right
+
+
+ Segoe UI, 9pt, style=Bold
+
+
+ MiddleLeft
+
+
+ 491, 232
+
+
+ 145, 36
+
+
+ 3
+
+
+ Starte Indexierung
+
+
+ MiddleRight
+
+
+ btnstartIndex
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
+
+ Top, Bottom, Left, Right
+
+
+ Segoe UI, 8.25pt
+
+
+ 6, 50
+
+
+ 630, 176
+
+
+ 4
+
+
+ CheckedListBoxControl1
+
+
+ DevExpress.XtraEditors.CheckedListBoxControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ $this
+
+
+ 2
+
+
+ 6, 232
+
+
+ 115, 23
+
+
+ 5
+
+
+ Alle auswählen
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
134, 17
@@ -129,7 +271,42 @@
574, 17
-
+
+ 6, 259
+
+
+ 115, 23
+
+
+ 6
+
+
+ Alle unselektieren
+
+
+ Button2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 7, 15
+
+
+ 648, 294
+
+
+ Segoe UI, 9pt
+
AAABAAMAEBAQAAEABAAoAQAANgAAABAQAAABAAgAaAUAAF4BAAAQEAAAAQAgAGgEAADGBgAAKAAAABAA
@@ -182,4 +359,37 @@
AADAAAAAgAAAAAAAAAAAAAAAAAAAAAABAAAAAwAAAAcAAEL/AAD//wAA
+
+ Zu indexierende Dateien:
+
+
+ TBGI_FILES_USERBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ MyDataset1
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBGI_FILES_USERTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBGI_FILES_USERTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ frmIndexFileList
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmLicense.designer.vb b/Global_Indexer/frmLicense.designer.vb
index 0f3c3ad..b18d709 100644
--- a/Global_Indexer/frmLicense.designer.vb
+++ b/Global_Indexer/frmLicense.designer.vb
@@ -22,6 +22,7 @@ Partial Class frmLicense
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
_
Private Sub InitializeComponent()
+ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmLicense))
Me.btnPW_check = New System.Windows.Forms.Button()
Me.txtPW = New System.Windows.Forms.TextBox()
Me.lblPW = New System.Windows.Forms.Label()
@@ -45,31 +46,20 @@ Partial Class frmLicense
'
'btnPW_check
'
- Me.btnPW_check.Location = New System.Drawing.Point(318, 2)
- Me.btnPW_check.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
+ resources.ApplyResources(Me.btnPW_check, "btnPW_check")
Me.btnPW_check.Name = "btnPW_check"
- Me.btnPW_check.Size = New System.Drawing.Size(193, 32)
- Me.btnPW_check.TabIndex = 29
- Me.btnPW_check.Text = "Open License Manager"
Me.btnPW_check.UseVisualStyleBackColor = True
'
'txtPW
'
- Me.txtPW.Location = New System.Drawing.Point(120, 7)
- Me.txtPW.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
+ resources.ApplyResources(Me.txtPW, "txtPW")
Me.txtPW.Name = "txtPW"
- Me.txtPW.Size = New System.Drawing.Size(192, 23)
- Me.txtPW.TabIndex = 28
Me.txtPW.UseSystemPasswordChar = True
'
'lblPW
'
- Me.lblPW.AutoSize = True
- Me.lblPW.Location = New System.Drawing.Point(8, 10)
+ resources.ApplyResources(Me.lblPW, "lblPW")
Me.lblPW.Name = "lblPW"
- Me.lblPW.Size = New System.Drawing.Size(108, 16)
- Me.lblPW.TabIndex = 27
- Me.lblPW.Text = "Master Passwort:"
'
'grbBoxlicense
'
@@ -87,163 +77,96 @@ Partial Class frmLicense
Me.grbBoxlicense.Controls.Add(Me.txtNewlicences)
Me.grbBoxlicense.Controls.Add(Me.lblnewlicenses)
Me.grbBoxlicense.Controls.Add(Me.lblAktuelleLizenzen)
- Me.grbBoxlicense.Location = New System.Drawing.Point(11, 42)
- Me.grbBoxlicense.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
+ resources.ApplyResources(Me.grbBoxlicense, "grbBoxlicense")
Me.grbBoxlicense.Name = "grbBoxlicense"
- Me.grbBoxlicense.Padding = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.grbBoxlicense.Size = New System.Drawing.Size(520, 308)
- Me.grbBoxlicense.TabIndex = 26
Me.grbBoxlicense.TabStop = False
- Me.grbBoxlicense.Text = "Lizenzanzahl ändern (nur Administrator):"
- Me.grbBoxlicense.Visible = False
'
'Label3
'
- Me.Label3.AutoSize = True
- Me.Label3.Location = New System.Drawing.Point(325, 124)
+ resources.ApplyResources(Me.Label3, "Label3")
Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(65, 16)
- Me.Label3.TabIndex = 18
- Me.Label3.Text = "Gültigkeit:"
- Me.Label3.TextAlign = System.Drawing.ContentAlignment.TopRight
'
'dtpGueltig_HK
'
Me.dtpGueltig_HK.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
- Me.dtpGueltig_HK.Location = New System.Drawing.Point(396, 121)
+ resources.ApplyResources(Me.dtpGueltig_HK, "dtpGueltig_HK")
Me.dtpGueltig_HK.Name = "dtpGueltig_HK"
- Me.dtpGueltig_HK.Size = New System.Drawing.Size(104, 23)
- Me.dtpGueltig_HK.TabIndex = 17
Me.dtpGueltig_HK.Value = New Date(2099, 12, 31, 0, 0, 0, 0)
'
'Label5
'
- Me.Label5.AutoSize = True
- Me.Label5.Location = New System.Drawing.Point(325, 65)
+ resources.ApplyResources(Me.Label5, "Label5")
Me.Label5.Name = "Label5"
- Me.Label5.Size = New System.Drawing.Size(65, 16)
- Me.Label5.TabIndex = 16
- Me.Label5.Text = "Gültigkeit:"
- Me.Label5.TextAlign = System.Drawing.ContentAlignment.TopRight
'
'dtpGueltig_GI
'
Me.dtpGueltig_GI.Format = System.Windows.Forms.DateTimePickerFormat.[Short]
- Me.dtpGueltig_GI.Location = New System.Drawing.Point(396, 62)
+ resources.ApplyResources(Me.dtpGueltig_GI, "dtpGueltig_GI")
Me.dtpGueltig_GI.Name = "dtpGueltig_GI"
- Me.dtpGueltig_GI.Size = New System.Drawing.Size(104, 23)
- Me.dtpGueltig_GI.TabIndex = 15
Me.dtpGueltig_GI.Value = New Date(2099, 12, 31, 0, 0, 0, 0)
'
'txtHotKey
'
- Me.txtHotKey.Location = New System.Drawing.Point(194, 121)
- Me.txtHotKey.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
+ resources.ApplyResources(Me.txtHotKey, "txtHotKey")
Me.txtHotKey.Name = "txtHotKey"
- Me.txtHotKey.Size = New System.Drawing.Size(31, 23)
- Me.txtHotKey.TabIndex = 14
- Me.txtHotKey.Text = "0"
'
'Label4
'
- Me.Label4.AutoSize = True
- Me.Label4.Location = New System.Drawing.Point(7, 124)
+ resources.ApplyResources(Me.Label4, "Label4")
Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(136, 16)
- Me.Label4.TabIndex = 13
- Me.Label4.Text = "Anzahl HotKey-Option:"
'
'txtProfile
'
- Me.txtProfile.Location = New System.Drawing.Point(194, 91)
- Me.txtProfile.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
+ resources.ApplyResources(Me.txtProfile, "txtProfile")
Me.txtProfile.Name = "txtProfile"
- Me.txtProfile.Size = New System.Drawing.Size(31, 23)
- Me.txtProfile.TabIndex = 11
- Me.txtProfile.Text = "5"
'
'Label2
'
- Me.Label2.AutoSize = True
- Me.Label2.Location = New System.Drawing.Point(7, 94)
+ resources.ApplyResources(Me.Label2, "Label2")
Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(142, 16)
- Me.Label2.TabIndex = 10
- Me.Label2.Text = "Anzahl Dokumentarten:"
'
'txtlicensekey
'
- Me.txtlicensekey.Location = New System.Drawing.Point(10, 221)
- Me.txtlicensekey.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
- Me.txtlicensekey.Multiline = True
+ resources.ApplyResources(Me.txtlicensekey, "txtlicensekey")
Me.txtlicensekey.Name = "txtlicensekey"
- Me.txtlicensekey.Size = New System.Drawing.Size(490, 67)
- Me.txtlicensekey.TabIndex = 7
'
'lblReadKey
'
- Me.lblReadKey.AutoSize = True
- Me.lblReadKey.Location = New System.Drawing.Point(7, 201)
+ resources.ApplyResources(Me.lblReadKey, "lblReadKey")
Me.lblReadKey.Name = "lblReadKey"
- Me.lblReadKey.Size = New System.Drawing.Size(105, 16)
- Me.lblReadKey.TabIndex = 6
- Me.lblReadKey.Text = "Neuer Lizenzkey:"
'
'btnnewLicenses
'
Me.btnnewLicenses.Image = Global.Global_Indexer.My.Resources.Resources.key_go
- Me.btnnewLicenses.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnnewLicenses.Location = New System.Drawing.Point(359, 175)
- Me.btnnewLicenses.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
+ resources.ApplyResources(Me.btnnewLicenses, "btnnewLicenses")
Me.btnnewLicenses.Name = "btnnewLicenses"
- Me.btnnewLicenses.Size = New System.Drawing.Size(141, 38)
- Me.btnnewLicenses.TabIndex = 5
- Me.btnnewLicenses.Text = "Erzeuge Key"
- Me.btnnewLicenses.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnnewLicenses.UseVisualStyleBackColor = True
'
'txtNewlicences
'
- Me.txtNewlicences.Location = New System.Drawing.Point(194, 62)
- Me.txtNewlicences.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
+ resources.ApplyResources(Me.txtNewlicences, "txtNewlicences")
Me.txtNewlicences.Name = "txtNewlicences"
- Me.txtNewlicences.Size = New System.Drawing.Size(31, 23)
- Me.txtNewlicences.TabIndex = 4
- Me.txtNewlicences.Text = "1"
'
'lblnewlicenses
'
- Me.lblnewlicenses.AutoSize = True
- Me.lblnewlicenses.Location = New System.Drawing.Point(7, 65)
+ resources.ApplyResources(Me.lblnewlicenses, "lblnewlicenses")
Me.lblnewlicenses.Name = "lblnewlicenses"
- Me.lblnewlicenses.Size = New System.Drawing.Size(186, 16)
- Me.lblnewlicenses.TabIndex = 3
- Me.lblnewlicenses.Text = "Anzahl GlobalIndexer Lizenzen:"
'
'lblAktuelleLizenzen
'
- Me.lblAktuelleLizenzen.AutoSize = True
- Me.lblAktuelleLizenzen.Font = New System.Drawing.Font("Verdana", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblAktuelleLizenzen.Location = New System.Drawing.Point(7, 31)
+ resources.ApplyResources(Me.lblAktuelleLizenzen, "lblAktuelleLizenzen")
Me.lblAktuelleLizenzen.Name = "lblAktuelleLizenzen"
- Me.lblAktuelleLizenzen.Size = New System.Drawing.Size(65, 16)
- Me.lblAktuelleLizenzen.TabIndex = 2
- Me.lblAktuelleLizenzen.Text = "Label13"
'
'frmLicense
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 16.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(542, 363)
Me.Controls.Add(Me.btnPW_check)
Me.Controls.Add(Me.txtPW)
Me.Controls.Add(Me.lblPW)
Me.Controls.Add(Me.grbBoxlicense)
- Me.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.Name = "frmLicense"
- Me.Text = "Lizenzmanager"
Me.grbBoxlicense.ResumeLayout(False)
Me.grbBoxlicense.PerformLayout()
Me.ResumeLayout(False)
diff --git a/Global_Indexer/frmLicense.resx b/Global_Indexer/frmLicense.resx
index 1af7de1..77c2895 100644
--- a/Global_Indexer/frmLicense.resx
+++ b/Global_Indexer/frmLicense.resx
@@ -117,4 +117,523 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ 318, 2
+
+
+
+ 3, 4, 3, 4
+
+
+ 193, 32
+
+
+
+ 29
+
+
+ Open License Manager
+
+
+ btnPW_check
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ 120, 7
+
+
+ 3, 4, 3, 4
+
+
+ 192, 23
+
+
+ 28
+
+
+ txtPW
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ True
+
+
+ 8, 10
+
+
+ 108, 16
+
+
+ 27
+
+
+ Master Passwort:
+
+
+ lblPW
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ True
+
+
+ 325, 124
+
+
+ 65, 16
+
+
+ 18
+
+
+ Gültigkeit:
+
+
+ TopRight
+
+
+ Label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 0
+
+
+ 396, 121
+
+
+ 104, 23
+
+
+ 17
+
+
+ dtpGueltig_HK
+
+
+ System.Windows.Forms.DateTimePicker, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 1
+
+
+ True
+
+
+ 325, 65
+
+
+ 65, 16
+
+
+ 16
+
+
+ Gültigkeit:
+
+
+ TopRight
+
+
+ Label5
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 2
+
+
+ 396, 62
+
+
+ 104, 23
+
+
+ 15
+
+
+ dtpGueltig_GI
+
+
+ System.Windows.Forms.DateTimePicker, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 3
+
+
+ 194, 121
+
+
+ 3, 4, 3, 4
+
+
+ 31, 23
+
+
+ 14
+
+
+ 0
+
+
+ txtHotKey
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 4
+
+
+ True
+
+
+ 7, 124
+
+
+ 136, 16
+
+
+ 13
+
+
+ Anzahl HotKey-Option:
+
+
+ Label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 5
+
+
+ 194, 91
+
+
+ 3, 4, 3, 4
+
+
+ 31, 23
+
+
+ 11
+
+
+ 5
+
+
+ txtProfile
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 6
+
+
+ True
+
+
+ 7, 94
+
+
+ 142, 16
+
+
+ 10
+
+
+ Anzahl Dokumentarten:
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 7
+
+
+ 10, 221
+
+
+ 3, 4, 3, 4
+
+
+ True
+
+
+ 490, 67
+
+
+ 7
+
+
+ txtlicensekey
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 8
+
+
+ True
+
+
+ 7, 201
+
+
+ 105, 16
+
+
+ 6
+
+
+ Neuer Lizenzkey:
+
+
+ lblReadKey
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 9
+
+
+ MiddleLeft
+
+
+ 359, 175
+
+
+ 3, 4, 3, 4
+
+
+ 141, 38
+
+
+ 5
+
+
+ Erzeuge Key
+
+
+ MiddleRight
+
+
+ btnnewLicenses
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 10
+
+
+ 194, 62
+
+
+ 3, 4, 3, 4
+
+
+ 31, 23
+
+
+ 4
+
+
+ 1
+
+
+ txtNewlicences
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 11
+
+
+ True
+
+
+ 7, 65
+
+
+ 186, 16
+
+
+ 3
+
+
+ Anzahl GlobalIndexer Lizenzen:
+
+
+ lblnewlicenses
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 12
+
+
+ True
+
+
+ Verdana, 9.75pt, style=Bold
+
+
+ 7, 31
+
+
+ 65, 16
+
+
+ 2
+
+
+ Label13
+
+
+ lblAktuelleLizenzen
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ grbBoxlicense
+
+
+ 13
+
+
+ 11, 42
+
+
+ 3, 4, 3, 4
+
+
+ 3, 4, 3, 4
+
+
+ 520, 308
+
+
+ 26
+
+
+ Lizenzanzahl ändern (nur Administrator):
+
+
+ False
+
+
+ grbBoxlicense
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
+
+ True
+
+
+ 7, 16
+
+
+ 542, 363
+
+
+ Tahoma, 9.75pt
+
+
+ 3, 4, 3, 4
+
+
+ Lizenzmanager
+
+
+ frmLicense
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmNamenkonvention.designer.vb b/Global_Indexer/frmNamenkonvention.designer.vb
index d33c30c..56b5c97 100644
--- a/Global_Indexer/frmNamenkonvention.designer.vb
+++ b/Global_Indexer/frmNamenkonvention.designer.vb
@@ -50,7 +50,10 @@ Partial Class frmNamenkonvention
Me.TBDD_INDEX_AUTOMTableAdapter = New Global_Indexer.MyDatasetTableAdapters.TBDD_INDEX_AUTOMTableAdapter()
Me.cmbDate = New System.Windows.Forms.ComboBox()
Me.Label20 = New System.Windows.Forms.Label()
- Me.Button1 = New System.Windows.Forms.Button()
+ Me.btnAddDate = New System.Windows.Forms.Button()
+ Me.btnAddDivers = New System.Windows.Forms.Button()
+ Me.cmbdivers = New System.Windows.Forms.ComboBox()
+ Me.Label4 = New System.Windows.Forms.Label()
Me.GroupBox1.SuspendLayout()
CType(Me.TBDD_INDEX_AUTOMBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.MyDataset, System.ComponentModel.ISupportInitialize).BeginInit()
@@ -61,21 +64,13 @@ Partial Class frmNamenkonvention
'
'Label1
'
- Me.Label1.AutoSize = True
- Me.Label1.Location = New System.Drawing.Point(9, 20)
+ resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(438, 51)
- Me.Label1.TabIndex = 0
- Me.Label1.Text = "Definieren Sie hier die Namenskonvention zur ausgewählten Dokumentart." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Sie haben" & _
- " die Möglichkeit den Dateinamen aus den unten aufgeführten" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Indizes und Textbaus" & _
- "teinen zusammenzustellen."
'
'txtnamenKonv
'
- Me.txtnamenKonv.Location = New System.Drawing.Point(12, 74)
+ resources.ApplyResources(Me.txtnamenKonv, "txtnamenKonv")
Me.txtnamenKonv.Name = "txtnamenKonv"
- Me.txtnamenKonv.Size = New System.Drawing.Size(401, 25)
- Me.txtnamenKonv.TabIndex = 1
'
'GroupBox1
'
@@ -85,29 +80,20 @@ Partial Class frmNamenkonvention
Me.GroupBox1.Controls.Add(Me.cmbIndex_m)
Me.GroupBox1.Controls.Add(Me.Label3)
Me.GroupBox1.Controls.Add(Me.Label2)
- Me.GroupBox1.Location = New System.Drawing.Point(12, 114)
+ resources.ApplyResources(Me.GroupBox1, "GroupBox1")
Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Size = New System.Drawing.Size(237, 122)
- Me.GroupBox1.TabIndex = 2
Me.GroupBox1.TabStop = False
- Me.GroupBox1.Text = "Indexe zur Auswahl:"
'
'btnAddIndexA
'
- Me.btnAddIndexA.Image = CType(resources.GetObject("btnAddIndexA.Image"), System.Drawing.Image)
- Me.btnAddIndexA.Location = New System.Drawing.Point(187, 89)
+ resources.ApplyResources(Me.btnAddIndexA, "btnAddIndexA")
Me.btnAddIndexA.Name = "btnAddIndexA"
- Me.btnAddIndexA.Size = New System.Drawing.Size(30, 23)
- Me.btnAddIndexA.TabIndex = 5
Me.btnAddIndexA.UseVisualStyleBackColor = True
'
'btnAddIndexM
'
- Me.btnAddIndexM.Image = CType(resources.GetObject("btnAddIndexM.Image"), System.Drawing.Image)
- Me.btnAddIndexM.Location = New System.Drawing.Point(187, 41)
+ resources.ApplyResources(Me.btnAddIndexM, "btnAddIndexM")
Me.btnAddIndexM.Name = "btnAddIndexM"
- Me.btnAddIndexM.Size = New System.Drawing.Size(30, 23)
- Me.btnAddIndexM.TabIndex = 4
Me.btnAddIndexM.UseVisualStyleBackColor = True
'
'cmbIndex_A
@@ -115,10 +101,8 @@ Partial Class frmNamenkonvention
Me.cmbIndex_A.DataSource = Me.TBDD_INDEX_AUTOMBindingSource
Me.cmbIndex_A.DisplayMember = "INDEXNAME"
Me.cmbIndex_A.FormattingEnabled = True
- Me.cmbIndex_A.Location = New System.Drawing.Point(9, 89)
+ resources.ApplyResources(Me.cmbIndex_A, "cmbIndex_A")
Me.cmbIndex_A.Name = "cmbIndex_A"
- Me.cmbIndex_A.Size = New System.Drawing.Size(172, 25)
- Me.cmbIndex_A.TabIndex = 3
Me.cmbIndex_A.ValueMember = "GUID"
'
'TBDD_INDEX_AUTOMBindingSource
@@ -136,10 +120,8 @@ Partial Class frmNamenkonvention
Me.cmbIndex_m.DataSource = Me.TBDD_INDEX_MANBindingSource
Me.cmbIndex_m.DisplayMember = "NAME"
Me.cmbIndex_m.FormattingEnabled = True
- Me.cmbIndex_m.Location = New System.Drawing.Point(9, 41)
+ resources.ApplyResources(Me.cmbIndex_m, "cmbIndex_m")
Me.cmbIndex_m.Name = "cmbIndex_m"
- Me.cmbIndex_m.Size = New System.Drawing.Size(172, 25)
- Me.cmbIndex_m.TabIndex = 2
Me.cmbIndex_m.ValueMember = "GUID"
'
'TBDD_INDEX_MANBindingSource
@@ -149,21 +131,13 @@ Partial Class frmNamenkonvention
'
'Label3
'
- Me.Label3.AutoSize = True
- Me.Label3.Location = New System.Drawing.Point(6, 69)
+ resources.ApplyResources(Me.Label3, "Label3")
Me.Label3.Name = "Label3"
- Me.Label3.Size = New System.Drawing.Size(129, 17)
- Me.Label3.TabIndex = 1
- Me.Label3.Text = "Automatischer Index:"
'
'Label2
'
- Me.Label2.AutoSize = True
- Me.Label2.Location = New System.Drawing.Point(6, 21)
+ resources.ApplyResources(Me.Label2, "Label2")
Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(104, 17)
- Me.Label2.TabIndex = 0
- Me.Label2.Text = "Manueller Index:"
'
'GroupBox2
'
@@ -171,89 +145,53 @@ Partial Class frmNamenkonvention
Me.GroupBox2.Controls.Add(Me.btnVersionTZ)
Me.GroupBox2.Controls.Add(Me.btnTrennzeichen)
Me.GroupBox2.Controls.Add(Me.btnVersion)
- Me.GroupBox2.Location = New System.Drawing.Point(255, 114)
+ resources.ApplyResources(Me.GroupBox2, "GroupBox2")
Me.GroupBox2.Name = "GroupBox2"
- Me.GroupBox2.Size = New System.Drawing.Size(192, 183)
- Me.GroupBox2.TabIndex = 3
Me.GroupBox2.TabStop = False
- Me.GroupBox2.Text = "Variablen:"
'
'Button2
'
- Me.Button2.Image = CType(resources.GetObject("Button2.Image"), System.Drawing.Image)
- Me.Button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.Button2.Location = New System.Drawing.Point(6, 153)
+ resources.ApplyResources(Me.Button2, "Button2")
Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(163, 29)
- Me.Button2.TabIndex = 8
- Me.Button2.Text = "OriginalName"
- Me.Button2.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.Button2.UseVisualStyleBackColor = True
'
'btnVersionTZ
'
- Me.btnVersionTZ.Image = CType(resources.GetObject("btnVersionTZ.Image"), System.Drawing.Image)
- Me.btnVersionTZ.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnVersionTZ.Location = New System.Drawing.Point(6, 105)
+ resources.ApplyResources(Me.btnVersionTZ, "btnVersionTZ")
Me.btnVersionTZ.Name = "btnVersionTZ"
- Me.btnVersionTZ.Size = New System.Drawing.Size(163, 43)
- Me.btnVersionTZ.TabIndex = 7
- Me.btnVersionTZ.Text = "Versionstrennzeichen einfügen"
- Me.btnVersionTZ.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnVersionTZ.UseVisualStyleBackColor = True
'
'btnTrennzeichen
'
- Me.btnTrennzeichen.Image = CType(resources.GetObject("btnTrennzeichen.Image"), System.Drawing.Image)
- Me.btnTrennzeichen.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnTrennzeichen.Location = New System.Drawing.Point(6, 56)
+ resources.ApplyResources(Me.btnTrennzeichen, "btnTrennzeichen")
Me.btnTrennzeichen.Name = "btnTrennzeichen"
- Me.btnTrennzeichen.Size = New System.Drawing.Size(163, 43)
- Me.btnTrennzeichen.TabIndex = 6
- Me.btnTrennzeichen.Text = "Dateitrennzeichen einfügen"
- Me.btnTrennzeichen.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnTrennzeichen.UseVisualStyleBackColor = True
'
'btnVersion
'
- Me.btnVersion.Image = CType(resources.GetObject("btnVersion.Image"), System.Drawing.Image)
- Me.btnVersion.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnVersion.Location = New System.Drawing.Point(6, 21)
+ resources.ApplyResources(Me.btnVersion, "btnVersion")
Me.btnVersion.Name = "btnVersion"
- Me.btnVersion.Size = New System.Drawing.Size(163, 29)
- Me.btnVersion.TabIndex = 5
- Me.btnVersion.Text = "Versionstag einfügen"
- Me.btnVersion.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnVersion.UseVisualStyleBackColor = True
'
'btndelete
'
Me.btndelete.Image = Global.Global_Indexer.My.Resources.Resources.delete2
- Me.btndelete.Location = New System.Drawing.Point(419, 74)
+ resources.ApplyResources(Me.btndelete, "btndelete")
Me.btndelete.Name = "btndelete"
- Me.btndelete.Size = New System.Drawing.Size(28, 25)
- Me.btndelete.TabIndex = 4
Me.btndelete.UseVisualStyleBackColor = True
'
'btnOK
'
Me.btnOK.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
- Me.btnOK.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnOK.Location = New System.Drawing.Point(261, 303)
+ resources.ApplyResources(Me.btnOK, "btnOK")
Me.btnOK.Name = "btnOK"
- Me.btnOK.Size = New System.Drawing.Size(94, 36)
- Me.btnOK.TabIndex = 5
- Me.btnOK.Text = "Speichern"
- Me.btnOK.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnOK.UseVisualStyleBackColor = True
'
'btnclose
'
- Me.btnclose.Location = New System.Drawing.Point(361, 303)
+ Me.btnclose.Image = Global.Global_Indexer.My.Resources.Resources.Close_16xLG
+ resources.ApplyResources(Me.btnclose, "btnclose")
Me.btnclose.Name = "btnclose"
- Me.btnclose.Size = New System.Drawing.Size(86, 36)
- Me.btnclose.TabIndex = 6
- Me.btnclose.Text = "Abbruch"
Me.btnclose.UseVisualStyleBackColor = True
'
'TBKONFIGURATIONBindingSource
@@ -291,39 +229,49 @@ Partial Class frmNamenkonvention
'
'cmbDate
'
- Me.cmbDate.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbDate, "cmbDate")
Me.cmbDate.FormattingEnabled = True
- Me.cmbDate.Items.AddRange(New Object() {"YY_MM_DD", "YYYY_MM_DD", "DD_MM_YY", "DD_MM_YYYY"})
- Me.cmbDate.Location = New System.Drawing.Point(21, 267)
+ Me.cmbDate.Items.AddRange(New Object() {resources.GetString("cmbDate.Items"), resources.GetString("cmbDate.Items1"), resources.GetString("cmbDate.Items2"), resources.GetString("cmbDate.Items3")})
Me.cmbDate.Name = "cmbDate"
- Me.cmbDate.Size = New System.Drawing.Size(172, 23)
- Me.cmbDate.TabIndex = 8
'
'Label20
'
- Me.Label20.AutoSize = True
- Me.Label20.Location = New System.Drawing.Point(18, 249)
+ resources.ApplyResources(Me.Label20, "Label20")
Me.Label20.Name = "Label20"
- Me.Label20.Size = New System.Drawing.Size(99, 17)
- Me.Label20.TabIndex = 7
- Me.Label20.Text = "Datum-Struktur:"
'
- 'Button1
+ 'btnAddDate
'
- Me.Button1.Image = CType(resources.GetObject("Button1.Image"), System.Drawing.Image)
- Me.Button1.Location = New System.Drawing.Point(199, 265)
- Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(30, 23)
- Me.Button1.TabIndex = 9
- Me.Button1.UseVisualStyleBackColor = True
+ resources.ApplyResources(Me.btnAddDate, "btnAddDate")
+ Me.btnAddDate.Name = "btnAddDate"
+ Me.btnAddDate.UseVisualStyleBackColor = True
+ '
+ 'btnAddDivers
+ '
+ resources.ApplyResources(Me.btnAddDivers, "btnAddDivers")
+ Me.btnAddDivers.Name = "btnAddDivers"
+ Me.btnAddDivers.UseVisualStyleBackColor = True
+ '
+ 'cmbdivers
+ '
+ resources.ApplyResources(Me.cmbdivers, "cmbdivers")
+ Me.cmbdivers.FormattingEnabled = True
+ Me.cmbdivers.Items.AddRange(New Object() {resources.GetString("cmbdivers.Items"), resources.GetString("cmbdivers.Items1")})
+ Me.cmbdivers.Name = "cmbdivers"
+ '
+ 'Label4
+ '
+ resources.ApplyResources(Me.Label4, "Label4")
+ Me.Label4.Name = "Label4"
'
'frmNamenkonvention
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(467, 343)
Me.ControlBox = False
- Me.Controls.Add(Me.Button1)
+ Me.Controls.Add(Me.btnAddDivers)
+ Me.Controls.Add(Me.cmbdivers)
+ Me.Controls.Add(Me.Label4)
+ Me.Controls.Add(Me.btnAddDate)
Me.Controls.Add(Me.cmbDate)
Me.Controls.Add(Me.Label20)
Me.Controls.Add(Me.btnclose)
@@ -333,12 +281,8 @@ Partial Class frmNamenkonvention
Me.Controls.Add(Me.GroupBox1)
Me.Controls.Add(Me.txtnamenKonv)
Me.Controls.Add(Me.Label1)
- Me.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.Name = "frmNamenkonvention"
- Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
- Me.Text = "Assistent zur Namenskonvention:"
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox1.PerformLayout()
CType(Me.TBDD_INDEX_AUTOMBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
@@ -381,6 +325,9 @@ Partial Class frmNamenkonvention
Friend WithEvents TBDD_INDEX_AUTOMTableAdapter As Global_Indexer.MyDatasetTableAdapters.TBDD_INDEX_AUTOMTableAdapter
Friend WithEvents cmbDate As System.Windows.Forms.ComboBox
Friend WithEvents Label20 As System.Windows.Forms.Label
- Friend WithEvents Button1 As System.Windows.Forms.Button
+ Friend WithEvents btnAddDate As System.Windows.Forms.Button
Friend WithEvents Button2 As System.Windows.Forms.Button
+ Friend WithEvents btnAddDivers As System.Windows.Forms.Button
+ Friend WithEvents cmbdivers As System.Windows.Forms.ComboBox
+ Friend WithEvents Label4 As System.Windows.Forms.Label
End Class
diff --git a/Global_Indexer/frmNamenkonvention.resx b/Global_Indexer/frmNamenkonvention.resx
index d979770..4904680 100644
--- a/Global_Indexer/frmNamenkonvention.resx
+++ b/Global_Indexer/frmNamenkonvention.resx
@@ -117,64 +117,502 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ True
+
+
+ 9, 20
+
+
+ 438, 51
+
+
+ 0
+
+
+ Definieren Sie hier die Namenskonvention zur ausgewählten Dokumentart.
+Sie haben die Möglichkeit den Dateinamen aus den unten aufgeführten
+Indizes und Textbausteinen zusammenzustellen.
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 12
+
+
+ 12, 74
+
+
+ 401, 25
+
+
+ 1
+
+
+ txtnamenKonv
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 11
+
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAABcSURBVDhPzYxRCoAwDEN3tt7/PP2NWDrJaoRNYRh4H0uX
- 1wB8QpYrjA+Ku6OSp8iUwMwu9gjOT0wVMH1zE/DoiZ8LmDpi+mYQcJQgT5E9gkqeIlLwBlmuIMt50A4j
- RH5TZf96FwAAAABJRU5ErkJggg==
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
+ yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
+ TkSuQmCC
+
+ 187, 89
+
+
+ 30, 23
+
+
+ 5
+
+
+ btnAddIndexA
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 0
+
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAABcSURBVDhPzYxRCoAwDEN3tt7/PP2NWDrJaoRNYRh4H0uX
- 1wB8QpYrjA+Ku6OSp8iUwMwu9gjOT0wVMH1zE/DoiZ8LmDpi+mYQcJQgT5E9gkqeIlLwBlmuIMt50A4j
- RH5TZf96FwAAAABJRU5ErkJggg==
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
+ yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
+ TkSuQmCC
+
+ 187, 41
+
+
+ 30, 23
+
+
+ 4
+
+
+ btnAddIndexM
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 1
+
1004, 17
257, 17
+
+ 9, 89
+
+
+ 172, 25
+
+
+ 3
+
+
+ cmbIndex_A
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 2
+
367, 17
+
+ 9, 41
+
+
+ 172, 25
+
+
+ 2
+
+
+ cmbIndex_m
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 3
+
+
+ True
+
+
+ 6, 69
+
+
+ 129, 17
+
+
+ 1
+
+
+ Automatischer Index:
+
+
+ Label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 4
+
+
+ True
+
+
+ 6, 21
+
+
+ 104, 17
+
+
+ 0
+
+
+ Manueller Index:
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 5
+
+
+ 12, 114
+
+
+ 237, 122
+
+
+ 2
+
+
+ Indexe zur Auswahl:
+
+
+ GroupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 10
+
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAABcSURBVDhPzYxRCoAwDEN3tt7/PP2NWDrJaoRNYRh4H0uX
- 1wB8QpYrjA+Ku6OSp8iUwMwu9gjOT0wVMH1zE/DoiZ8LmDpi+mYQcJQgT5E9gkqeIlLwBlmuIMt50A4j
- RH5TZf96FwAAAABJRU5ErkJggg==
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
+ yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
+ TkSuQmCC
+
+ MiddleLeft
+
+
+ 6, 153
+
+
+ 163, 29
+
+
+ 8
+
+
+ OriginalName
+
+
+ MiddleRight
+
+
+ Button2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 0
+
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAABcSURBVDhPzYxRCoAwDEN3tt7/PP2NWDrJaoRNYRh4H0uX
- 1wB8QpYrjA+Ku6OSp8iUwMwu9gjOT0wVMH1zE/DoiZ8LmDpi+mYQcJQgT5E9gkqeIlLwBlmuIMt50A4j
- RH5TZf96FwAAAABJRU5ErkJggg==
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
+ yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
+ TkSuQmCC
+
+ MiddleLeft
+
+
+ 6, 105
+
+
+ 163, 43
+
+
+ 7
+
+
+ Versionstrennzeichen einfügen
+
+
+ MiddleRight
+
+
+ btnVersionTZ
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 1
+
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAABcSURBVDhPzYxRCoAwDEN3tt7/PP2NWDrJaoRNYRh4H0uX
- 1wB8QpYrjA+Ku6OSp8iUwMwu9gjOT0wVMH1zE/DoiZ8LmDpi+mYQcJQgT5E9gkqeIlLwBlmuIMt50A4j
- RH5TZf96FwAAAABJRU5ErkJggg==
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
+ yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
+ TkSuQmCC
+
+ MiddleLeft
+
+
+ 6, 56
+
+
+ 163, 43
+
+
+ 6
+
+
+ Dateitrennzeichen einfügen
+
+
+ MiddleRight
+
+
+ btnTrennzeichen
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 2
+
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAABcSURBVDhPzYxRCoAwDEN3tt7/PP2NWDrJaoRNYRh4H0uX
- 1wB8QpYrjA+Ku6OSp8iUwMwu9gjOT0wVMH1zE/DoiZ8LmDpi+mYQcJQgT5E9gkqeIlLwBlmuIMt50A4j
- RH5TZf96FwAAAABJRU5ErkJggg==
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
+ yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
+ TkSuQmCC
+
+ MiddleLeft
+
+
+ 6, 21
+
+
+ 163, 29
+
+
+ 5
+
+
+ Versionstag einfügen
+
+
+ MiddleRight
+
+
+ btnVersion
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox2
+
+
+ 3
+
+
+ 255, 114
+
+
+ 192, 183
+
+
+ 3
+
+
+ Variablen:
+
+
+ GroupBox2
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 9
+
+
+ 419, 74
+
+
+ 28, 25
+
+
+ 4
+
+
+ btndelete
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 8
+
+
+ MiddleLeft
+
+
+ 261, 303
+
+
+ 94, 36
+
+
+ 5
+
+
+ Speichern
+
+
+ MiddleRight
+
+
+ btnOK
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 7
+
+
+ MiddleLeft
+
+
+ 361, 303
+
+
+ 86, 36
+
+
+ 6
+
+
+ Abbruch
+
+
+ MiddleRight
+
+
+ btnclose
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 6
+
17, 17
@@ -187,12 +625,258 @@
1254, 17
-
+
+ Segoe UI, 9pt
+
+
+ YY_MM_DD
+
+
+ YYYY_MM_DD
+
+
+ DD_MM_YY
+
+
+ DD_MM_YYYY
+
+
+ 21, 259
+
+
+ 172, 23
+
+
+ 8
+
+
+ cmbDate
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
+
+ True
+
+
+ 18, 239
+
+
+ 99, 17
+
+
+ 7
+
+
+ Datum-Struktur:
+
+
+ Label20
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 5
+
+
- iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAABcSURBVDhPzYxRCoAwDEN3tt7/PP2NWDrJaoRNYRh4H0uX
- 1wB8QpYrjA+Ku6OSp8iUwMwu9gjOT0wVMH1zE/DoiZ8LmDpi+mYQcJQgT5E9gkqeIlLwBlmuIMt50A4j
- RH5TZf96FwAAAABJRU5ErkJggg==
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
+ yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
+ TkSuQmCC
+
+ 199, 257
+
+
+ 30, 23
+
+
+ 9
+
+
+ btnAddDate
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
+ xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
+ yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
+ TkSuQmCC
+
+
+
+
+ NoControl
+
+
+ 199, 306
+
+
+ 30, 23
+
+
+ 12
+
+
+ btnAddDivers
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ Segoe UI, 9pt
+
+
+ Username
+
+
+ Usercode
+
+
+ 21, 308
+
+
+ 172, 23
+
+
+ 11
+
+
+ cmbdivers
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ True
+
+
+ NoControl
+
+
+ 18, 288
+
+
+ 47, 17
+
+
+ 10
+
+
+ Divers:
+
+
+ Label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ True
+
+
+ 7, 17
+
+
+ 467, 343
+
+
+ Segoe UI, 9.75pt
+
+
+ 3, 4, 3, 4
+
+
+ CenterScreen
+
+
+ Assistent zur Namenskonvention:
+
+
+ TBDD_INDEX_AUTOMBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_INDEX_MANBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBKONFIGURATIONBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_INDEX_MANTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_INDEX_MANTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_INDEX_AUTOMTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_INDEX_AUTOMTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ frmNamenkonvention
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmNamenkonvention.vb b/Global_Indexer/frmNamenkonvention.vb
index 993dbbd..e9c44e5 100644
--- a/Global_Indexer/frmNamenkonvention.vb
+++ b/Global_Indexer/frmNamenkonvention.vb
@@ -84,7 +84,7 @@
Me.txtnamenKonv.SelectionStart = altePosition + VERSION_DELIMITER.Length
End Sub
- Private Sub Button1_Click_1(sender As Object, e As EventArgs) Handles Button1.Click
+ Private Sub Button1_Click_1(sender As Object, e As EventArgs) Handles btnAddDate.Click
If Not Me.cmbDate.Text = "" Then
'AREANLAGE-[%mARENR]-[%aKurzname]-I[%Version]
Dim text As String = "[%v" & Me.cmbDate.Text.ToString.ToUpper & "]"
@@ -101,7 +101,15 @@
Me.txtnamenKonv.Text = Me.txtnamenKonv.Text.Insert(altePosition, text)
Me.txtnamenKonv.SelectionStart = altePosition + text.Length
End If
-
+ End Sub
+ Private Sub btnAddDivers_Click(sender As Object, e As EventArgs) Handles btnAddDivers.Click
+ If Not Me.cmbdivers.Text = "" Then
+ 'AREANLAGE-[%mARENR]-[%aKurzname]-I[%Version]
+ Dim text As String = "[%v" & Me.cmbdivers.Text.ToString.ToUpper & "]"
+ Dim altePosition As Integer = Me.txtnamenKonv.SelectionStart()
+ Me.txtnamenKonv.Text = Me.txtnamenKonv.Text.Insert(altePosition, text)
+ Me.txtnamenKonv.SelectionStart = altePosition + text.Length
+ End If
End Sub
End Class
\ No newline at end of file
diff --git a/Global_Indexer/frmSQL-Result.Designer.vb b/Global_Indexer/frmSQL-Result.Designer.vb
index 919ba41..b291de0 100644
--- a/Global_Indexer/frmSQL-Result.Designer.vb
+++ b/Global_Indexer/frmSQL-Result.Designer.vb
@@ -37,8 +37,8 @@ Partial Class frmSQL_Result
Me.BindingNavigatorMoveLastItem = New System.Windows.Forms.ToolStripButton()
Me.BindingNavigatorSeparator2 = New System.Windows.Forms.ToolStripSeparator()
Me.Panel1 = New System.Windows.Forms.Panel()
- Me.Label1 = New System.Windows.Forms.Label()
Me.txtSQLCommand = New System.Windows.Forms.TextBox()
+ Me.Label1 = New System.Windows.Forms.Label()
Me.DataGridView1 = New System.Windows.Forms.DataGridView()
CType(Me.BindingNavigator1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.BindingNavigator1.SuspendLayout()
@@ -55,112 +55,80 @@ Partial Class frmSQL_Result
Me.BindingNavigator1.CountItemFormat = "von {0} Datensätzen"
Me.BindingNavigator1.DeleteItem = Nothing
Me.BindingNavigator1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2})
- Me.BindingNavigator1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.BindingNavigator1, "BindingNavigator1")
Me.BindingNavigator1.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
Me.BindingNavigator1.MoveLastItem = Me.BindingNavigatorMoveLastItem
Me.BindingNavigator1.MoveNextItem = Me.BindingNavigatorMoveNextItem
Me.BindingNavigator1.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
Me.BindingNavigator1.Name = "BindingNavigator1"
Me.BindingNavigator1.PositionItem = Me.BindingNavigatorPositionItem
- Me.BindingNavigator1.Size = New System.Drawing.Size(643, 25)
- Me.BindingNavigator1.TabIndex = 0
- Me.BindingNavigator1.Text = "BindingNavigator1"
'
'BindingNavigatorCountItem
'
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
- Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(111, 22)
- Me.BindingNavigatorCountItem.Text = "von {0} Datensätzen"
- Me.BindingNavigatorCountItem.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
'
'BindingNavigatorMoveFirstItem
'
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
- Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveFirstItem.Text = "Erste verschieben"
'
'BindingNavigatorMovePreviousItem
'
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
- Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMovePreviousItem.Text = "Vorherige verschieben"
'
'BindingNavigatorSeparator
'
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
- Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
'
'BindingNavigatorPositionItem
'
- Me.BindingNavigatorPositionItem.AccessibleName = "Position"
- Me.BindingNavigatorPositionItem.AutoSize = False
+ resources.ApplyResources(Me.BindingNavigatorPositionItem, "BindingNavigatorPositionItem")
Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
- Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
- Me.BindingNavigatorPositionItem.Text = "0"
- Me.BindingNavigatorPositionItem.ToolTipText = "Aktuelle Position"
'
'BindingNavigatorSeparator1
'
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
- Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
'
'BindingNavigatorMoveNextItem
'
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
- Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveNextItem.Text = "Nächste verschieben"
'
'BindingNavigatorMoveLastItem
'
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
- Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveLastItem.Text = "Letzte verschieben"
'
'BindingNavigatorSeparator2
'
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
- Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
'
'Panel1
'
Me.Panel1.Controls.Add(Me.txtSQLCommand)
Me.Panel1.Controls.Add(Me.Label1)
- Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top
- Me.Panel1.Location = New System.Drawing.Point(0, 25)
+ resources.ApplyResources(Me.Panel1, "Panel1")
Me.Panel1.Name = "Panel1"
- Me.Panel1.Size = New System.Drawing.Size(643, 100)
- Me.Panel1.TabIndex = 1
- '
- 'Label1
- '
- Me.Label1.AutoSize = True
- Me.Label1.Location = New System.Drawing.Point(3, 6)
- Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(85, 13)
- Me.Label1.TabIndex = 0
- Me.Label1.Text = "SQL-Command:"
'
'txtSQLCommand
'
- Me.txtSQLCommand.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtSQLCommand.Location = New System.Drawing.Point(3, 22)
- Me.txtSQLCommand.Multiline = True
+ resources.ApplyResources(Me.txtSQLCommand, "txtSQLCommand")
Me.txtSQLCommand.Name = "txtSQLCommand"
Me.txtSQLCommand.ReadOnly = True
- Me.txtSQLCommand.Size = New System.Drawing.Size(637, 75)
- Me.txtSQLCommand.TabIndex = 1
+ '
+ 'Label1
+ '
+ resources.ApplyResources(Me.Label1, "Label1")
+ Me.Label1.Name = "Label1"
'
'DataGridView1
'
@@ -169,27 +137,20 @@ Partial Class frmSQL_Result
DataGridViewCellStyle1.BackColor = System.Drawing.Color.Cyan
Me.DataGridView1.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
- Me.DataGridView1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.DataGridView1.Location = New System.Drawing.Point(0, 125)
+ resources.ApplyResources(Me.DataGridView1, "DataGridView1")
Me.DataGridView1.Name = "DataGridView1"
Me.DataGridView1.ReadOnly = True
- Me.DataGridView1.Size = New System.Drawing.Size(643, 331)
- Me.DataGridView1.TabIndex = 2
'
'frmSQL_Result
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(643, 456)
Me.Controls.Add(Me.DataGridView1)
Me.Controls.Add(Me.Panel1)
Me.Controls.Add(Me.BindingNavigator1)
- Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmSQL_Result"
- Me.Text = "Ergebnisanzeige für SQL"
CType(Me.BindingNavigator1, System.ComponentModel.ISupportInitialize).EndInit()
Me.BindingNavigator1.ResumeLayout(False)
Me.BindingNavigator1.PerformLayout()
diff --git a/Global_Indexer/frmSQL-Result.resx b/Global_Indexer/frmSQL-Result.resx
index e031ef0..5d838f1 100644
--- a/Global_Indexer/frmSQL-Result.resx
+++ b/Global_Indexer/frmSQL-Result.resx
@@ -124,6 +124,15 @@
171, 17
+
+ 111, 22
+
+
+ von {0} Datensätzen
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -135,6 +144,16 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -144,6 +163,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -153,6 +202,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -164,6 +222,157 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+ 0, 0
+
+
+ 643, 25
+
+
+ 0
+
+
+ BindingNavigator1
+
+
+ BindingNavigator1
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ Consolas, 8.25pt
+
+
+ 3, 22
+
+
+ True
+
+
+ 637, 75
+
+
+ 1
+
+
+ txtSQLCommand
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 0
+
+
+ True
+
+
+ 3, 6
+
+
+ 85, 13
+
+
+ 0
+
+
+ SQL-Command:
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Panel1
+
+
+ 1
+
+
+
+ Top
+
+
+ 0, 25
+
+
+ 643, 100
+
+
+ 1
+
+
+ Panel1
+
+
+ System.Windows.Forms.Panel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ Fill
+
+
+ 0, 125
+
+
+ 643, 331
+
+
+ 2
+
+
+ DataGridView1
+
+
+ System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 6, 13
+
+
+ 643, 456
+
+
+ Segoe UI, 8.25pt
+
AAABAAIAEBAQAAEABAAoAQAAJgAAABAQAAABAAgAaAUAAE4BAAAoAAAAEAAAACAAAAABAAQAAAAAAIAA
@@ -197,4 +406,73 @@
AACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAwAMAAPAPAAA=
+
+ Ergebnisanzeige für SQL
+
+
+ BindingSource1
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorCountItem
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveFirstItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMovePreviousItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorPositionItem
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveNextItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveLastItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ frmSQL_Result
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmSQLConfigAutoIndex.Designer.vb b/Global_Indexer/frmSQLConfigAutoIndex.Designer.vb
index 67285c9..4f70689 100644
--- a/Global_Indexer/frmSQLConfigAutoIndex.Designer.vb
+++ b/Global_Indexer/frmSQLConfigAutoIndex.Designer.vb
@@ -24,8 +24,9 @@ Partial Class SQLConfigAutoIndex
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim SQL_ERGEBNISLabel As System.Windows.Forms.Label
+ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(SQLConfigAutoIndex))
Dim Label3 As System.Windows.Forms.Label
- Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
+ Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Me.btnVorschlag = New System.Windows.Forms.Button()
Me.SQL_ERGEBNISTextBox = New System.Windows.Forms.TextBox()
Me.cmbConnection = New System.Windows.Forms.ComboBox()
@@ -68,55 +69,35 @@ Partial Class SQLConfigAutoIndex
'
'SQL_ERGEBNISLabel
'
- SQL_ERGEBNISLabel.AutoSize = True
- SQL_ERGEBNISLabel.Location = New System.Drawing.Point(12, 161)
+ resources.ApplyResources(SQL_ERGEBNISLabel, "SQL_ERGEBNISLabel")
SQL_ERGEBNISLabel.Name = "SQL_ERGEBNISLabel"
- SQL_ERGEBNISLabel.Size = New System.Drawing.Size(157, 13)
- SQL_ERGEBNISLabel.TabIndex = 50
- SQL_ERGEBNISLabel.Text = "SQL für automatischen Index:"
'
'Label3
'
- Label3.AutoSize = True
- Label3.Location = New System.Drawing.Point(9, 8)
+ resources.ApplyResources(Label3, "Label3")
Label3.Name = "Label3"
- Label3.Size = New System.Drawing.Size(93, 13)
- Label3.TabIndex = 87
- Label3.Text = "SQL-Connection:"
'
'btnVorschlag
'
Me.btnVorschlag.Image = Global.Global_Indexer.My.Resources.Resources.database_go
- Me.btnVorschlag.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnVorschlag.Location = New System.Drawing.Point(646, 177)
+ resources.ApplyResources(Me.btnVorschlag, "btnVorschlag")
Me.btnVorschlag.Name = "btnVorschlag"
- Me.btnVorschlag.Size = New System.Drawing.Size(177, 37)
- Me.btnVorschlag.TabIndex = 48
- Me.btnVorschlag.Text = "Teste SQL (BETA)"
- Me.btnVorschlag.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnVorschlag.UseVisualStyleBackColor = True
'
'SQL_ERGEBNISTextBox
'
Me.SQL_ERGEBNISTextBox.AcceptsReturn = True
Me.SQL_ERGEBNISTextBox.AcceptsTab = True
- Me.SQL_ERGEBNISTextBox.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.SQL_ERGEBNISTextBox.Location = New System.Drawing.Point(15, 177)
- Me.SQL_ERGEBNISTextBox.Multiline = True
+ resources.ApplyResources(Me.SQL_ERGEBNISTextBox, "SQL_ERGEBNISTextBox")
Me.SQL_ERGEBNISTextBox.Name = "SQL_ERGEBNISTextBox"
- Me.SQL_ERGEBNISTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both
- Me.SQL_ERGEBNISTextBox.Size = New System.Drawing.Size(616, 136)
- Me.SQL_ERGEBNISTextBox.TabIndex = 47
'
'cmbConnection
'
Me.cmbConnection.DataSource = Me.TBDD_CONNECTIONBindingSource
Me.cmbConnection.DisplayMember = "BEZEICHNUNG"
Me.cmbConnection.FormattingEnabled = True
- Me.cmbConnection.Location = New System.Drawing.Point(12, 24)
+ resources.ApplyResources(Me.cmbConnection, "cmbConnection")
Me.cmbConnection.Name = "cmbConnection"
- Me.cmbConnection.Size = New System.Drawing.Size(268, 21)
- Me.cmbConnection.TabIndex = 53
Me.cmbConnection.ValueMember = "GUID"
'
'TBDD_CONNECTIONBindingSource
@@ -157,58 +138,35 @@ Partial Class SQLConfigAutoIndex
'Button1
'
Me.Button1.Image = Global.Global_Indexer.My.Resources.Resources.database_connect
- Me.Button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.Button1.Location = New System.Drawing.Point(286, 17)
+ resources.ApplyResources(Me.Button1, "Button1")
Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(189, 32)
- Me.Button1.TabIndex = 54
- Me.Button1.Text = "Verwaltung SQL-Connections"
- Me.Button1.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.Button1.UseVisualStyleBackColor = True
'
'btnsave
'
- Me.btnsave.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnsave, "btnsave")
Me.btnsave.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
- Me.btnsave.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnsave.Location = New System.Drawing.Point(733, 282)
Me.btnsave.Name = "btnsave"
- Me.btnsave.Size = New System.Drawing.Size(90, 31)
- Me.btnsave.TabIndex = 55
- Me.btnsave.Text = "Speichern"
- Me.btnsave.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnsave.UseVisualStyleBackColor = True
'
'lblSave
'
- Me.lblSave.AutoSize = True
+ resources.ApplyResources(Me.lblSave, "lblSave")
Me.lblSave.BackColor = System.Drawing.Color.Yellow
- Me.lblSave.Font = New System.Drawing.Font("Segoe UI Semibold", 8.25!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSave.Location = New System.Drawing.Point(643, 217)
Me.lblSave.Name = "lblSave"
- Me.lblSave.Size = New System.Drawing.Size(180, 13)
- Me.lblSave.TabIndex = 79
- Me.lblSave.Text = "SQL-Daten erfolgreich gespeichert!"
- Me.lblSave.Visible = False
'
'Label1
'
- Me.Label1.AutoSize = True
- Me.Label1.Location = New System.Drawing.Point(12, 316)
+ resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(151, 13)
- Me.Label1.TabIndex = 80
- Me.Label1.Text = "Platzhalter manuelle Indexe:"
'
'cmbManualIDX
'
Me.cmbManualIDX.DataSource = Me.TBDD_INDEX_MANBindingSource
Me.cmbManualIDX.DisplayMember = "NAME"
Me.cmbManualIDX.FormattingEnabled = True
- Me.cmbManualIDX.Location = New System.Drawing.Point(15, 332)
+ resources.ApplyResources(Me.cmbManualIDX, "cmbManualIDX")
Me.cmbManualIDX.Name = "cmbManualIDX"
- Me.cmbManualIDX.Size = New System.Drawing.Size(171, 21)
- Me.cmbManualIDX.TabIndex = 81
Me.cmbManualIDX.ValueMember = "GUID"
'
'TBDD_INDEX_MANBindingSource
@@ -223,45 +181,35 @@ Partial Class SQLConfigAutoIndex
'btnaddManualIdx
'
Me.btnaddManualIdx.Image = Global.Global_Indexer.My.Resources.Resources.action_add_16xMD
- Me.btnaddManualIdx.Location = New System.Drawing.Point(192, 332)
+ resources.ApplyResources(Me.btnaddManualIdx, "btnaddManualIdx")
Me.btnaddManualIdx.Name = "btnaddManualIdx"
- Me.btnaddManualIdx.Size = New System.Drawing.Size(27, 21)
- Me.btnaddManualIdx.TabIndex = 82
Me.btnaddManualIdx.UseVisualStyleBackColor = True
'
'Label2
'
- Me.Label2.AutoSize = True
- Me.Label2.Font = New System.Drawing.Font("Segoe UI", 9.0!)
- Me.Label2.Location = New System.Drawing.Point(316, 316)
+ resources.ApplyResources(Me.Label2, "Label2")
Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(132, 15)
- Me.Label2.TabIndex = 84
- Me.Label2.Text = "Platzhalter Ersetzungen:"
'
'dgvPlaceholders
'
Me.dgvPlaceholders.AllowUserToAddRows = False
Me.dgvPlaceholders.AllowUserToDeleteRows = False
- DataGridViewCellStyle2.BackColor = System.Drawing.Color.Cyan
- Me.dgvPlaceholders.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2
+ DataGridViewCellStyle1.BackColor = System.Drawing.Color.Cyan
+ Me.dgvPlaceholders.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1
Me.dgvPlaceholders.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.dgvPlaceholders.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.colPlaceholder, Me.colReplace})
- Me.dgvPlaceholders.Enabled = False
- Me.dgvPlaceholders.Location = New System.Drawing.Point(319, 334)
+ resources.ApplyResources(Me.dgvPlaceholders, "dgvPlaceholders")
Me.dgvPlaceholders.Name = "dgvPlaceholders"
- Me.dgvPlaceholders.Size = New System.Drawing.Size(312, 132)
- Me.dgvPlaceholders.TabIndex = 83
'
'colPlaceholder
'
- Me.colPlaceholder.HeaderText = "Platzhalter"
+ resources.ApplyResources(Me.colPlaceholder, "colPlaceholder")
Me.colPlaceholder.Name = "colPlaceholder"
Me.colPlaceholder.ReadOnly = True
'
'colReplace
'
- Me.colReplace.HeaderText = "Ersetzung"
+ resources.ApplyResources(Me.colReplace, "colReplace")
Me.colReplace.Name = "colReplace"
'
'GroupBox4
@@ -277,132 +225,82 @@ Partial Class SQLConfigAutoIndex
Me.GroupBox4.Controls.Add(Me.cmbFromTables)
Me.GroupBox4.Controls.Add(Me.cmbWhereColumns)
Me.GroupBox4.Controls.Add(Me.Label8)
- Me.GroupBox4.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.GroupBox4.Location = New System.Drawing.Point(15, 51)
+ resources.ApplyResources(Me.GroupBox4, "GroupBox4")
Me.GroupBox4.Name = "GroupBox4"
- Me.GroupBox4.Size = New System.Drawing.Size(808, 107)
- Me.GroupBox4.TabIndex = 86
Me.GroupBox4.TabStop = False
- Me.GroupBox4.Text = "SQL-Befehl generieren (BETA)"
'
'radioView
'
- Me.radioView.AutoSize = True
- Me.radioView.Location = New System.Drawing.Point(241, 19)
+ resources.ApplyResources(Me.radioView, "radioView")
Me.radioView.Name = "radioView"
- Me.radioView.Size = New System.Drawing.Size(55, 17)
- Me.radioView.TabIndex = 25
- Me.radioView.Text = "Views"
Me.radioView.UseVisualStyleBackColor = True
'
'radioTable
'
- Me.radioTable.AutoSize = True
+ resources.ApplyResources(Me.radioTable, "radioTable")
Me.radioTable.Checked = True
- Me.radioTable.Location = New System.Drawing.Point(154, 19)
Me.radioTable.Name = "radioTable"
- Me.radioTable.Size = New System.Drawing.Size(68, 17)
- Me.radioTable.TabIndex = 24
Me.radioTable.TabStop = True
- Me.radioTable.Text = "Tabellen"
Me.radioTable.UseVisualStyleBackColor = True
'
'Label4
'
- Me.Label4.AutoSize = True
- Me.Label4.Location = New System.Drawing.Point(6, 21)
+ resources.ApplyResources(Me.Label4, "Label4")
Me.Label4.Name = "Label4"
- Me.Label4.Size = New System.Drawing.Size(126, 13)
- Me.Label4.TabIndex = 86
- Me.Label4.Text = "Tabellenart auswählen:"
'
'txtCondition
'
- Me.txtCondition.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtCondition.Location = New System.Drawing.Point(363, 75)
+ resources.ApplyResources(Me.txtCondition, "txtCondition")
Me.txtCondition.Name = "txtCondition"
- Me.txtCondition.Size = New System.Drawing.Size(234, 20)
- Me.txtCondition.TabIndex = 29
'
'Label6
'
- Me.Label6.AutoSize = True
- Me.Label6.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label6.Location = New System.Drawing.Point(6, 50)
+ resources.ApplyResources(Me.Label6, "Label6")
Me.Label6.Name = "Label6"
- Me.Label6.Size = New System.Drawing.Size(43, 13)
- Me.Label6.TabIndex = 19
- Me.Label6.Text = "SELECT"
'
'cmbSelectColumns
'
Me.cmbSelectColumns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cmbSelectColumns.Enabled = False
- Me.cmbSelectColumns.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbSelectColumns, "cmbSelectColumns")
Me.cmbSelectColumns.FormattingEnabled = True
- Me.cmbSelectColumns.Location = New System.Drawing.Point(63, 47)
Me.cmbSelectColumns.Name = "cmbSelectColumns"
- Me.cmbSelectColumns.Size = New System.Drawing.Size(233, 21)
- Me.cmbSelectColumns.TabIndex = 20
'
'Label7
'
- Me.Label7.AutoSize = True
- Me.Label7.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label7.Location = New System.Drawing.Point(302, 50)
+ resources.ApplyResources(Me.Label7, "Label7")
Me.Label7.Name = "Label7"
- Me.Label7.Size = New System.Drawing.Size(31, 13)
- Me.Label7.TabIndex = 21
- Me.Label7.Text = "FROM"
'
'cmbWhereOperator
'
Me.cmbWhereOperator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cmbWhereOperator.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbWhereOperator, "cmbWhereOperator")
Me.cmbWhereOperator.FormattingEnabled = True
- Me.cmbWhereOperator.Items.AddRange(New Object() {"=", "<>", "<", ">"})
- Me.cmbWhereOperator.Location = New System.Drawing.Point(304, 75)
+ Me.cmbWhereOperator.Items.AddRange(New Object() {resources.GetString("cmbWhereOperator.Items"), resources.GetString("cmbWhereOperator.Items1"), resources.GetString("cmbWhereOperator.Items2"), resources.GetString("cmbWhereOperator.Items3")})
Me.cmbWhereOperator.Name = "cmbWhereOperator"
- Me.cmbWhereOperator.Size = New System.Drawing.Size(47, 21)
- Me.cmbWhereOperator.TabIndex = 28
'
'cmbFromTables
'
Me.cmbFromTables.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cmbFromTables.Enabled = False
- Me.cmbFromTables.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbFromTables, "cmbFromTables")
Me.cmbFromTables.FormattingEnabled = True
- Me.cmbFromTables.Location = New System.Drawing.Point(363, 47)
Me.cmbFromTables.Name = "cmbFromTables"
- Me.cmbFromTables.Size = New System.Drawing.Size(234, 21)
- Me.cmbFromTables.TabIndex = 22
'
'cmbWhereColumns
'
Me.cmbWhereColumns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
- Me.cmbWhereColumns.Enabled = False
- Me.cmbWhereColumns.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.cmbWhereColumns, "cmbWhereColumns")
Me.cmbWhereColumns.FormattingEnabled = True
- Me.cmbWhereColumns.Location = New System.Drawing.Point(63, 75)
Me.cmbWhereColumns.Name = "cmbWhereColumns"
- Me.cmbWhereColumns.Size = New System.Drawing.Size(233, 21)
- Me.cmbWhereColumns.TabIndex = 27
'
'Label8
'
- Me.Label8.AutoSize = True
- Me.Label8.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label8.Location = New System.Drawing.Point(6, 78)
+ resources.ApplyResources(Me.Label8, "Label8")
Me.Label8.Name = "Label8"
- Me.Label8.Size = New System.Drawing.Size(37, 13)
- Me.Label8.TabIndex = 23
- Me.Label8.Text = "WHERE"
'
'SQLConfigAutoIndex
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(858, 477)
Me.Controls.Add(Label3)
Me.Controls.Add(Me.GroupBox4)
Me.Controls.Add(Me.Label2)
@@ -417,12 +315,10 @@ Partial Class SQLConfigAutoIndex
Me.Controls.Add(Me.btnVorschlag)
Me.Controls.Add(SQL_ERGEBNISLabel)
Me.Controls.Add(Me.SQL_ERGEBNISTextBox)
- Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "SQLConfigAutoIndex"
- Me.Text = "SQL-Editor für automatischen Index"
CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.MyDataset, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.TBDD_INDEX_MANBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
diff --git a/Global_Indexer/frmSQLConfigAutoIndex.resx b/Global_Indexer/frmSQLConfigAutoIndex.resx
index 8b8e847..fd46b58 100644
--- a/Global_Indexer/frmSQLConfigAutoIndex.resx
+++ b/Global_Indexer/frmSQLConfigAutoIndex.resx
@@ -120,40 +120,802 @@
False
+
+
+ True
+
+
+
+ 12, 161
+
+
+ 157, 13
+
+
+ 50
+
+
+ SQL für automatischen Index:
+
+
+ SQL_ERGEBNISLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 12
+
False
-
- 127, 17
-
+
+ True
+
+
+ 9, 8
+
+
+ 93, 13
+
+
+ 87
+
+
+ SQL-Connection:
+
+
+ Label3
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ MiddleLeft
+
+
+ 646, 177
+
+
+ 177, 37
+
+
+ 48
+
+
+ Teste SQL (BETA)
+
+
+ MiddleRight
+
+
+ btnVorschlag
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 11
+
+
+ Consolas, 8.25pt
+
+
+ 15, 177
+
+
+ True
+
+
+
+ Both
+
+
+ 616, 136
+
+
+ 47
+
+
+ SQL_ERGEBNISTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 13
+
127, 17
17, 17
-
- 17, 17
-
+
+ 12, 24
+
+
+ 268, 21
+
+
+ 53
+
+
+ cmbConnection
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 10
+
371, 17
609, 17
+
+ MiddleLeft
+
+
+ 286, 17
+
+
+ 189, 32
+
+
+ 54
+
+
+ Verwaltung SQL-Connections
+
+
+ MiddleRight
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 9
+
+
+ Segoe UI, 8.25pt, style=Bold
+
+
+ MiddleLeft
+
+
+ 733, 282
+
+
+ 90, 31
+
+
+ 55
+
+
+ Speichern
+
+
+ MiddleRight
+
+
+ btnsave
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 8
+
+
+ True
+
+
+ Segoe UI Semibold, 8.25pt, style=Bold, Italic
+
+
+ 643, 217
+
+
+ 180, 13
+
+
+ 79
+
+
+ SQL-Daten erfolgreich gespeichert!
+
+
+ False
+
+
+ lblSave
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 7
+
+
+ True
+
+
+ 12, 316
+
+
+ 151, 13
+
+
+ 80
+
+
+ Platzhalter manuelle Indexe:
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 6
+
782, 17
-
- 782, 17
-
+
+ 15, 332
+
+
+ 171, 21
+
+
+ 81
+
+
+ cmbManualIDX
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 5
+
1017, 17
+
+ 192, 332
+
+
+ 27, 21
+
+
+ 82
+
+
+ btnaddManualIdx
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
+
+ True
+
+
+ Segoe UI, 9pt
+
+
+ 316, 316
+
+
+ 132, 15
+
+
+ 84
+
+
+ Platzhalter Ersetzungen:
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
True
+
+ Platzhalter
+
True
+
+ Ersetzung
+
+
+ False
+
+
+ 319, 334
+
+
+ 312, 132
+
+
+ 83
+
+
+ dgvPlaceholders
+
+
+ System.Windows.Forms.DataGridView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
+
+ True
+
+
+ 241, 19
+
+
+ 55, 17
+
+
+ 25
+
+
+ Views
+
+
+ radioView
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 0
+
+
+ True
+
+
+ 154, 19
+
+
+ 68, 17
+
+
+ 24
+
+
+ Tabellen
+
+
+ radioTable
+
+
+ System.Windows.Forms.RadioButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 1
+
+
+ True
+
+
+ 6, 21
+
+
+ 126, 13
+
+
+ 86
+
+
+ Tabellenart auswählen:
+
+
+ Label4
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 2
+
+
+ Consolas, 8.25pt
+
+
+ 363, 75
+
+
+ 234, 20
+
+
+ 29
+
+
+ txtCondition
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 3
+
+
+ True
+
+
+ Consolas, 8.25pt
+
+
+ 6, 50
+
+
+ 43, 13
+
+
+ 19
+
+
+ SELECT
+
+
+ Label6
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 4
+
+
+ False
+
+
+ Consolas, 8.25pt
+
+
+ 63, 47
+
+
+ 233, 21
+
+
+ 20
+
+
+ cmbSelectColumns
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 5
+
+
+ True
+
+
+ Consolas, 8.25pt
+
+
+ 302, 50
+
+
+ 31, 13
+
+
+ 21
+
+
+ FROM
+
+
+ Label7
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 6
+
+
+ Consolas, 8.25pt
+
+
+ =
+
+
+ <>
+
+
+ <
+
+
+ >
+
+
+ 304, 75
+
+
+ 47, 21
+
+
+ 28
+
+
+ cmbWhereOperator
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 7
+
+
+ False
+
+
+ Consolas, 8.25pt
+
+
+ 363, 47
+
+
+ 234, 21
+
+
+ 22
+
+
+ cmbFromTables
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 8
+
+
+ False
+
+
+ Consolas, 8.25pt
+
+
+ 63, 75
+
+
+ 233, 21
+
+
+ 27
+
+
+ cmbWhereColumns
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 9
+
+
+ True
+
+
+ Consolas, 8.25pt
+
+
+ 6, 78
+
+
+ 37, 13
+
+
+ 23
+
+
+ WHERE
+
+
+ Label8
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox4
+
+
+ 10
+
+
+ Segoe UI, 8.25pt
+
+
+ 15, 51
+
+
+ 808, 107
+
+
+ 86
+
+
+ SQL-Befehl generieren (BETA)
+
+
+ GroupBox4
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ True
+
+
+ 6, 13
+
+
+ 858, 477
+
+
+ Segoe UI, 8.25pt
+
+
+ SQL-Editor für automatischen Index
+
+
+ TBDD_CONNECTIONBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_CONNECTIONTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_CONNECTIONTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_INDEX_MANBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TBDD_INDEX_MANTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_INDEX_MANTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ colPlaceholder
+
+
+ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ colReplace
+
+
+ System.Windows.Forms.DataGridViewTextBoxColumn, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SQLConfigAutoIndex
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmSQLSuggestion.Designer.vb b/Global_Indexer/frmSQLSuggestion.Designer.vb
index e977c5f..8727e63 100644
--- a/Global_Indexer/frmSQLSuggestion.Designer.vb
+++ b/Global_Indexer/frmSQLSuggestion.Designer.vb
@@ -24,6 +24,7 @@ Partial Class frmSQLSuggestion
Private Sub InitializeComponent()
Me.components = New System.ComponentModel.Container()
Dim SQL_ERGEBNISLabel As System.Windows.Forms.Label
+ Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmSQLSuggestion))
Dim SQL_UEBERPRUEFUNGLabel As System.Windows.Forms.Label
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.btnTestNachbearbeitung = New System.Windows.Forms.Button()
@@ -49,105 +50,64 @@ Partial Class frmSQLSuggestion
'
'SQL_ERGEBNISLabel
'
- SQL_ERGEBNISLabel.AutoSize = True
- SQL_ERGEBNISLabel.Location = New System.Drawing.Point(12, 66)
+ resources.ApplyResources(SQL_ERGEBNISLabel, "SQL_ERGEBNISLabel")
SQL_ERGEBNISLabel.Name = "SQL_ERGEBNISLabel"
- SQL_ERGEBNISLabel.Size = New System.Drawing.Size(127, 13)
- SQL_ERGEBNISLabel.TabIndex = 50
- SQL_ERGEBNISLabel.Text = "SQL für Vorschlagsliste:"
'
'SQL_UEBERPRUEFUNGLabel
'
- SQL_UEBERPRUEFUNGLabel.AutoSize = True
- SQL_UEBERPRUEFUNGLabel.Location = New System.Drawing.Point(533, 66)
+ resources.ApplyResources(SQL_UEBERPRUEFUNGLabel, "SQL_UEBERPRUEFUNGLabel")
SQL_UEBERPRUEFUNGLabel.Name = "SQL_UEBERPRUEFUNGLabel"
- SQL_UEBERPRUEFUNGLabel.Size = New System.Drawing.Size(437, 39)
- SQL_UEBERPRUEFUNGLabel.TabIndex = 51
- SQL_UEBERPRUEFUNGLabel.Text = "SQL-Überprüfung für manuellen Index:" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Definieren Sie hier einen SQL-Befehl der di" & _
- "e Auswahl auf VORHANDEN überprüft." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "(SELECT COUNT(*) FROM IHRE_KEY_TABLE WHERE I" & _
- "HRE_WERT_SPALTE = INPUTVALUE)"
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.btnTestNachbearbeitung)
Me.GroupBox1.Controls.Add(Me.txtTest_idxMan)
Me.GroupBox1.Controls.Add(Me.Label2)
- Me.GroupBox1.Location = New System.Drawing.Point(15, 229)
+ resources.ApplyResources(Me.GroupBox1, "GroupBox1")
Me.GroupBox1.Name = "GroupBox1"
- Me.GroupBox1.Size = New System.Drawing.Size(351, 93)
- Me.GroupBox1.TabIndex = 52
Me.GroupBox1.TabStop = False
- Me.GroupBox1.Text = "Nachbearbeitung testen:"
'
'btnTestNachbearbeitung
'
Me.btnTestNachbearbeitung.Image = Global.Global_Indexer.My.Resources.Resources.database_go
- Me.btnTestNachbearbeitung.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnTestNachbearbeitung.Location = New System.Drawing.Point(227, 59)
+ resources.ApplyResources(Me.btnTestNachbearbeitung, "btnTestNachbearbeitung")
Me.btnTestNachbearbeitung.Name = "btnTestNachbearbeitung"
- Me.btnTestNachbearbeitung.Size = New System.Drawing.Size(103, 27)
- Me.btnTestNachbearbeitung.TabIndex = 1
- Me.btnTestNachbearbeitung.Text = "Test"
- Me.btnTestNachbearbeitung.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnTestNachbearbeitung.UseVisualStyleBackColor = True
'
'txtTest_idxMan
'
- Me.txtTest_idxMan.Location = New System.Drawing.Point(9, 63)
+ resources.ApplyResources(Me.txtTest_idxMan, "txtTest_idxMan")
Me.txtTest_idxMan.Name = "txtTest_idxMan"
- Me.txtTest_idxMan.Size = New System.Drawing.Size(212, 22)
- Me.txtTest_idxMan.TabIndex = 0
'
'Label2
'
- Me.Label2.AutoSize = True
- Me.Label2.Location = New System.Drawing.Point(6, 21)
+ resources.ApplyResources(Me.Label2, "Label2")
Me.Label2.Name = "Label2"
- Me.Label2.Size = New System.Drawing.Size(324, 39)
- Me.Label2.TabIndex = 0
- Me.Label2.Text = "Geben Sie hier den Ausgangswert des manuellen Indexes ein." & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Die Nachbearbeitung w" & _
- "ird durchlaufen und Ihnen wird der " & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "Ergebniswert angezeigt."
'
'btnVorschlag
'
Me.btnVorschlag.Image = Global.Global_Indexer.My.Resources.Resources.database_go
- Me.btnVorschlag.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnVorschlag.Location = New System.Drawing.Point(372, 82)
+ resources.ApplyResources(Me.btnVorschlag, "btnVorschlag")
Me.btnVorschlag.Name = "btnVorschlag"
- Me.btnVorschlag.Size = New System.Drawing.Size(151, 25)
- Me.btnVorschlag.TabIndex = 48
- Me.btnVorschlag.Text = "Teste SQL"
- Me.btnVorschlag.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnVorschlag.UseVisualStyleBackColor = True
'
'SQL_ERGEBNISTextBox
'
- Me.SQL_ERGEBNISTextBox.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.SQL_ERGEBNISTextBox.Location = New System.Drawing.Point(15, 82)
- Me.SQL_ERGEBNISTextBox.Multiline = True
+ resources.ApplyResources(Me.SQL_ERGEBNISTextBox, "SQL_ERGEBNISTextBox")
Me.SQL_ERGEBNISTextBox.Name = "SQL_ERGEBNISTextBox"
- Me.SQL_ERGEBNISTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both
- Me.SQL_ERGEBNISTextBox.Size = New System.Drawing.Size(351, 136)
- Me.SQL_ERGEBNISTextBox.TabIndex = 47
'
'SQL_UEBERPRUEFUNGTextBox
'
- Me.SQL_UEBERPRUEFUNGTextBox.Font = New System.Drawing.Font("Consolas", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.SQL_UEBERPRUEFUNGTextBox.Location = New System.Drawing.Point(536, 112)
- Me.SQL_UEBERPRUEFUNGTextBox.Multiline = True
+ resources.ApplyResources(Me.SQL_UEBERPRUEFUNGTextBox, "SQL_UEBERPRUEFUNGTextBox")
Me.SQL_UEBERPRUEFUNGTextBox.Name = "SQL_UEBERPRUEFUNGTextBox"
- Me.SQL_UEBERPRUEFUNGTextBox.Size = New System.Drawing.Size(434, 106)
- Me.SQL_UEBERPRUEFUNGTextBox.TabIndex = 49
'
'cmbConnection
'
Me.cmbConnection.DataSource = Me.TBDD_CONNECTIONBindingSource
Me.cmbConnection.DisplayMember = "BEZEICHNUNG"
Me.cmbConnection.FormattingEnabled = True
- Me.cmbConnection.Location = New System.Drawing.Point(15, 24)
+ resources.ApplyResources(Me.cmbConnection, "cmbConnection")
Me.cmbConnection.Name = "cmbConnection"
- Me.cmbConnection.Size = New System.Drawing.Size(268, 21)
- Me.cmbConnection.TabIndex = 53
Me.cmbConnection.ValueMember = "GUID"
'
'TBDD_CONNECTIONBindingSource
@@ -187,42 +147,27 @@ Partial Class frmSQLSuggestion
'
'Button1
'
- Me.Button1.Location = New System.Drawing.Point(289, 22)
+ resources.ApplyResources(Me.Button1, "Button1")
Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(112, 23)
- Me.Button1.TabIndex = 54
- Me.Button1.Text = "SQL-Connections"
Me.Button1.UseVisualStyleBackColor = True
'
'Button2
'
Me.Button2.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
- Me.Button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.Button2.Location = New System.Drawing.Point(880, 229)
+ resources.ApplyResources(Me.Button2, "Button2")
Me.Button2.Name = "Button2"
- Me.Button2.Size = New System.Drawing.Size(90, 31)
- Me.Button2.TabIndex = 55
- Me.Button2.Text = "Speichern"
- Me.Button2.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.Button2.UseVisualStyleBackColor = True
'
'lblSave
'
- Me.lblSave.AutoSize = True
+ resources.ApplyResources(Me.lblSave, "lblSave")
Me.lblSave.BackColor = System.Drawing.Color.Yellow
- Me.lblSave.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.lblSave.Location = New System.Drawing.Point(679, 237)
Me.lblSave.Name = "lblSave"
- Me.lblSave.Size = New System.Drawing.Size(195, 15)
- Me.lblSave.TabIndex = 79
- Me.lblSave.Text = "SQL-Daten erfolgreich gespeichert!"
- Me.lblSave.Visible = False
'
'frmSQLSuggestion
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(973, 326)
Me.Controls.Add(Me.lblSave)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
@@ -233,12 +178,10 @@ Partial Class frmSQLSuggestion
Me.Controls.Add(Me.SQL_ERGEBNISTextBox)
Me.Controls.Add(SQL_UEBERPRUEFUNGLabel)
Me.Controls.Add(Me.SQL_UEBERPRUEFUNGTextBox)
- Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.MaximizeBox = False
Me.MinimizeBox = False
Me.Name = "frmSQLSuggestion"
- Me.Text = "Konfiguration SQL"
Me.GroupBox1.ResumeLayout(False)
Me.GroupBox1.PerformLayout()
CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
diff --git a/Global_Indexer/frmSQLSuggestion.resx b/Global_Indexer/frmSQLSuggestion.resx
index d18b4cc..3ce3fb4 100644
--- a/Global_Indexer/frmSQLSuggestion.resx
+++ b/Global_Indexer/frmSQLSuggestion.resx
@@ -120,25 +120,422 @@
False
+
+
+ True
+
+
+
+ 12, 66
+
+
+ 127, 13
+
+
+ 50
+
+
+ SQL für Vorschlagsliste:
+
+
+ SQL_ERGEBNISLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 6
+
False
-
- 127, 17
-
+
+ True
+
+
+ 533, 66
+
+
+ 437, 39
+
+
+ 51
+
+
+ SQL-Überprüfung für manuellen Index:
+Definieren Sie hier einen SQL-Befehl der die Auswahl auf VORHANDEN überprüft.
+(SELECT COUNT(*) FROM IHRE_KEY_TABLE WHERE IHRE_WERT_SPALTE = INPUTVALUE)
+
+
+ SQL_UEBERPRUEFUNGLabel
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 8
+
+
+ MiddleLeft
+
+
+ 227, 59
+
+
+ 103, 27
+
+
+ 1
+
+
+ Test
+
+
+ MiddleRight
+
+
+ btnTestNachbearbeitung
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 0
+
+
+ 9, 63
+
+
+ 212, 22
+
+
+ 0
+
+
+ txtTest_idxMan
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 1
+
+
+ True
+
+
+ 6, 21
+
+
+ 324, 39
+
+
+ 0
+
+
+ Geben Sie hier den Ausgangswert des manuellen Indexes ein.
+Die Nachbearbeitung wird durchlaufen und Ihnen wird der
+Ergebniswert angezeigt.
+
+
+ Label2
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GroupBox1
+
+
+ 2
+
+
+ 15, 229
+
+
+ 351, 93
+
+
+ 52
+
+
+ Nachbearbeitung testen:
+
+
+ GroupBox1
+
+
+ System.Windows.Forms.GroupBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
+
+ MiddleLeft
+
+
+ 372, 82
+
+
+ 151, 25
+
+
+ 48
+
+
+ Teste SQL
+
+
+ MiddleRight
+
+
+ btnVorschlag
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 5
+
+
+ Consolas, 8.25pt
+
+
+ 15, 82
+
+
+ True
+
+
+
+ Both
+
+
+ 351, 136
+
+
+ 47
+
+
+ SQL_ERGEBNISTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 7
+
+
+ Consolas, 8.25pt
+
+
+ 536, 112
+
+
+ True
+
+
+ 434, 106
+
+
+ 49
+
+
+ SQL_UEBERPRUEFUNGTextBox
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 9
+
127, 17
17, 17
-
- 17, 17
-
+
+ 15, 24
+
+
+ 268, 21
+
+
+ 53
+
+
+ cmbConnection
+
+
+ System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
371, 17
609, 17
+
+ 289, 22
+
+
+ 112, 23
+
+
+ 54
+
+
+ SQL-Connections
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ MiddleLeft
+
+
+ 880, 229
+
+
+ 90, 31
+
+
+ 55
+
+
+ Speichern
+
+
+ MiddleRight
+
+
+ Button2
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ True
+
+
+ Segoe UI Semibold, 9pt, style=Bold, Italic
+
+
+ 679, 237
+
+
+ 195, 15
+
+
+ 79
+
+
+ SQL-Daten erfolgreich gespeichert!
+
+
+ False
+
+
+ lblSave
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 6, 13
+
+
+ 973, 326
+
+
+ Segoe UI, 8.25pt
+
+
+ Konfiguration SQL
+
+
+ TBDD_CONNECTIONBindingSource
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ MyDataset
+
+
+ Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TBDD_CONNECTIONTableAdapter
+
+
+ Global_Indexer.MyDatasetTableAdapters.TBDD_CONNECTIONTableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ frmSQLSuggestion
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmSQL_Admin.designer.vb b/Global_Indexer/frmSQL_Admin.designer.vb
index 5cd2945..582a77d 100644
--- a/Global_Indexer/frmSQL_Admin.designer.vb
+++ b/Global_Indexer/frmSQL_Admin.designer.vb
@@ -59,35 +59,20 @@ Partial Class frmSQL_Admin
'
'Label1
'
- Me.Label1.AutoSize = True
- Me.Label1.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Label1.Location = New System.Drawing.Point(14, 12)
+ resources.ApplyResources(Me.Label1, "Label1")
Me.Label1.Name = "Label1"
- Me.Label1.Size = New System.Drawing.Size(122, 17)
- Me.Label1.TabIndex = 0
- Me.Label1.Text = "Aktuelle Verbindung:"
'
'TextBox1
'
- Me.TextBox1.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.TextBox1.Location = New System.Drawing.Point(17, 32)
+ resources.ApplyResources(Me.TextBox1, "TextBox1")
Me.TextBox1.Name = "TextBox1"
Me.TextBox1.ReadOnly = True
- Me.TextBox1.Size = New System.Drawing.Size(727, 25)
- Me.TextBox1.TabIndex = 1
'
'btnrunSQL
'
- Me.btnrunSQL.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
- Me.btnrunSQL.Font = New System.Drawing.Font("Segoe UI Semibold", 9.75!, CType((System.Drawing.FontStyle.Bold Or System.Drawing.FontStyle.Italic), System.Drawing.FontStyle), System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.btnrunSQL, "btnrunSQL")
Me.btnrunSQL.Image = Global.Global_Indexer.My.Resources.Resources.database_go
- Me.btnrunSQL.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnrunSQL.Location = New System.Drawing.Point(17, 474)
Me.btnrunSQL.Name = "btnrunSQL"
- Me.btnrunSQL.Size = New System.Drawing.Size(125, 33)
- Me.btnrunSQL.TabIndex = 4
- Me.btnrunSQL.Text = "SQL ausführen"
- Me.btnrunSQL.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnrunSQL.UseVisualStyleBackColor = True
'
'OpenFileDialog1
@@ -97,70 +82,50 @@ Partial Class frmSQL_Admin
'Button1
'
Me.Button1.Image = Global.Global_Indexer.My.Resources.Resources.folder_Open_32xSM
- Me.Button1.ImageAlign = System.Drawing.ContentAlignment.TopCenter
- Me.Button1.Location = New System.Drawing.Point(750, 86)
+ resources.ApplyResources(Me.Button1, "Button1")
Me.Button1.Name = "Button1"
- Me.Button1.Size = New System.Drawing.Size(75, 43)
- Me.Button1.TabIndex = 5
- Me.Button1.Text = "Open SQL"
- Me.Button1.TextAlign = System.Drawing.ContentAlignment.BottomCenter
Me.Button1.UseVisualStyleBackColor = True
'
'txtSQL
'
Me.txtSQL.AcceptsReturn = True
Me.txtSQL.AcceptsTab = True
- Me.txtSQL.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
- Or System.Windows.Forms.AnchorStyles.Left) _
- Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
- Me.txtSQL.Font = New System.Drawing.Font("Consolas", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.txtSQL.Location = New System.Drawing.Point(-1, 11)
- Me.txtSQL.Multiline = True
+ resources.ApplyResources(Me.txtSQL, "txtSQL")
Me.txtSQL.Name = "txtSQL"
- Me.txtSQL.ScrollBars = System.Windows.Forms.ScrollBars.Both
- Me.txtSQL.Size = New System.Drawing.Size(715, 371)
- Me.txtSQL.TabIndex = 3
'
'XtraTabControl1
'
- Me.XtraTabControl1.Location = New System.Drawing.Point(17, 63)
+ resources.ApplyResources(Me.XtraTabControl1, "XtraTabControl1")
Me.XtraTabControl1.Name = "XtraTabControl1"
Me.XtraTabControl1.SelectedTabPage = Me.XtraTabPage1
- Me.XtraTabControl1.Size = New System.Drawing.Size(727, 405)
- Me.XtraTabControl1.TabIndex = 6
Me.XtraTabControl1.TabPages.AddRange(New DevExpress.XtraTab.XtraTabPage() {Me.XtraTabPage1, Me.XtraTabPage2})
'
'XtraTabPage1
'
Me.XtraTabPage1.Controls.Add(Me.txtSQL)
Me.XtraTabPage1.Name = "XtraTabPage1"
- Me.XtraTabPage1.Size = New System.Drawing.Size(721, 377)
- Me.XtraTabPage1.Text = "Auszuführender SQL-Befehl"
+ resources.ApplyResources(Me.XtraTabPage1, "XtraTabPage1")
'
'XtraTabPage2
'
Me.XtraTabPage2.Controls.Add(Me.GridControl1)
Me.XtraTabPage2.Controls.Add(Me.BindingNavigator1)
Me.XtraTabPage2.Name = "XtraTabPage2"
- Me.XtraTabPage2.Size = New System.Drawing.Size(721, 377)
- Me.XtraTabPage2.Text = "Ergebnis:"
+ resources.ApplyResources(Me.XtraTabPage2, "XtraTabPage2")
'
'GridControl1
'
Me.GridControl1.DataSource = Me.BindingSource1
- Me.GridControl1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.GridControl1.Location = New System.Drawing.Point(0, 25)
+ resources.ApplyResources(Me.GridControl1, "GridControl1")
Me.GridControl1.MainView = Me.GridView1
Me.GridControl1.Name = "GridControl1"
- Me.GridControl1.Size = New System.Drawing.Size(721, 352)
- Me.GridControl1.TabIndex = 1
Me.GridControl1.ViewCollection.AddRange(New DevExpress.XtraGrid.Views.Base.BaseView() {Me.GridView1})
'
'GridView1
'
- Me.GridView1.Appearance.EvenRow.BackColor = System.Drawing.Color.Cyan
+ Me.GridView1.Appearance.EvenRow.BackColor = CType(resources.GetObject("GridView1.Appearance.EvenRow.BackColor"), System.Drawing.Color)
Me.GridView1.Appearance.EvenRow.Options.UseBackColor = True
- Me.GridView1.Appearance.OddRow.BackColor = System.Drawing.Color.White
+ Me.GridView1.Appearance.OddRow.BackColor = CType(resources.GetObject("GridView1.Appearance.OddRow.BackColor"), System.Drawing.Color)
Me.GridView1.Appearance.OddRow.Options.UseBackColor = True
Me.GridView1.GridControl = Me.GridControl1
Me.GridView1.Name = "GridView1"
@@ -180,99 +145,73 @@ Partial Class frmSQL_Admin
Me.BindingNavigator1.CountItemFormat = "von {0} Datensätzen"
Me.BindingNavigator1.DeleteItem = Nothing
Me.BindingNavigator1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.BindingNavigatorMoveFirstItem, Me.BindingNavigatorMovePreviousItem, Me.BindingNavigatorSeparator, Me.BindingNavigatorPositionItem, Me.BindingNavigatorCountItem, Me.BindingNavigatorSeparator1, Me.BindingNavigatorMoveNextItem, Me.BindingNavigatorMoveLastItem, Me.BindingNavigatorSeparator2})
- Me.BindingNavigator1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.BindingNavigator1, "BindingNavigator1")
Me.BindingNavigator1.MoveFirstItem = Me.BindingNavigatorMoveFirstItem
Me.BindingNavigator1.MoveLastItem = Me.BindingNavigatorMoveLastItem
Me.BindingNavigator1.MoveNextItem = Me.BindingNavigatorMoveNextItem
Me.BindingNavigator1.MovePreviousItem = Me.BindingNavigatorMovePreviousItem
Me.BindingNavigator1.Name = "BindingNavigator1"
Me.BindingNavigator1.PositionItem = Me.BindingNavigatorPositionItem
- Me.BindingNavigator1.Size = New System.Drawing.Size(721, 25)
- Me.BindingNavigator1.TabIndex = 0
- Me.BindingNavigator1.Text = "BindingNavigator1"
'
'BindingNavigatorCountItem
'
Me.BindingNavigatorCountItem.Name = "BindingNavigatorCountItem"
- Me.BindingNavigatorCountItem.Size = New System.Drawing.Size(111, 22)
- Me.BindingNavigatorCountItem.Text = "von {0} Datensätzen"
- Me.BindingNavigatorCountItem.ToolTipText = "Die Gesamtanzahl der Elemente."
+ resources.ApplyResources(Me.BindingNavigatorCountItem, "BindingNavigatorCountItem")
'
'BindingNavigatorMoveFirstItem
'
Me.BindingNavigatorMoveFirstItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveFirstItem.Image = CType(resources.GetObject("BindingNavigatorMoveFirstItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveFirstItem, "BindingNavigatorMoveFirstItem")
Me.BindingNavigatorMoveFirstItem.Name = "BindingNavigatorMoveFirstItem"
- Me.BindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveFirstItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveFirstItem.Text = "Erste verschieben"
'
'BindingNavigatorMovePreviousItem
'
Me.BindingNavigatorMovePreviousItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMovePreviousItem.Image = CType(resources.GetObject("BindingNavigatorMovePreviousItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMovePreviousItem, "BindingNavigatorMovePreviousItem")
Me.BindingNavigatorMovePreviousItem.Name = "BindingNavigatorMovePreviousItem"
- Me.BindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMovePreviousItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMovePreviousItem.Text = "Vorherige verschieben"
'
'BindingNavigatorSeparator
'
Me.BindingNavigatorSeparator.Name = "BindingNavigatorSeparator"
- Me.BindingNavigatorSeparator.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator, "BindingNavigatorSeparator")
'
'BindingNavigatorPositionItem
'
- Me.BindingNavigatorPositionItem.AccessibleName = "Position"
- Me.BindingNavigatorPositionItem.AutoSize = False
+ resources.ApplyResources(Me.BindingNavigatorPositionItem, "BindingNavigatorPositionItem")
Me.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem"
- Me.BindingNavigatorPositionItem.Size = New System.Drawing.Size(50, 23)
- Me.BindingNavigatorPositionItem.Text = "0"
- Me.BindingNavigatorPositionItem.ToolTipText = "Aktuelle Position"
'
'BindingNavigatorSeparator1
'
Me.BindingNavigatorSeparator1.Name = "BindingNavigatorSeparator1"
- Me.BindingNavigatorSeparator1.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator1, "BindingNavigatorSeparator1")
'
'BindingNavigatorMoveNextItem
'
Me.BindingNavigatorMoveNextItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveNextItem.Image = CType(resources.GetObject("BindingNavigatorMoveNextItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveNextItem, "BindingNavigatorMoveNextItem")
Me.BindingNavigatorMoveNextItem.Name = "BindingNavigatorMoveNextItem"
- Me.BindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveNextItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveNextItem.Text = "Nächste verschieben"
'
'BindingNavigatorMoveLastItem
'
Me.BindingNavigatorMoveLastItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image
- Me.BindingNavigatorMoveLastItem.Image = CType(resources.GetObject("BindingNavigatorMoveLastItem.Image"), System.Drawing.Image)
+ resources.ApplyResources(Me.BindingNavigatorMoveLastItem, "BindingNavigatorMoveLastItem")
Me.BindingNavigatorMoveLastItem.Name = "BindingNavigatorMoveLastItem"
- Me.BindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = True
- Me.BindingNavigatorMoveLastItem.Size = New System.Drawing.Size(23, 22)
- Me.BindingNavigatorMoveLastItem.Text = "Letzte verschieben"
'
'BindingNavigatorSeparator2
'
Me.BindingNavigatorSeparator2.Name = "BindingNavigatorSeparator2"
- Me.BindingNavigatorSeparator2.Size = New System.Drawing.Size(6, 25)
+ resources.ApplyResources(Me.BindingNavigatorSeparator2, "BindingNavigatorSeparator2")
'
'frmSQL_Admin
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 17.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(826, 519)
Me.Controls.Add(Me.XtraTabControl1)
Me.Controls.Add(Me.Button1)
Me.Controls.Add(Me.btnrunSQL)
Me.Controls.Add(Me.TextBox1)
Me.Controls.Add(Me.Label1)
- Me.Font = New System.Drawing.Font("Segoe UI", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
- Me.Margin = New System.Windows.Forms.Padding(3, 4, 3, 4)
Me.Name = "frmSQL_Admin"
- Me.Text = "SQL-Admin"
CType(Me.XtraTabControl1, System.ComponentModel.ISupportInitialize).EndInit()
Me.XtraTabControl1.ResumeLayout(False)
Me.XtraTabPage1.ResumeLayout(False)
diff --git a/Global_Indexer/frmSQL_Admin.resx b/Global_Indexer/frmSQL_Admin.resx
index ab9a971..616d3c3 100644
--- a/Global_Indexer/frmSQL_Admin.resx
+++ b/Global_Indexer/frmSQL_Admin.resx
@@ -117,16 +117,237 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ True
+
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 14, 12
+
+
+ 122, 17
+
+
+ 0
+
+
+ Aktuelle Verbindung:
+
+
+ Label1
+
+
+ System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 4
+
+
+ Segoe UI, 9.75pt, style=Italic
+
+
+ 17, 32
+
+
+ 727, 25
+
+
+ 1
+
+
+ TextBox1
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 3
+
+
+
+ Bottom, Left
+
+
+ Segoe UI Semibold, 9.75pt, style=Bold, Italic
+
+
+ MiddleLeft
+
+
+ 17, 474
+
+
+ 125, 33
+
+
+ 4
+
+
+ SQL ausführen
+
+
+ MiddleRight
+
+
+ btnrunSQL
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
17, 17
+
+ TopCenter
+
+
+ 750, 86
+
+
+ 75, 43
+
+
+ 5
+
+
+ Open SQL
+
+
+ BottomCenter
+
+
+ Button1
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 1
+
+
+ Top, Bottom, Left, Right
+
+
+ Consolas, 9pt
+
+
+ -1, 11
+
+
+ True
+
+
+ Both
+
+
+ 715, 371
+
+
+ 3
+
+
+ txtSQL
+
+
+ System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage1
+
+
+ 0
+
+
+ 17, 63
+
+
+ 721, 377
+
+
+ Auszuführender SQL-Befehl
+
+
+ XtraTabPage1
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl1
+
+
+ 0
+
+
+ 727, 405
+
+
+ 6
+
313, 17
+
+ Fill
+
+
+ 0, 25
+
+
+ Cyan
+
+
+ White
+
+
+ 721, 352
+
+
+ 1
+
+
+ GridControl1
+
+
+ DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabPage2
+
+
+ 0
+
159, 17
-
+
+ 111, 22
+
+
+ von {0} Datensätzen
+
+
+ Die Gesamtanzahl der Elemente.
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -138,6 +359,15 @@
lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Erste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -147,6 +377,36 @@
08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC
+
+ True
+
+
+ 23, 22
+
+
+ Vorherige verschieben
+
+
+ 6, 25
+
+
+ Position
+
+
+ False
+
+
+ 50, 23
+
+
+ 0
+
+
+ Aktuelle Position
+
+
+ 6, 25
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -156,6 +416,15 @@
oAc0QjgAAAAASUVORK5CYII=
+
+ True
+
+
+ 23, 22
+
+
+ Nächste verschieben
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
@@ -167,6 +436,84 @@
8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg==
+
+ True
+
+
+ 23, 22
+
+
+ Letzte verschieben
+
+
+ 6, 25
+
+
+ 0, 0
+
+
+ 721, 25
+
+
+ 0
+
+
+ BindingNavigator1
+
+
+ BindingNavigator1
+
+
+ System.Windows.Forms.BindingNavigator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ XtraTabPage2
+
+
+ 1
+
+
+ 721, 377
+
+
+ Ergebnis:
+
+
+ XtraTabPage2
+
+
+ DevExpress.XtraTab.XtraTabPage, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ XtraTabControl1
+
+
+ 1
+
+
+ XtraTabControl1
+
+
+ DevExpress.XtraTab.XtraTabControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 7, 17
+
+
+ 826, 519
+
+
+ Segoe UI, 9.75pt
+
AAABAAMAEBAAAAEACABoBQAANgAAACAgAAABAAgAqAgAAJ4FAAAwMAAAAQAIAKgOAABGDgAAKAAAABAA
@@ -295,4 +642,88 @@
AAD///////8AAP///////wAA////////AAA=
+
+ 3, 4, 3, 4
+
+
+ SQL-Admin
+
+
+ OpenFileDialog1
+
+
+ System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingSource1
+
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ GridView1
+
+
+ DevExpress.XtraGrid.Views.Grid.GridView, DevExpress.XtraGrid.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ BindingNavigatorCountItem
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveFirstItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMovePreviousItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorPositionItem
+
+
+ System.Windows.Forms.ToolStripTextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator1
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveNextItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorMoveLastItem
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ BindingNavigatorSeparator2
+
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ frmSQL_Admin
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmSplash.vb b/Global_Indexer/frmSplash.vb
index 64f68f4..1d75d06 100644
--- a/Global_Indexer/frmSplash.vb
+++ b/Global_Indexer/frmSplash.vb
@@ -1,5 +1,8 @@
Imports System.ComponentModel
Imports System.Diagnostics
+Imports System.Threading
+Imports System.Globalization
+
Public NotInheritable Class frmSplash
'TODO: Dieses Formular kann einfach als Begrüßungsbildschirm für die Anwendung festgelegt werden, indem Sie zur Registerkarte "Anwendung"
@@ -52,7 +55,7 @@ Public NotInheritable Class frmSplash
'End If
InitProgram()
-
+
@@ -94,7 +97,7 @@ Public NotInheritable Class frmSplash
System.Threading.Thread.Sleep(500)
End If
-
+
End Sub
Private Sub bw_ProgressChanged(sender As Object, e As System.ComponentModel.ProgressChangedEventArgs)
@@ -112,4 +115,13 @@ Public NotInheritable Class frmSplash
' Wenn kein Fehler, Splashscreen schließen
Me.Close()
End Sub
+
+ Public Sub New()
+
+ ' Dieser Aufruf ist für den Designer erforderlich.
+ InitializeComponent()
+
+ ' Fügen Sie Initialisierungen nach dem InitializeComponent()-Aufruf hinzu.
+
+ End Sub
End Class
diff --git a/Global_Indexer/frmStart.Designer.vb b/Global_Indexer/frmStart.Designer.vb
index 0385cb0..618ff95 100644
--- a/Global_Indexer/frmStart.Designer.vb
+++ b/Global_Indexer/frmStart.Designer.vb
@@ -36,7 +36,6 @@ Partial Class frmStart
Me.InfoToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem()
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
Me.tslblFW = New System.Windows.Forms.ToolStripStatusLabel()
- Me.tslblCultureInfo = New System.Windows.Forms.ToolStripStatusLabel()
Me.TimerFolderWatch = New System.Windows.Forms.Timer(Me.components)
Me.TimerClose3Minutes = New System.Windows.Forms.Timer(Me.components)
Me.NotifyIcon1 = New System.Windows.Forms.NotifyIcon(Me.components)
@@ -61,83 +60,76 @@ Partial Class frmStart
'
'MenuStrip1
'
- resources.ApplyResources(Me.MenuStrip1, "MenuStrip1")
Me.MenuStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.KonfigurationToolStripMenuItem})
+ resources.ApplyResources(Me.MenuStrip1, "MenuStrip1")
Me.MenuStrip1.Name = "MenuStrip1"
'
'KonfigurationToolStripMenuItem
'
- resources.ApplyResources(Me.KonfigurationToolStripMenuItem, "KonfigurationToolStripMenuItem")
Me.KonfigurationToolStripMenuItem.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right
Me.KonfigurationToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.AdministrationToolStripMenuItem, Me.ToolStripSeparator1, Me.GrundeinstellungenToolStripMenuItem, Me.FrmHotkeyAddToolStripMenuItem, Me.HistoryIndexierteDateienToolStripMenuItem, Me.InfoToolStripMenuItem})
Me.KonfigurationToolStripMenuItem.Image = Global.Global_Indexer.My.Resources.Resources.gear_32xLG
Me.KonfigurationToolStripMenuItem.Name = "KonfigurationToolStripMenuItem"
+ resources.ApplyResources(Me.KonfigurationToolStripMenuItem, "KonfigurationToolStripMenuItem")
'
'AdministrationToolStripMenuItem
'
- resources.ApplyResources(Me.AdministrationToolStripMenuItem, "AdministrationToolStripMenuItem")
Me.AdministrationToolStripMenuItem.DropDownItems.AddRange(New System.Windows.Forms.ToolStripItem() {Me.GlobalIndexerEinstellungenToolStripMenuItem, Me.HotkeyEisntellungenToolStripMenuItem})
Me.AdministrationToolStripMenuItem.Image = Global.Global_Indexer.My.Resources.Resources.Einstellungen6
Me.AdministrationToolStripMenuItem.Name = "AdministrationToolStripMenuItem"
+ resources.ApplyResources(Me.AdministrationToolStripMenuItem, "AdministrationToolStripMenuItem")
'
'GlobalIndexerEinstellungenToolStripMenuItem
'
- resources.ApplyResources(Me.GlobalIndexerEinstellungenToolStripMenuItem, "GlobalIndexerEinstellungenToolStripMenuItem")
Me.GlobalIndexerEinstellungenToolStripMenuItem.Image = Global.Global_Indexer.My.Resources.Resources.Einstellungen6
Me.GlobalIndexerEinstellungenToolStripMenuItem.Name = "GlobalIndexerEinstellungenToolStripMenuItem"
+ resources.ApplyResources(Me.GlobalIndexerEinstellungenToolStripMenuItem, "GlobalIndexerEinstellungenToolStripMenuItem")
'
'HotkeyEisntellungenToolStripMenuItem
'
- resources.ApplyResources(Me.HotkeyEisntellungenToolStripMenuItem, "HotkeyEisntellungenToolStripMenuItem")
Me.HotkeyEisntellungenToolStripMenuItem.Image = Global.Global_Indexer.My.Resources.Resources.Shortcut_8169_16x
Me.HotkeyEisntellungenToolStripMenuItem.Name = "HotkeyEisntellungenToolStripMenuItem"
+ resources.ApplyResources(Me.HotkeyEisntellungenToolStripMenuItem, "HotkeyEisntellungenToolStripMenuItem")
'
'ToolStripSeparator1
'
- resources.ApplyResources(Me.ToolStripSeparator1, "ToolStripSeparator1")
Me.ToolStripSeparator1.Name = "ToolStripSeparator1"
+ resources.ApplyResources(Me.ToolStripSeparator1, "ToolStripSeparator1")
'
'GrundeinstellungenToolStripMenuItem
'
- resources.ApplyResources(Me.GrundeinstellungenToolStripMenuItem, "GrundeinstellungenToolStripMenuItem")
Me.GrundeinstellungenToolStripMenuItem.Name = "GrundeinstellungenToolStripMenuItem"
+ resources.ApplyResources(Me.GrundeinstellungenToolStripMenuItem, "GrundeinstellungenToolStripMenuItem")
'
'FrmHotkeyAddToolStripMenuItem
'
- resources.ApplyResources(Me.FrmHotkeyAddToolStripMenuItem, "FrmHotkeyAddToolStripMenuItem")
Me.FrmHotkeyAddToolStripMenuItem.Image = Global.Global_Indexer.My.Resources.Resources.Shortcut_8169_16x
Me.FrmHotkeyAddToolStripMenuItem.Name = "FrmHotkeyAddToolStripMenuItem"
+ resources.ApplyResources(Me.FrmHotkeyAddToolStripMenuItem, "FrmHotkeyAddToolStripMenuItem")
'
'HistoryIndexierteDateienToolStripMenuItem
'
- resources.ApplyResources(Me.HistoryIndexierteDateienToolStripMenuItem, "HistoryIndexierteDateienToolStripMenuItem")
Me.HistoryIndexierteDateienToolStripMenuItem.Name = "HistoryIndexierteDateienToolStripMenuItem"
+ resources.ApplyResources(Me.HistoryIndexierteDateienToolStripMenuItem, "HistoryIndexierteDateienToolStripMenuItem")
'
'InfoToolStripMenuItem
'
- resources.ApplyResources(Me.InfoToolStripMenuItem, "InfoToolStripMenuItem")
Me.InfoToolStripMenuItem.Name = "InfoToolStripMenuItem"
+ resources.ApplyResources(Me.InfoToolStripMenuItem, "InfoToolStripMenuItem")
'
'StatusStrip1
'
- resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
Me.StatusStrip1.AllowDrop = True
- Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblFW, Me.tslblCultureInfo})
+ Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblFW})
+ resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
Me.StatusStrip1.Name = "StatusStrip1"
'
'tslblFW
'
- resources.ApplyResources(Me.tslblFW, "tslblFW")
Me.tslblFW.BackColor = System.Drawing.SystemColors.Control
Me.tslblFW.Image = Global.Global_Indexer.My.Resources.Resources.bell_go
Me.tslblFW.Name = "tslblFW"
- '
- 'tslblCultureInfo
- '
- resources.ApplyResources(Me.tslblCultureInfo, "tslblCultureInfo")
- Me.tslblCultureInfo.BackColor = System.Drawing.SystemColors.Control
- Me.tslblCultureInfo.Name = "tslblCultureInfo"
- Me.tslblCultureInfo.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal
+ resources.ApplyResources(Me.tslblFW, "tslblFW")
'
'TimerFolderWatch
'
@@ -157,19 +149,14 @@ Partial Class frmStart
'
'LabelControl1
'
- resources.ApplyResources(Me.LabelControl1, "LabelControl1")
Me.LabelControl1.AllowDrop = True
+ resources.ApplyResources(Me.LabelControl1, "LabelControl1")
Me.LabelControl1.Appearance.Font = CType(resources.GetObject("LabelControl1.Appearance.Font"), System.Drawing.Font)
- Me.LabelControl1.Appearance.FontSizeDelta = CType(resources.GetObject("LabelControl1.Appearance.FontSizeDelta"), Integer)
- Me.LabelControl1.Appearance.FontStyleDelta = CType(resources.GetObject("LabelControl1.Appearance.FontStyleDelta"), System.Drawing.FontStyle)
- Me.LabelControl1.Appearance.GradientMode = CType(resources.GetObject("LabelControl1.Appearance.GradientMode"), System.Drawing.Drawing2D.LinearGradientMode)
- Me.LabelControl1.Appearance.Image = CType(resources.GetObject("LabelControl1.Appearance.Image"), System.Drawing.Image)
Me.LabelControl1.Name = "LabelControl1"
'
'OpenFileDialog1
'
Me.OpenFileDialog1.FileName = "OpenFileDialog1"
- resources.ApplyResources(Me.OpenFileDialog1, "OpenFileDialog1")
Me.OpenFileDialog1.Multiselect = True
'
'LabelMachine
@@ -237,15 +224,15 @@ Partial Class frmStart
'
'btnChoosefiles
'
- resources.ApplyResources(Me.btnChoosefiles, "btnChoosefiles")
Me.btnChoosefiles.AllowDrop = True
+ resources.ApplyResources(Me.btnChoosefiles, "btnChoosefiles")
Me.btnChoosefiles.Name = "btnChoosefiles"
Me.btnChoosefiles.UseVisualStyleBackColor = True
'
'frmStart
'
- resources.ApplyResources(Me, "$this")
Me.AllowDrop = True
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.SystemColors.ControlLight
Me.Controls.Add(Me.btnChoosefiles)
@@ -288,7 +275,6 @@ Partial Class frmStart
Friend WithEvents LabelControl1 As DevExpress.XtraEditors.LabelControl
Friend WithEvents btnChoosefiles As System.Windows.Forms.Button
Friend WithEvents OpenFileDialog1 As System.Windows.Forms.OpenFileDialog
- Friend WithEvents tslblCultureInfo As System.Windows.Forms.ToolStripStatusLabel
Friend WithEvents LabelMachine As DevExpress.XtraBars.BarStaticItem
Friend WithEvents LabelUser As DevExpress.XtraBars.BarStaticItem
Friend WithEvents LabelLoggedIn As DevExpress.XtraBars.BarStaticItem
diff --git a/Global_Indexer/frmStart.de.resx b/Global_Indexer/frmStart.de.resx
index 5c42b9d..219298a 100644
--- a/Global_Indexer/frmStart.de.resx
+++ b/Global_Indexer/frmStart.de.resx
@@ -427,11 +427,24 @@
Comic Sans MS, 11.25pt
+
+ 0
+
+
+ Regular
+
+
+ Horizontal
+
+
+
+
+
38, 48
- 263, 40
+ 190, 20
38, 94
@@ -442,7 +455,6 @@
348, 179
-
diff --git a/Global_Indexer/frmStart.en.resx b/Global_Indexer/frmStart.en.resx
index cd20d32..a1e1144 100644
--- a/Global_Indexer/frmStart.en.resx
+++ b/Global_Indexer/frmStart.en.resx
@@ -474,23 +474,6 @@
/+AAH/////////////////////////////////////////////8=
-
- Comic Sans MS, 12pt
-
-
-
- 0
-
-
- Regular
-
-
- Horizontal
-
-
-
-
-
24, 44
@@ -509,10 +492,8 @@
329, 145
+
-
- NoControl
-
\ No newline at end of file
diff --git a/Global_Indexer/frmStart.resx b/Global_Indexer/frmStart.resx
index c0947f8..75354c0 100644
--- a/Global_Indexer/frmStart.resx
+++ b/Global_Indexer/frmStart.resx
@@ -117,75 +117,131 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 17, 17
+
+
+ 231, 22
+
+
+ Global Indexer - Einstellungen
+
+
+ 231, 22
+
+
+ Hotkey - Einstellungen
+
+
+ 217, 22
+
+
+ Administration
+
+
+ 214, 6
+
+
+ 217, 22
+
+
+ User Basis Einstellungen
+
+
+ 217, 22
+
+
+ Hotkeys User
+
217, 22
-
- 393, 210
+
+ History - Indexierte Dateien
-
- DevExpress.XtraBars.Ribbon.RibbonMiniToolbar, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ 217, 22
-
- wählen Sie hier Dateien
-
-
- $this
-
-
- btnChoosefiles
-
-
- tslblFW
-
-
- RibbonMiniToolbar1
-
-
- 133, 17
-
-
- MenuStrip1
-
-
- StatusStrip1
-
-
-
-
-
-
- StatusMachine
-
-
- DevExpress.XtraEditors.LabelControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ Info
108, 20
-
- System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ Konfiguration
-
- 1
+
+ 0, 0
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 335, 24
-
- 9
+
+ 5
-
- GrundeinstellungenToolStripMenuItem
+
+ MenuStrip1
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ MenuStrip1
-
- TBHOTKEY_USER_PROFILEBindingSource
+
+ System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ $this
+
+
+ 3
+
+
+ 132, 17
+
+
+ 133, 17
+
+
+ FolderWatch ist aktiv
+
+
+ False
+
+
+ 0, 126
+
+
+ 335, 22
+
+
+ 6
+
+
+ StatusStrip1
+
+
+ StatusStrip1
+
+
+ System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 2
+
+
+ 1072, 17
+
+
+ 1223, 17
+
+
+ 1386, 17
+
AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEAAABILAAASCwAAAAAAAAAA
@@ -473,195 +529,121 @@
/+AAH/////////////////////////////////////////////8=
-
- StatusVersion
-
-
- Comic Sans MS, 14.25pt
-
-
- 6, 13
-
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 217, 22
-
-
- OpenFileDialog1
-
-
- 3
-
-
- KonfigurationToolStripMenuItem
-
-
- Konfiguration
-
-
- Info
-
-
- ToolStripSeparator1
-
-
- Hotkey - Einstellungen
-
-
- 393, 24
-
-
- Administration
-
-
- NoControl
-
-
- DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- TimerClose3Minutes
-
GlobalIndexer
-
- Horizontal
-
-
- TimerFolderWatch
-
-
- System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 0
-
-
- StatusLoggedIn
-
-
- 0
-
-
- GlobalIndexerEinstellungenToolStripMenuItem
+
+ 1501, 17
+
+
+
+ None
Comic Sans MS, 12pt
-
- History - Indexierte Dateien
+
+ 24, 32
-
- System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 280, 46
-
- TableAdapterManager
-
-
- 5
-
-
- FolderWatch ist aktiv
+
+ 8
- Ziehen Sie Dateien per Drag and Drop
-hierher oder
-
-
- 217, 22
-
-
- $this
-
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 2
-
-
- $this
-
-
- System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 121, 17
-
-
- 53, 115
-
-
- ToolStripStatusLabel1
-
-
- FrmHotkeyAddToolStripMenuItem
-
-
- DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
-
- Global Indexer - Einstellungen
-
-
- System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- frmStart
-
-
- MyDataset
+ Ziehen Sie Dateien mit Drag and Drop
+in diesen Bereich oder
LabelControl1
-
- tslblCultureInfo
+
+ DevExpress.XtraEditors.LabelControl, DevExpress.XtraEditors.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
-
- Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ $this
-
- LabelLoggedIn
+
+ 1
-
+
+ 1689, 17
+
+
+ StatusMachine
+
+
+ StatusUser
+
+
+ StatusLoggedIn
+
+
+ StatusVersion
+
+
+ 17, 56
+
+
+ 249, 17
+
+
+ 359, 17
+
+
+ 632, 17
+
+
+ 899, 17
+
+
None
-
- MenuStrip1
+
+ Comic Sans MS, 14.25pt
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ NoControl
-
- System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- Grundeinstellungen User
-
-
- LabelUser
-
-
- AdministrationToolStripMenuItem
-
-
- StatusStrip1
+
+ 24, 84
282, 37
-
- System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ 9
-
- System.Windows.Forms.StatusStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ wählen Sie hier Dateien
+
+
+ btnChoosefiles
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
+
+ True
+
+
+ 203
+
+
+ 6, 13
+
+
+ 335, 148
+
+
+ Segoe UI, 8.25pt
@@ -1555,166 +1537,157 @@ hierher oder
/////////////wA///////////////////8f////////////////////
-
- 217, 22
+
+ Global Indexer
-
- Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_USER_PROFILETableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+ KonfigurationToolStripMenuItem
-
- HistoryIndexierteDateienToolStripMenuItem
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+ AdministrationToolStripMenuItem
System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- TimerCheckDroppedFiles
+
+ GlobalIndexerEinstellungenToolStripMenuItem
-
- Global Indexer
-
-
- System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- None
-
-
- 231, 22
-
-
- Regular
-
-
- StatusUser
-
-
- Hotkeys User
-
-
- LabelMachine
-
-
+
System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- LabelVersion
-
-
- $this
-
-
- 53, 63
-
-
- System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- InfoToolStripMenuItem
-
-
- System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
-
- 217, 22
-
-
- 8
-
HotkeyEisntellungenToolStripMenuItem
-
- 282, 46
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Segoe UI, 8.25pt
+
+ ToolStripSeparator1
-
- 214, 6
+
+ System.Windows.Forms.ToolStripSeparator, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 393, 22
+
+ GrundeinstellungenToolStripMenuItem
-
- 0, 188
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- NotifyIcon1
+
+ FrmHotkeyAddToolStripMenuItem
-
- System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- 0, 0
+
+ HistoryIndexierteDateienToolStripMenuItem
+
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ InfoToolStripMenuItem
+
+
+ System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tslblFW
System.Windows.Forms.ToolStripStatusLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- False
+
+ TimerFolderWatch
+
+
+ System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TimerClose3Minutes
+
+
+ System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ NotifyIcon1
+
+
+ System.Windows.Forms.NotifyIcon, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ TimerCheckDroppedFiles
+
+
+ System.Windows.Forms.Timer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ OpenFileDialog1
+
+
+ System.Windows.Forms.OpenFileDialog, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ LabelMachine
+
+
+ DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ LabelUser
+
+
+ DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ LabelLoggedIn
+
+
+ DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ LabelVersion
+
+
+ DevExpress.XtraBars.BarStaticItem, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ RibbonMiniToolbar1
+
+
+ DevExpress.XtraBars.Ribbon.RibbonMiniToolbar, DevExpress.XtraBars.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ MyDataset
Global_Indexer.MyDataset, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
-
- 231, 22
+
+ TBHOTKEY_USER_PROFILEBindingSource
-
- 6
+
+ System.Windows.Forms.BindingSource, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
TBHOTKEY_USER_PROFILETableAdapter
-
- 17, 56
-
-
- 1501, 17
-
-
- 249, 17
-
-
- 359, 17
-
-
- 1072, 17
-
-
- 1386, 17
-
-
- 17, 17
-
-
- 203
-
-
- de
-
-
- 632, 17
-
-
- True
-
-
- 1689, 17
-
-
- 899, 17
-
-
- 1223, 17
-
-
- 132, 17
-
+
+ Global_Indexer.MyDatasetTableAdapters.TBHOTKEY_USER_PROFILETableAdapter, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ TableAdapterManager
+
+
+ Global_Indexer.MyDatasetTableAdapters.TableAdapterManager, MyDataset.Designer.vb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
+
+
+ frmStart
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/Global_Indexer/frmStart.vb b/Global_Indexer/frmStart.vb
index a04504d..768c03f 100644
--- a/Global_Indexer/frmStart.vb
+++ b/Global_Indexer/frmStart.vb
@@ -11,33 +11,33 @@ Public Class frmStart
Public _lizenzManager As ClassLicenseManager
Dim loaded As Boolean = False
Dim WithEvents HotKey As New clsHotkey(Me)
- Public Sub SetLanguage()
- Dim de = System.Globalization.CultureInfo.CurrentUICulture
- 'Neue Sprache festlegen und entfernen aller Controls
+ 'Public Sub SetLanguage()
+ ' Dim de = System.Globalization.CultureInfo.CurrentUICulture
+ ' 'Neue Sprache festlegen und entfernen aller Controls
- Thread.CurrentThread.CurrentUICulture = New CultureInfo(USER_LANGUAGE)
- Me.Controls.Clear()
+ ' Thread.CurrentThread.CurrentUICulture = New CultureInfo(USER_LANGUAGE)
+ ' Me.Controls.Clear()
- 'Me.Events.Dispose()
+ ' 'Me.Events.Dispose()
- InitializeComponent()
- tslblCultureInfo.Text = "Culture/Language: " & USER_LANGUAGE
- Try
- Dim Ic As Icon = New Icon(Application.StartupPath & "\DD_Icons_ICO_GLOBIX_128.ico")
- If Not IsNothing(Ic) Then
- Me.Icon = Ic
- End If
+ ' InitializeComponent()
+ ' tslblCultureInfo.Text = "Culture/Language: " & USER_LANGUAGE
+ ' Try
+ ' Dim Ic As Icon = New Icon(Application.StartupPath & "\DD_Icons_ICO_GLOBIX_128.ico")
+ ' If Not IsNothing(Ic) Then
+ ' Me.Icon = Ic
+ ' End If
- Catch ex As Exception
- ClassLogger.Add(">> Icon file could not be read: " & ex.Message, False)
- End Try
+ ' Catch ex As Exception
+ ' ClassLogger.Add(">> Icon file could not be read: " & ex.Message, False)
+ ' End Try
- 'Me.i()
- 'Wiederherstellen der Fensterposition
- 'Me.Size = sz
- 'Me.Location = pt
- End Sub
+ ' 'Me.i()
+ ' 'Wiederherstellen der Fensterposition
+ ' 'Me.Size = sz
+ ' 'Me.Location = pt
+ 'End Sub
Private Const mSnapOffset As Integer = 35
Private Const WM_WINDOWPOSCHANGING As Integer = &H46
@@ -389,7 +389,9 @@ Public Class frmStart
End Sub
Public Sub New()
-
+ Dim splash As New frmSplash()
+ splash.ShowDialog()
+ Thread.CurrentThread.CurrentUICulture = New CultureInfo(USER_LANGUAGE)
' Dieser Aufruf ist für den Designer erforderlich.
InitializeComponent()
@@ -413,8 +415,8 @@ Public Class frmStart
'Dim sql = sql_UserID
- Dim splash As New frmSplash()
- splash.ShowDialog()
+ 'Dim splash As New frmSplash()
+ 'splash.ShowDialog()
'Lizenz abgellaufen, überprüfen ob User Admin ist
If LICENSE_COUNT < UserLoggedin Then
@@ -447,7 +449,7 @@ Public Class frmStart
End If
End If
End If
-
+ ' SetLanguage()
If CURRENT_USER_IS_ADMIN = True Then
ToolStripSeparator1.Visible = True
AdministrationToolStripMenuItem.Visible = True
@@ -460,8 +462,6 @@ Public Class frmStart
Load_Hotkeys()
Me.Opacity = 30
- 'tslblCultureInfo.Text = "Culture/Language: " & USER_LANGUAGE
-
Catch ex As Exception
MsgBox("Unexpected Error in Load-Form" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
End Try
@@ -562,16 +562,22 @@ Public Class frmStart
frmConfig_Basic.ShowDialog()
'Wurde die Sprache in der Konfiguration geändert
If LANGUAGE_CHANGED = True Then
- 'Sprache anpassen
- SetLanguage()
- LANGUAGE_CHANGED = False
- If CURRENT_USER_IS_ADMIN = True Then
- ToolStripSeparator1.Visible = True
- AdministrationToolStripMenuItem.Visible = True
+ If USER_LANGUAGE = "de-DE" Then
+ MsgBox("Zur letzendlichen Neukonfiguration der Sprache ist ein Neustart notwendig!", MsgBoxStyle.Information)
Else
- ToolStripSeparator1.Visible = False
- AdministrationToolStripMenuItem.Visible = False
+ MsgBox("For the final changing of language, a restart is required!", MsgBoxStyle.Information)
End If
+ Application.Restart()
+ ''Sprache anpassen
+ 'SetLanguage()
+ 'LANGUAGE_CHANGED = False
+ 'If CURRENT_USER_IS_ADMIN = True Then
+ ' ToolStripSeparator1.Visible = True
+ ' AdministrationToolStripMenuItem.Visible = True
+ 'Else
+ ' ToolStripSeparator1.Visible = False
+ ' AdministrationToolStripMenuItem.Visible = False
+ 'End If
End If
Start_Folderwatch()
Me.TopMost = True
@@ -647,6 +653,7 @@ Public Class frmStart
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
@@ -666,7 +673,7 @@ Public Class frmStart
Opacity = 0.65
'Sprache anpassen
- SetLanguage()
+
Start_Folderwatch()
ClassWindowLocation.LoadFormLocationSize(Me)
End Sub
diff --git a/Global_Indexer/frmUserKonfig_AddUsers.designer.vb b/Global_Indexer/frmUserKonfig_AddUsers.designer.vb
index 218652f..e42def3 100644
--- a/Global_Indexer/frmUserKonfig_AddUsers.designer.vb
+++ b/Global_Indexer/frmUserKonfig_AddUsers.designer.vb
@@ -46,8 +46,7 @@ Partial Class frmUserKonfig_AddUsers
'
'SplitContainer1
'
- Me.SplitContainer1.Dock = System.Windows.Forms.DockStyle.Fill
- Me.SplitContainer1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.SplitContainer1, "SplitContainer1")
Me.SplitContainer1.Name = "SplitContainer1"
'
'SplitContainer1.Panel1
@@ -61,110 +60,74 @@ Partial Class frmUserKonfig_AddUsers
Me.SplitContainer1.Panel2.Controls.Add(Me.ToolStrip2)
Me.SplitContainer1.Panel2.Controls.Add(Me.btnCancel)
Me.SplitContainer1.Panel2.Controls.Add(Me.btnAddUsers)
- Me.SplitContainer1.Size = New System.Drawing.Size(618, 457)
- Me.SplitContainer1.SplitterDistance = 206
- Me.SplitContainer1.TabIndex = 1
'
'lbGroups
'
- Me.lbGroups.Dock = System.Windows.Forms.DockStyle.Fill
+ resources.ApplyResources(Me.lbGroups, "lbGroups")
Me.lbGroups.FormattingEnabled = True
- Me.lbGroups.Location = New System.Drawing.Point(0, 25)
Me.lbGroups.Name = "lbGroups"
- Me.lbGroups.Size = New System.Drawing.Size(206, 432)
- Me.lbGroups.TabIndex = 2
'
'ToolStrip1
'
Me.ToolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden
Me.ToolStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel1})
- Me.ToolStrip1.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.ToolStrip1, "ToolStrip1")
Me.ToolStrip1.Name = "ToolStrip1"
- Me.ToolStrip1.Size = New System.Drawing.Size(206, 25)
- Me.ToolStrip1.TabIndex = 1
- Me.ToolStrip1.Text = "ToolStrip1"
'
'ToolStripLabel1
'
- Me.ToolStripLabel1.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ToolStripLabel1, "ToolStripLabel1")
Me.ToolStripLabel1.Name = "ToolStripLabel1"
- Me.ToolStripLabel1.Size = New System.Drawing.Size(125, 22)
- Me.ToolStripLabel1.Text = "Verfügbare Gruppen:"
'
'clbUsers
'
- Me.clbUsers.Dock = System.Windows.Forms.DockStyle.Top
+ resources.ApplyResources(Me.clbUsers, "clbUsers")
Me.clbUsers.FormattingEnabled = True
- Me.clbUsers.Location = New System.Drawing.Point(0, 25)
Me.clbUsers.Name = "clbUsers"
- Me.clbUsers.Size = New System.Drawing.Size(408, 378)
- Me.clbUsers.TabIndex = 6
'
'ToolStrip2
'
Me.ToolStrip2.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden
Me.ToolStrip2.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripLabel2, Me.tbSelectEverything, Me.tbSelectNone})
- Me.ToolStrip2.Location = New System.Drawing.Point(0, 0)
+ resources.ApplyResources(Me.ToolStrip2, "ToolStrip2")
Me.ToolStrip2.Name = "ToolStrip2"
- Me.ToolStrip2.Size = New System.Drawing.Size(408, 25)
- Me.ToolStrip2.TabIndex = 5
- Me.ToolStrip2.Text = "ToolStrip2"
'
'ToolStripLabel2
'
- Me.ToolStripLabel2.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
+ resources.ApplyResources(Me.ToolStripLabel2, "ToolStripLabel2")
Me.ToolStripLabel2.Name = "ToolStripLabel2"
- Me.ToolStripLabel2.Size = New System.Drawing.Size(128, 22)
- Me.ToolStripLabel2.Text = "Verfügbare Benutzer:"
'
'tbSelectEverything
'
Me.tbSelectEverything.Image = Global.Global_Indexer.My.Resources.Resources.CheckOutforEdit_13187_32x
- Me.tbSelectEverything.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.tbSelectEverything, "tbSelectEverything")
Me.tbSelectEverything.Name = "tbSelectEverything"
- Me.tbSelectEverything.Size = New System.Drawing.Size(106, 22)
- Me.tbSelectEverything.Text = "Alle auswählen"
'
'tbSelectNone
'
Me.tbSelectNone.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text
- Me.tbSelectNone.Image = CType(resources.GetObject("tbSelectNone.Image"), System.Drawing.Image)
- Me.tbSelectNone.ImageTransparentColor = System.Drawing.Color.Magenta
+ resources.ApplyResources(Me.tbSelectNone, "tbSelectNone")
Me.tbSelectNone.Name = "tbSelectNone"
- Me.tbSelectNone.Size = New System.Drawing.Size(104, 22)
- Me.tbSelectNone.Text = "Nichts auswählen"
'
'btnCancel
'
- Me.btnCancel.Location = New System.Drawing.Point(220, 425)
+ resources.ApplyResources(Me.btnCancel, "btnCancel")
Me.btnCancel.Name = "btnCancel"
- Me.btnCancel.Size = New System.Drawing.Size(75, 23)
- Me.btnCancel.TabIndex = 4
- Me.btnCancel.Text = "Abbrechen"
Me.btnCancel.UseVisualStyleBackColor = True
'
'btnAddUsers
'
Me.btnAddUsers.Image = Global.Global_Indexer.My.Resources.Resources.add
- Me.btnAddUsers.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
- Me.btnAddUsers.Location = New System.Drawing.Point(301, 425)
+ resources.ApplyResources(Me.btnAddUsers, "btnAddUsers")
Me.btnAddUsers.Name = "btnAddUsers"
- Me.btnAddUsers.Size = New System.Drawing.Size(95, 23)
- Me.btnAddUsers.TabIndex = 3
- Me.btnAddUsers.Text = "Hinzufügen"
- Me.btnAddUsers.TextAlign = System.Drawing.ContentAlignment.MiddleRight
Me.btnAddUsers.UseVisualStyleBackColor = True
'
'frmUserKonfig_AddUsers
'
- Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
+ resources.ApplyResources(Me, "$this")
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
- Me.ClientSize = New System.Drawing.Size(618, 457)
Me.Controls.Add(Me.SplitContainer1)
- Me.Font = New System.Drawing.Font("Segoe UI", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
- Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.Name = "frmUserKonfig_AddUsers"
- Me.Text = "Add Users from AD:"
Me.SplitContainer1.Panel1.ResumeLayout(False)
Me.SplitContainer1.Panel1.PerformLayout()
Me.SplitContainer1.Panel2.ResumeLayout(False)
diff --git a/Global_Indexer/frmUserKonfig_AddUsers.resx b/Global_Indexer/frmUserKonfig_AddUsers.resx
index 1c7abff..3f331e8 100644
--- a/Global_Indexer/frmUserKonfig_AddUsers.resx
+++ b/Global_Indexer/frmUserKonfig_AddUsers.resx
@@ -117,13 +117,132 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ Fill
+
+
+
+ 0, 0
+
+
+ Fill
+
+
+ 0, 25
+
+
+ 206, 432
+
+
+
+ 2
+
+
+ lbGroups
+
+
+ System.Windows.Forms.ListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel1
+
+
+ 0
+
17, 17
+
+ Segoe UI, 9pt, style=Bold
+
+
+ 125, 22
+
+
+ Verfügbare Gruppen:
+
+
+ 0, 0
+
+
+ 206, 25
+
+
+ 1
+
+
+ ToolStrip1
+
+
+ ToolStrip1
+
+
+ System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel1
+
+
+ 1
+
+
+ SplitContainer1.Panel1
+
+
+ System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1
+
+
+ 0
+
+
+ Top
+
+
+ 0, 25
+
+
+ 408, 378
+
+
+ 6
+
+
+ clbUsers
+
+
+ System.Windows.Forms.CheckedListBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel2
+
+
+ 0
+
124, 17
-
+
+ Segoe UI, 9pt, style=Bold
+
+
+ 128, 22
+
+
+ Verfügbare Benutzer:
+
+
+ Magenta
+
+
+ 106, 22
+
+
+ Alle auswählen
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
@@ -139,9 +258,141 @@
TgDQASA1MVpwzwAAAABJRU5ErkJggg==
+
+ Magenta
+
+
+ 104, 22
+
+
+ Nichts auswählen
+
+
+ 0, 0
+
+
+ 408, 25
+
+
+ 5
+
+
+ ToolStrip2
+
+
+ ToolStrip2
+
+
+ System.Windows.Forms.ToolStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel2
+
+
+ 1
+
+
+ 220, 425
+
+
+ 75, 23
+
+
+ 4
+
+
+ Abbrechen
+
+
+ btnCancel
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel2
+
+
+ 2
+
+
+ MiddleLeft
+
+
+ 301, 425
+
+
+ 95, 23
+
+
+ 3
+
+
+ Hinzufügen
+
+
+ MiddleRight
+
+
+ btnAddUsers
+
+
+ System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1.Panel2
+
+
+ 3
+
+
+ SplitContainer1.Panel2
+
+
+ System.Windows.Forms.SplitterPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ SplitContainer1
+
+
+ 1
+
+
+ 618, 457
+
+
+ 206
+
+
+ 1
+
+
+ SplitContainer1
+
+
+ System.Windows.Forms.SplitContainer, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ $this
+
+
+ 0
+
231, 17
+
+ True
+
+
+ 6, 13
+
+
+ 618, 457
+
+
+ Segoe UI, 8.25pt
+
AAABAAkAMDAQAAEABABoBgAAlgAAACAgEAABAAQA6AIAAP4GAAAQEBAAAQAEACgBAADmCQAAMDAAAAEA
@@ -567,4 +818,43 @@
U/+AAFj//4FT////Qv8=
+
+ Add Users from AD:
+
+
+ ToolStripLabel1
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolStripLabel2
+
+
+ System.Windows.Forms.ToolStripLabel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tbSelectEverything
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ tbSelectNone
+
+
+ System.Windows.Forms.ToolStripButton, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ ToolTipController1
+
+
+ DevExpress.Utils.ToolTipController, DevExpress.Utils.v15.1, Version=15.1.7.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
+
+
+ frmUserKonfig_AddUsers
+
+
+ System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
\ No newline at end of file
diff --git a/SetupWix/Product.wxs b/SetupWix/Product.wxs
index b9b97c7..bb37249 100644
--- a/SetupWix/Product.wxs
+++ b/SetupWix/Product.wxs
@@ -1,7 +1,7 @@
-
+
@@ -80,14 +80,14 @@
-
+
-
+
diff --git a/SetupWix/SetupWix.wixproj b/SetupWix/SetupWix.wixproj
index 66eb697..ba9e7ea 100644
--- a/SetupWix/SetupWix.wixproj
+++ b/SetupWix/SetupWix.wixproj
@@ -42,4 +42,32 @@
-->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file