Compare commits
35 Commits
Redesign
...
1768ce0add
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1768ce0add | ||
|
|
437932c5b5 | ||
|
|
ef1f887489 | ||
|
|
1e1067e29f | ||
|
|
3fe20ec9da | ||
|
|
09bef5bbbd | ||
|
|
6ba7bc27c1 | ||
| a2a2ef244f | |||
|
|
3f084d17a1 | ||
|
|
89c6ddaeed | ||
|
|
8d53fdafae | ||
|
|
322c3b0efd | ||
|
|
14c313af10 | ||
|
|
88bd76c03a | ||
|
|
650ebaaa7b | ||
|
|
29b29059a9 | ||
|
|
b2c7299d2f | ||
|
|
941be7adf4 | ||
|
|
d3c293ca29 | ||
|
|
549880bd3b | ||
|
|
92757c55d4 | ||
|
|
825cc03f66 | ||
|
|
2da647812a | ||
|
|
af4a126720 | ||
|
|
f6a6626c37 | ||
|
|
0e737888f1 | ||
|
|
ca0e115b4b | ||
|
|
526157b016 | ||
|
|
13da51251d | ||
|
|
003d34cf62 | ||
|
|
b510c0c95d | ||
|
|
6cb96dce52 | ||
|
|
a8e6d2acd9 | ||
| ddb0cf7ff3 | |||
| 348d50a578 |
Binary file not shown.
@@ -76,10 +76,19 @@ Public Class ClassControls
|
|||||||
}
|
}
|
||||||
|
|
||||||
If Not String.IsNullOrEmpty(Vorgabe) Then
|
If Not String.IsNullOrEmpty(Vorgabe) Then
|
||||||
Dim oDefaultValues = Vorgabe.
|
Dim oDefaultValues As New List(Of String)
|
||||||
Split(",").ToList().
|
|
||||||
Select(Function(item) item.Trim()).
|
If Vorgabe.Contains(",") Then
|
||||||
ToList()
|
oDefaultValues = Vorgabe.
|
||||||
|
Split(",").ToList().
|
||||||
|
Select(Function(item) item.Trim()).
|
||||||
|
ToList()
|
||||||
|
Else
|
||||||
|
oDefaultValues = Vorgabe.
|
||||||
|
Split(ClassConstants.VECTORSEPARATOR).ToList().
|
||||||
|
Select(Function(item) item.Trim()).
|
||||||
|
ToList()
|
||||||
|
End If
|
||||||
oControl.SelectedValues = oDefaultValues
|
oControl.SelectedValues = oDefaultValues
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|||||||
@@ -18,7 +18,7 @@ Public Class ClassDatabase
|
|||||||
Return True
|
Return True
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
LOGGER.Info("Unexpected error in Database-Init: " & ex.Message)
|
LOGGER.Info("Unexpected error in Database-Init: " & ex.Message)
|
||||||
LOGGER.Error(ex.Message)
|
LOGGER.Error(ex)
|
||||||
Return False
|
Return False
|
||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
@@ -95,7 +95,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Return_Datatable - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
MsgBox("Error in Return_Datatable - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Return_Datatable: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & sql_command)
|
LOGGER.Info("#SQL: " & sql_command)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -104,7 +104,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Return Datatable - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
MsgBox("Error in Return Datatable - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Return_Datatable: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & sql_command)
|
LOGGER.Info("#SQL: " & sql_command)
|
||||||
Return Nothing
|
Return Nothing
|
||||||
End Try
|
End Try
|
||||||
@@ -134,7 +134,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Return_Datatable_CS - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
MsgBox("Error in Return_Datatable_CS - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Return_Datatable_CS: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & sql_command)
|
LOGGER.Info("#SQL: " & sql_command)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -143,7 +143,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Return_Datatable_CS - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
MsgBox("Error in Return_Datatable_CS - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Return_Datatable_CS: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & sql_command)
|
LOGGER.Info("#SQL: " & sql_command)
|
||||||
Return Nothing
|
Return Nothing
|
||||||
End Try
|
End Try
|
||||||
@@ -172,7 +172,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Execute non query - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
MsgBox("Error in Execute non query - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Execute_non_Query: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & sql_command)
|
LOGGER.Info("#SQL: " & sql_command)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -181,7 +181,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Execute non query - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
MsgBox("Error in Execute non query - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Execute_non_Query: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & sql_command)
|
LOGGER.Info("#SQL: " & sql_command)
|
||||||
|
|
||||||
Return False
|
Return False
|
||||||
@@ -212,7 +212,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Execute non query - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
MsgBox("Error in Execute non query - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Execute_non_Query: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & sql_command)
|
LOGGER.Info("#SQL: " & sql_command)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -221,7 +221,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Execute Scalar - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
MsgBox("Error in Execute Scalar - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & sql_command, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Execute_Scalar: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & sql_command)
|
LOGGER.Info("#SQL: " & sql_command)
|
||||||
Return Nothing
|
Return Nothing
|
||||||
End Try
|
End Try
|
||||||
@@ -264,7 +264,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in OracleExecute_non_Query - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & ExecuteCMD, MsgBoxStyle.Critical)
|
MsgBox("Error in OracleExecute_non_Query - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & ExecuteCMD, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in OracleExecute_non_Query: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & ExecuteCMD)
|
LOGGER.Info("#SQL: " & ExecuteCMD)
|
||||||
|
|
||||||
Return False
|
Return False
|
||||||
@@ -289,7 +289,7 @@ Public Class ClassDatabase
|
|||||||
If userInput = True Then
|
If userInput = True Then
|
||||||
MsgBox("Error in Oracle Return Datatable - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & Select_anweisung, MsgBoxStyle.Critical)
|
MsgBox("Error in Oracle Return Datatable - Error-Message:" & vbNewLine & ex.Message & vbNewLine & "SQL-Command:" & vbNewLine & Select_anweisung, MsgBoxStyle.Critical)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info("Unexpected error in Oracle_Return_Datatable: " & ex.Message)
|
LOGGER.Error(ex)
|
||||||
LOGGER.Info("#SQL: " & Select_anweisung)
|
LOGGER.Info("#SQL: " & Select_anweisung)
|
||||||
Return Nothing
|
Return Nothing
|
||||||
End Try
|
End Try
|
||||||
|
|||||||
@@ -39,6 +39,16 @@ Public Class ClassFilehandle
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
If filename.ToUpper.EndsWith(".LNK") Then
|
||||||
|
If USER_LANGUAGE = "de-DE" Then
|
||||||
|
MsgBox("Verknüpfungen können nicht abgelegt werden!", MsgBoxStyle.Critical, "Global Indexer")
|
||||||
|
Else
|
||||||
|
MsgBox("Shortcuts cannot be droppped!", MsgBoxStyle.Critical, "Global Indexer")
|
||||||
|
End If
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
|
||||||
Return Insert_GI_File(filename, handletype)
|
Return Insert_GI_File(filename, handletype)
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Unexpected Error in Decide_FileHandle: " & ex.Message, MsgBoxStyle.Critical)
|
MsgBox("Unexpected Error in Decide_FileHandle: " & ex.Message, MsgBoxStyle.Critical)
|
||||||
@@ -94,7 +104,20 @@ Public Class ClassFilehandle
|
|||||||
Else
|
Else
|
||||||
attachment_name = attachment.LongFileName
|
attachment_name = attachment.LongFileName
|
||||||
End If
|
End If
|
||||||
If Not attachment_name.Contains("inline") Then
|
If attachment.EmbeddedMessage IsNot Nothing Then
|
||||||
|
attachment_name = ClassFilehandle.InvalidCharacters(attachment_name)
|
||||||
|
tempfile = Path.Combine(Path.GetTempPath, attachment_name & ".msg")
|
||||||
|
tempfile = ClassFilehandle.Versionierung_Datei(tempfile)
|
||||||
|
|
||||||
|
If tempfile <> String.Empty Then
|
||||||
|
Dim oMessage = attachment.EmbeddedMessage
|
||||||
|
oMessage.Save(tempfile)
|
||||||
|
TEMP_FILES.Add(tempfile)
|
||||||
|
LOGGER.Info(">> Attachment (" & i1 & "):" & tempfile)
|
||||||
|
erfolgreich = Insert_GI_File(tempfile, ATT_EXTR)
|
||||||
|
i1 += 1
|
||||||
|
End If
|
||||||
|
ElseIf Not attachment_name.Contains("inline") Then
|
||||||
'Sonderzeichen entfernen
|
'Sonderzeichen entfernen
|
||||||
attachment_name = ClassFilehandle.InvalidCharacters(attachment_name)
|
attachment_name = ClassFilehandle.InvalidCharacters(attachment_name)
|
||||||
tempfile = Path.Combine(Path.GetTempPath, attachment_name)
|
tempfile = Path.Combine(Path.GetTempPath, attachment_name)
|
||||||
|
|||||||
@@ -5,12 +5,12 @@ Imports DigitalData.Modules.Config
|
|||||||
|
|
||||||
Public Class ClassInit
|
Public Class ClassInit
|
||||||
Public _lizenzManager As ClassLicenseManager
|
Public _lizenzManager As ClassLicenseManager
|
||||||
Public Sub New()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub InitLogger()
|
Public Sub InitLogger()
|
||||||
ClassLogger.Init("", Environment.UserName)
|
ClassLogger.Init("", Environment.UserName)
|
||||||
LOGCONFIG = New LogConfig(LogConfig.PathType.AppData)
|
LOGCONFIG = New LogConfig(LogConfig.PathType.AppData, Nothing, Nothing,
|
||||||
|
CompanyName:=My.Application.Info.CompanyName,
|
||||||
|
ProductName:=My.Application.Info.ProductName)
|
||||||
LOGGER = LOGCONFIG.GetLogger("Globix")
|
LOGGER = LOGCONFIG.GetLogger("Globix")
|
||||||
LOGGER.Info("Programmstart: " & Now)
|
LOGGER.Info("Programmstart: " & Now)
|
||||||
LOGGER.Info("Username: {0}", Environment.UserName)
|
LOGGER.Info("Username: {0}", Environment.UserName)
|
||||||
@@ -82,7 +82,6 @@ Public Class ClassInit
|
|||||||
GI_withWindream = DT.Rows(0).Item("BIT1")
|
GI_withWindream = DT.Rows(0).Item("BIT1")
|
||||||
vWLaufwerk = DT.Rows(0).Item("STRING1")
|
vWLaufwerk = DT.Rows(0).Item("STRING1")
|
||||||
|
|
||||||
DTTBGI_REGEX_DOCTYPE = ClassDatabase.Return_Datatable("SELECT T1.DOCTYPE as DocType, T.* FROM TBGI_REGEX_DOCTYPE T, VWGI_DOCTYPE T1 WHERE T.DOCTYPE_ID = T1.DOCTYPE_ID")
|
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
Return False
|
Return False
|
||||||
|
|||||||
@@ -231,7 +231,7 @@ Public Class ClassPatterns
|
|||||||
Case "INTEGER"
|
Case "INTEGER"
|
||||||
oValue = String.Join(",", oLookupControl.SelectedValues)
|
oValue = String.Join(",", oLookupControl.SelectedValues)
|
||||||
Case "VARCHAR"
|
Case "VARCHAR"
|
||||||
Dim oWrapped = oLookupControl.SelectedValues.Select(Function(v) $"'{v}'")
|
Dim oWrapped = oLookupControl.SelectedValues
|
||||||
oValue = String.Join(",", oWrapped)
|
oValue = String.Join(",", oWrapped)
|
||||||
Case Else
|
Case Else
|
||||||
LOGGER.Warn("Lookup Control with [{0}] is not supported!", oFoundType)
|
LOGGER.Warn("Lookup Control with [{0}] is not supported!", oFoundType)
|
||||||
|
|||||||
@@ -62,51 +62,6 @@ Public Class ClassPostprocessing
|
|||||||
End Try
|
End Try
|
||||||
|
|
||||||
Return String.Join(ClassConstants.VECTORSEPARATOR, oIndexValues.ToArray)
|
Return String.Join(ClassConstants.VECTORSEPARATOR, oIndexValues.ToArray)
|
||||||
|
|
||||||
'Dim result As String = idxvalue
|
|
||||||
'Try
|
|
||||||
' For Each row As DataRow In Datatable.Rows
|
|
||||||
' Select Case row.Item("TYPE").ToString.ToUpper
|
|
||||||
' Case "VBSPLIT"
|
|
||||||
' LOGGER.Info(" ...Nachbearbeitung mit VBSPLIT")
|
|
||||||
' Dim strSplit() As String
|
|
||||||
' strSplit = result.Split(row.Item("TEXT1"))
|
|
||||||
' For i As Integer = 0 To strSplit.Length - 1
|
|
||||||
' If i = CInt(row.Item("TEXT2")) Then
|
|
||||||
' LOGGER.Info(" ...Split-Ergebnis für Index (" & i.ToString & "): " & strSplit(i))
|
|
||||||
' result = strSplit(i).ToString
|
|
||||||
' End If
|
|
||||||
' Next
|
|
||||||
' Case "VBREPLACE"
|
|
||||||
' If LogErrorsOnly = False Then
|
|
||||||
' LOGGER.Info(" ...Nachbearbeitung mit VBREPLACE")
|
|
||||||
' LOGGER.Info(" ...Ersetze '" & row.Item("TEXT1") & "' mit '" & row.Item("TEXT2") & "'")
|
|
||||||
' result = result.Replace(row.Item("TEXT1"), row.Item("TEXT2"))
|
|
||||||
' End If
|
|
||||||
|
|
||||||
' result = result.Replace(row.Item("TEXT1"), row.Item("TEXT2"))
|
|
||||||
' Case "REG. EXPRESSION"
|
|
||||||
' LOGGER.Info(" ...Nachbearbeitung mit RegEx")
|
|
||||||
' Dim RegexList As New List(Of System.Text.RegularExpressions.Regex)
|
|
||||||
' Dim Regex As New System.Text.RegularExpressions.Regex(row.Item("TEXT1"), System.Text.RegularExpressions.RegexOptions.IgnoreCase)
|
|
||||||
' RegexList.Add(Regex)
|
|
||||||
' '
|
|
||||||
' Dim resultRegex = ClassPostprocessing.extractFromStringviaRE(result, RegexList)
|
|
||||||
' If Not IsNothing(resultRegex) Then
|
|
||||||
' LOGGER.Info(" ...Ergebnis des RegEx: " & resultRegex.ToString)
|
|
||||||
' result = resultRegex.ToString
|
|
||||||
' Else
|
|
||||||
' LOGGER.Info("Postprocessing RegEx konnte kein Ergebnis auswerten!")
|
|
||||||
' End If
|
|
||||||
' End Select
|
|
||||||
' Next
|
|
||||||
' Return result
|
|
||||||
'Catch ex As Exception
|
|
||||||
' LOGGER.Info(" - Unvorhergesehener Unexpected error in Get_Nachbearbeitung_Wert - result: " & result & " - Fehler: " & vbNewLine & ex.Message)
|
|
||||||
' MsgBox(ex.Message, MsgBoxStyle.Critical, "Unexpected error in Get_Nachbearbeitung_Wert:")
|
|
||||||
' Return result
|
|
||||||
'End Try
|
|
||||||
|
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ Imports WINDREAMLib.WMSearchRelation
|
|||||||
Imports WMOBRWSLib
|
Imports WMOBRWSLib
|
||||||
Imports WMOSRCHLib
|
Imports WMOSRCHLib
|
||||||
Imports System.IO
|
Imports System.IO
|
||||||
|
Imports System.Text.RegularExpressions
|
||||||
|
|
||||||
Public Class ClassWindream
|
Public Class ClassWindream
|
||||||
|
|
||||||
@@ -18,6 +19,8 @@ Public Class ClassWindream
|
|||||||
Const VARIABLEN = 2
|
Const VARIABLEN = 2
|
||||||
Const WMObjectStreamOpenModeReadWrite = 2
|
Const WMObjectStreamOpenModeReadWrite = 2
|
||||||
|
|
||||||
|
Const STREAM_BinaryObject = "BinaryObject"
|
||||||
|
|
||||||
Public Const WMObjectVariableValueTypeUndefined = 0
|
Public Const WMObjectVariableValueTypeUndefined = 0
|
||||||
Public Const WMObjectVariableValueTypeString = 1
|
Public Const WMObjectVariableValueTypeString = 1
|
||||||
Public Const WMObjectVariableValueTypeInteger = 2
|
Public Const WMObjectVariableValueTypeInteger = 2
|
||||||
@@ -38,12 +41,12 @@ Public Class ClassWindream
|
|||||||
|
|
||||||
#Region "+++++ Variablen +++++"
|
#Region "+++++ Variablen +++++"
|
||||||
Public Shared oConnect ' der Typ darf nicht festgelegt werden (warum auch immer... geht sonst nicht)
|
Public Shared oConnect ' der Typ darf nicht festgelegt werden (warum auch immer... geht sonst nicht)
|
||||||
Public Shared oSession 'As WINDREAMLib.WMSession ' der Typ darf nicht festgelegt werden (warum auch immer... geht sonst nicht)
|
Public Shared _session 'As WINDREAMLib.WMSession ' der Typ darf nicht festgelegt werden (warum auch immer... geht sonst nicht)
|
||||||
Public Shared oBrowser As New WMOBRWSLib.ServerBrowser
|
Public Shared oBrowser As New WMOBRWSLib.ServerBrowser
|
||||||
Public Shared oDokumentTypen As WINDREAMLib.WMObjects
|
Public Shared _DocumentTypes As WINDREAMLib.WMObjects
|
||||||
Private oController As New WMOSearchController
|
Private _SearchController As New WMOSearchController
|
||||||
Public Shared _WDObjekttyp As String
|
Public Shared _WDObjekttyp As String
|
||||||
Private Shared aktWMObject As WINDREAMLib.WMObject
|
Private Shared _currentWMObject As WINDREAMLib.WMObject
|
||||||
#End Region
|
#End Region
|
||||||
|
|
||||||
|
|
||||||
@@ -71,13 +74,13 @@ Public Class ClassWindream
|
|||||||
Dim ProfileName = wdfLocation.Substring(wdfLocation.LastIndexOf("\") + 1)
|
Dim ProfileName = wdfLocation.Substring(wdfLocation.LastIndexOf("\") + 1)
|
||||||
Dim ProfilePath = wdfLocation.Substring(0, wdfLocation.Length - ProfileName.Length)
|
Dim ProfilePath = wdfLocation.Substring(0, wdfLocation.Length - ProfileName.Length)
|
||||||
|
|
||||||
oController = New WMOSearchController
|
_SearchController = New WMOSearchController
|
||||||
|
|
||||||
Me.oController.CheckSearchProfile(wdfLocation.ToLower)
|
Me._SearchController.CheckSearchProfile(wdfLocation.ToLower)
|
||||||
Dim suchTyp = Me.oController.SearchProfileTargetProgID
|
Dim suchTyp = Me._SearchController.SearchProfileTargetProgID
|
||||||
Dim ExSettings As Object
|
Dim ExSettings As Object
|
||||||
Dim oSearch As Object
|
Dim oSearch As Object
|
||||||
ExSettings = Me.oController.SearchProfileExSettings
|
ExSettings = Me._SearchController.SearchProfileExSettings
|
||||||
If ExSettings = 0 Then ExSettings = 7
|
If ExSettings = 0 Then ExSettings = 7
|
||||||
|
|
||||||
Dim srchQuick As WMOSRCHLib.WMQuickSearch = CreateObject("WMOSrch.WMQuickSearch")
|
Dim srchQuick As WMOSRCHLib.WMQuickSearch = CreateObject("WMOSrch.WMQuickSearch")
|
||||||
@@ -195,7 +198,7 @@ Public Class ClassWindream
|
|||||||
Try
|
Try
|
||||||
Try
|
Try
|
||||||
' Session-Objekt instanziieren und mit dem im Client ausgewählten Server belegen
|
' Session-Objekt instanziieren und mit dem im Client ausgewählten Server belegen
|
||||||
oSession = CreateObject("Windream.WMSession", GetCurrentServer)
|
_session = CreateObject("Windream.WMSession", GetCurrentServer)
|
||||||
LOGGER.Info(" ...windream-Server: '" & GetCurrentServer() & "'")
|
LOGGER.Info(" ...windream-Server: '" & GetCurrentServer() & "'")
|
||||||
' Connection-Objekt instanziieren
|
' Connection-Objekt instanziieren
|
||||||
oConnect = CreateObject("Windream.WMConnect")
|
oConnect = CreateObject("Windream.WMConnect")
|
||||||
@@ -224,8 +227,8 @@ Public Class ClassWindream
|
|||||||
' oConnect.Password "windream"
|
' oConnect.Password "windream"
|
||||||
|
|
||||||
' Verbindung mit Session-Objekt (und dem ausgewählten Server) aufbauen
|
' Verbindung mit Session-Objekt (und dem ausgewählten Server) aufbauen
|
||||||
oConnect.LoginSession(oSession)
|
oConnect.LoginSession(_session)
|
||||||
If oSession.aLoggedin = False Then
|
If _session.aLoggedin = False Then
|
||||||
MsgBox("Es konnte keine Verbindung mit dem windream-Server hergestellt werden", MsgBoxStyle.Exclamation, "Verbindung konnte nicht hergestellt werden")
|
MsgBox("Es konnte keine Verbindung mit dem windream-Server hergestellt werden", MsgBoxStyle.Exclamation, "Verbindung konnte nicht hergestellt werden")
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
@@ -251,10 +254,10 @@ Public Class ClassWindream
|
|||||||
'MsgBox(WMCtrl.WMServerName)
|
'MsgBox(WMCtrl.WMServerName)
|
||||||
|
|
||||||
Try
|
Try
|
||||||
oSession.SwitchEvents(WMCOMEventWMSessionNeedIndex, False)
|
_session.SwitchEvents(WMCOMEventWMSessionNeedIndex, False)
|
||||||
' der Parameter WMEntityDocument definiert, dass nur Dokumenttypen und keine
|
' der Parameter WMEntityDocument definiert, dass nur Dokumenttypen und keine
|
||||||
' Ordnertypen ausgelesen werden
|
' Ordnertypen ausgelesen werden
|
||||||
oDokumentTypen = oSession.GetWMObjectTypes(WINDREAMLib.WMEntity.WMEntityDocument)
|
_DocumentTypes = _session.GetWMObjectTypes(WINDREAMLib.WMEntity.WMEntityDocument)
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
Return False
|
Return False
|
||||||
End Try
|
End Try
|
||||||
@@ -288,80 +291,18 @@ Public Class ClassWindream
|
|||||||
''' <remarks></remarks>
|
''' <remarks></remarks>
|
||||||
Public Shared Function GetObjecttypesAsObjects() As WMObjects
|
Public Shared Function GetObjecttypesAsObjects() As WMObjects
|
||||||
Try
|
Try
|
||||||
Return oDokumentTypen
|
Return _DocumentTypes
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Fehlernachricht:" & vbNewLine & ex.Message, MsgBoxStyle.Critical, "Unexpected error inm Auslesen der Objekttypen")
|
MsgBox("Fehlernachricht:" & vbNewLine & ex.Message, MsgBoxStyle.Critical, "Unexpected error inm Auslesen der Objekttypen")
|
||||||
Return Nothing
|
Return Nothing
|
||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Liefert alle Objekttypen des aktuellen Servers als Array aus Strings.
|
|
||||||
''' </summary>
|
|
||||||
''' <returns>Array mit allen Objekttypen als Strings</returns>
|
|
||||||
''' <remarks></remarks>
|
|
||||||
Public Function GetObjecttypesAsStrings() As String()
|
|
||||||
|
|
||||||
Try
|
|
||||||
Dim objektTypenStr(Me.oDokumentTypen.Count) As String
|
|
||||||
|
|
||||||
For i As Integer = 0 To Me.oDokumentTypen.Count
|
|
||||||
objektTypenStr(i) = Me.oDokumentTypen.Item(i).aName
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return objektTypenStr
|
|
||||||
|
|
||||||
Catch ex As Exception
|
|
||||||
MsgBox("Fehlernachricht:" & vbNewLine & ex.Message, MsgBoxStyle.Critical, "Unexpected error inm Auslesen der Objekttypen als String")
|
|
||||||
Return Nothing
|
|
||||||
End Try
|
|
||||||
|
|
||||||
End Function
|
|
||||||
Public Function GetTypeOfIndex(ByVal indexname As String) As Integer
|
|
||||||
Try
|
|
||||||
Dim oAttribute = oSession.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityAttribute, indexname)
|
|
||||||
Dim vType = oAttribute.getVariableValue("dwAttrType")
|
|
||||||
Return vType
|
|
||||||
Catch ex As Exception
|
|
||||||
Return Nothing
|
|
||||||
End Try
|
|
||||||
End Function
|
|
||||||
Public Shared Function GetSystemIndices(ByVal name As String)
|
|
||||||
Dim oObjectType As WMObject
|
|
||||||
' den Objekttyp laden
|
|
||||||
oObjectType = oSession.GetWMObjectByName(WMEntityObjectType, name)
|
|
||||||
|
|
||||||
|
|
||||||
Dim msg As String
|
|
||||||
Dim oSystemIndexes = oObjectType.GetVariableNames(1, False)
|
|
||||||
msg = "System indices (internal column names): " & vbNewLine
|
|
||||||
For Each oSystemIndex In oSystemIndexes
|
|
||||||
msg = msg & vbNewLine & oSystemIndex
|
|
||||||
Next
|
|
||||||
MsgBox(msg)
|
|
||||||
|
|
||||||
|
|
||||||
End Function
|
|
||||||
Public Shared Function GetTypIndexNames(ByVal name As String)
|
|
||||||
Dim oObjectType As WMObject
|
|
||||||
' den Objekttyp laden
|
|
||||||
oObjectType = oSession.GetWMObjectByName(WMEntityObjectType, name)
|
|
||||||
|
|
||||||
|
|
||||||
Dim msg As String
|
|
||||||
Dim oSystemIndexes = oObjectType.GetVariableNames(2, False)
|
|
||||||
msg = "Type Indices (type Index names): " & vbNewLine
|
|
||||||
For Each oSystemIndex In oSystemIndexes
|
|
||||||
msg = msg & vbNewLine & oSystemIndex
|
|
||||||
Next
|
|
||||||
MsgBox(msg)
|
|
||||||
|
|
||||||
|
|
||||||
End Function
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Liefert alle Indexe eines Objekttypen.
|
''' Liefert alle Indexe eines Objekttypen.
|
||||||
''' </summary>
|
''' </summary>
|
||||||
''' <param name="name">Name des Objekttyps</param>
|
''' <param name="Objecttype_name">Name des Objekttyps</param>
|
||||||
''' <returns>Array mit allen Objekttyp zugeordneten Indexen als String</returns>
|
''' <returns>Array mit allen Objekttyp zugeordneten Indexen als String</returns>
|
||||||
''' <remarks></remarks>
|
''' <remarks></remarks>
|
||||||
Public Shared Function GetIndicesByObjecttype(ByVal Objecttype_name As String) As String()
|
Public Shared Function GetIndicesByObjecttype(ByVal Objecttype_name As String) As String()
|
||||||
@@ -373,7 +314,7 @@ Public Class ClassWindream
|
|||||||
Dim oRelProperties As WMObjectRelationClass
|
Dim oRelProperties As WMObjectRelationClass
|
||||||
|
|
||||||
' den Objekttyp laden
|
' den Objekttyp laden
|
||||||
oObjectType = oSession.GetWMObjectByName(WMEntityObjectType, Objecttype_name)
|
oObjectType = _session.GetWMObjectByName(WMEntityObjectType, Objecttype_name)
|
||||||
|
|
||||||
' Beziehung zu Indizes des Objekttyp auslesen
|
' Beziehung zu Indizes des Objekttyp auslesen
|
||||||
oIndexAttributes = oObjectType.GetWMObjectRelationByName("TypeAttributes")
|
oIndexAttributes = oObjectType.GetWMObjectRelationByName("TypeAttributes")
|
||||||
@@ -406,31 +347,6 @@ Public Class ClassWindream
|
|||||||
Return Nothing
|
Return Nothing
|
||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
''' <summary>
|
|
||||||
''' Liefert einen Objekttyp als WMObject an Hand dessen Name.
|
|
||||||
''' </summary>
|
|
||||||
''' <param name="objekttypName">Name des Objekttyps</param>
|
|
||||||
''' <returns>Objekttyp als WMObject</returns>
|
|
||||||
''' <remarks></remarks>
|
|
||||||
Public Function GetObjecttypeByName(ByVal objekttypName As String) As WMObject
|
|
||||||
Try
|
|
||||||
' alle Objekttypen auslesen
|
|
||||||
Dim oObjectTypes As WMObjects = Me.oSession.GetWMObjectTypes(WINDREAMLib.WMEntity.WMEntityDocument)
|
|
||||||
|
|
||||||
' alle Objekttypen durchlaufen und nach dem mit dem angegebenen Namen suchen
|
|
||||||
For Each oObjectType As WMObject In oObjectTypes
|
|
||||||
If oObjectType.aName = objekttypName Then
|
|
||||||
Return oObjectType
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
|
|
||||||
Return Nothing
|
|
||||||
|
|
||||||
Catch ex As Exception
|
|
||||||
MsgBox("Es konnte ein Objekttyp nicht erstellt werden." & vbNewLine & vbNewLine & "Fehlernachricht:" & vbNewLine & ex.Message, MsgBoxStyle.Exclamation, "Objekttyp konnte nicht erstellt werden")
|
|
||||||
Return Nothing
|
|
||||||
End Try
|
|
||||||
End Function
|
|
||||||
|
|
||||||
''' <summary>
|
''' <summary>
|
||||||
''' Überprüft ob der angegebene Index im Objekttyp existiert
|
''' Überprüft ob der angegebene Index im Objekttyp existiert
|
||||||
@@ -467,7 +383,7 @@ Public Class ClassWindream
|
|||||||
''' <remarks></remarks>
|
''' <remarks></remarks>
|
||||||
Public Shared Function IsLoggedIn() As Boolean
|
Public Shared Function IsLoggedIn() As Boolean
|
||||||
Try
|
Try
|
||||||
Return oSession.aLoggedin
|
Return _session.aLoggedin
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Es konnte nicht erfolgreich geprüft werden, ob das Programm am windream-Server angemeldted ist." & vbNewLine & vbNewLine & "Fehlernachricht:" & vbNewLine & ex.Message, MsgBoxStyle.Critical, "Unexpected error in Loggedin-Prüfung")
|
MsgBox("Es konnte nicht erfolgreich geprüft werden, ob das Programm am windream-Server angemeldted ist." & vbNewLine & vbNewLine & "Fehlernachricht:" & vbNewLine & ex.Message, MsgBoxStyle.Critical, "Unexpected error in Loggedin-Prüfung")
|
||||||
End Try
|
End Try
|
||||||
@@ -490,119 +406,52 @@ Public Class ClassWindream
|
|||||||
Return ""
|
Return ""
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Liefert das Windream-Laufwerk des windream-Servers, in Form '[Laufwerksbuchstabe]:'. (z.B. 'W:')
|
|
||||||
''' </summary>
|
|
||||||
''' <returns>Laufwerksbuchstabe mit Doppelpunkt als String</returns>
|
|
||||||
''' <remarks></remarks>
|
|
||||||
'Public Function GetWindreamDriveLetter() As String
|
|
||||||
|
|
||||||
' Try
|
|
||||||
' Dim oControl As AISCONTROLDATACOMLib.AISControlData
|
|
||||||
' Dim sDrive As String = ""
|
|
||||||
|
|
||||||
' oControl = New AISCONTROLDATACOMLib.AISControlData
|
|
||||||
|
|
||||||
' sDrive = oControl.GetStringValue(&H10040003)
|
|
||||||
|
|
||||||
' Return sDrive & ":"
|
|
||||||
|
|
||||||
' Catch ex As Exception
|
|
||||||
' MsgBox("Fehlernachricht: " & ex.Message, MsgBoxStyle.Critical, "Unexpected error inm Auslesen des windream-Laufwerks")
|
|
||||||
' End Try
|
|
||||||
|
|
||||||
' Return ""
|
|
||||||
'End Function
|
|
||||||
|
|
||||||
''' <summary>
|
|
||||||
''' Liefert den Typen eines Indexes als Integer.
|
|
||||||
''' </summary>
|
|
||||||
''' <param name="indexname">Name des zu überprüfenden Indexfeldes</param>
|
|
||||||
''' <returns>Liefert eine Zahl, die einen Typen beschreibt</returns>
|
|
||||||
''' <remarks></remarks>
|
|
||||||
|
|
||||||
Public Function GetValuesfromAuswahlliste(ByVal _auswahlliste As String) As Object
|
|
||||||
Try
|
|
||||||
'Dim oAttribute = Me.oSession.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityAttribute, indexname)
|
|
||||||
'Dim vType = oAttribute.getVariableValue("vItems")
|
|
||||||
'Return vType
|
|
||||||
Dim oChoiceList = oSession.GetWMObjectByName(WMEntityChoiceList, _auswahlliste)
|
|
||||||
If Err.Number = 0 And TypeName(oChoiceList) <> "Nothing" Then
|
|
||||||
Dim Values = oChoiceList
|
|
||||||
Values = oChoiceList.GetVariableValue("vItems")
|
|
||||||
Dim anz As Integer = 0
|
|
||||||
|
|
||||||
For Each CLItem In Values
|
|
||||||
If oChoiceList.aName IsNot Nothing Then
|
|
||||||
anz += 1
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
Dim strListe(anz - 1)
|
|
||||||
Dim zahl As Integer = 0
|
|
||||||
For Each CLItem In Values
|
|
||||||
If oChoiceList.aName IsNot Nothing Then
|
|
||||||
strListe(zahl) = CLItem
|
|
||||||
zahl += 1
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
Return strListe
|
|
||||||
Else
|
|
||||||
MsgBox("Auswahlliste: " & _auswahlliste & " nicht gefunden!", MsgBoxStyle.Critical, "Fehler:")
|
|
||||||
Return Nothing
|
|
||||||
End If
|
|
||||||
|
|
||||||
Catch ex As Exception
|
|
||||||
MsgBox(ex.Message, MsgBoxStyle.Critical, "Fehler in GetValuesfromAuswahlliste:")
|
|
||||||
Return Nothing
|
|
||||||
End Try
|
|
||||||
End Function
|
|
||||||
#End Region
|
#End Region
|
||||||
Public Shared Function Stream_File(ByVal filenameQuelle As String, ByVal newfilename As String)
|
Public Shared Function Stream_File(ByVal SourceFilePath As String, ByVal NewFileName As String)
|
||||||
On Error Resume Next
|
_currentWMObject = Nothing
|
||||||
aktWMObject = Nothing
|
|
||||||
Dim Zielverzeichnis As String = Path.GetDirectoryName(newfilename)
|
Dim oWindreamFilename As String = NewFileName
|
||||||
If My.Computer.FileSystem.DirectoryExists(Zielverzeichnis) = False Then
|
Dim oFileName As String = NewFileName
|
||||||
My.Computer.FileSystem.CreateDirectory(Zielverzeichnis)
|
Dim oWDriveRegex As New Regex("^\w{1}:")
|
||||||
|
|
||||||
|
If oWDriveRegex.IsMatch(NewFileName) Then
|
||||||
|
oFileName = oWDriveRegex.Replace(NewFileName, vWLaufwerk)
|
||||||
|
oWindreamFilename = oWDriveRegex.Replace(NewFileName, String.Empty)
|
||||||
|
Else
|
||||||
|
oWindreamFilename = NewFileName.Replace(vWLaufwerk, String.Empty)
|
||||||
|
End If
|
||||||
|
|
||||||
|
'If NewFileName.StartsWith("W:") Then
|
||||||
|
' oFileName = NewFileName.Replace("W:", vWLaufwerk)
|
||||||
|
' oWindreamFilename = NewFileName.Replace("W:", String.Empty)
|
||||||
|
'Else
|
||||||
|
' oWindreamFilename = NewFileName.Replace(vWLaufwerk, String.Empty)
|
||||||
|
'End If
|
||||||
|
|
||||||
|
Dim oSourceFilename As String = Path.GetFileName(SourceFilePath)
|
||||||
|
Dim oDestination As String = Path.GetDirectoryName(oFileName)
|
||||||
|
|
||||||
|
If My.Computer.FileSystem.DirectoryExists(oDestination) = False Then
|
||||||
|
My.Computer.FileSystem.CreateDirectory(oDestination)
|
||||||
LOGGER.Info(" - Zielverzeichnis neu erzeugt!")
|
LOGGER.Info(" - Zielverzeichnis neu erzeugt!")
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Const STREAM_BinaryObject = "BinaryObject"
|
|
||||||
|
|
||||||
LOGGER.Info(" ...Stream_File wurde gestartet")
|
LOGGER.Info(" ...Stream_File wurde gestartet")
|
||||||
Dim windreamFilename As String = ""
|
|
||||||
' Objekt für Datei und Zielverzeichnis anlegen
|
' Objekt für Datei und Zielverzeichnis anlegen
|
||||||
Dim Quelldatei_Name As String = Path.GetFileName(filenameQuelle)
|
|
||||||
|
|
||||||
LOGGER.Info(" ...Quelldatei gelesen")
|
LOGGER.Info(" ...Quelldatei gelesen")
|
||||||
'"Version-KZ entfernen
|
|
||||||
newfilename = newfilename.Replace("\\", "\")
|
|
||||||
windreamFilename = newfilename.Substring(2)
|
|
||||||
If windreamFilename.Contains("[%Version]") Then
|
|
||||||
windreamFilename = windreamFilename.Replace("[%Version]", "")
|
|
||||||
newfilename = windreamFilename
|
|
||||||
End If
|
|
||||||
|
|
||||||
If My.Computer.FileSystem.DirectoryExists(Zielverzeichnis) Then
|
If My.Computer.FileSystem.DirectoryExists(oDestination) Then
|
||||||
LOGGER.Info(" ...targetPath existiert")
|
LOGGER.Info(" ...targetPath existiert")
|
||||||
' Überprüfen ob der zu Kopieren notwendige Speicherplatz auf Ziellaufwerk vorhanden ist
|
' Überprüfen ob der zu Kopieren notwendige Speicherplatz auf Ziellaufwerk vorhanden ist
|
||||||
Dim dvr As New DriveInfo(vWLaufwerk & ":")
|
|
||||||
Dim freeSpace = dvr.TotalFreeSpace
|
|
||||||
|
|
||||||
Dim info As New FileInfo(filenameQuelle)
|
Dim oFileInfo As New FileInfo(SourceFilePath)
|
||||||
' Get length of the file.
|
Dim oFileLength As Long = oFileInfo.Length
|
||||||
Dim length As Long = info.Length
|
|
||||||
If freeSpace < length Then
|
|
||||||
If USER_LANGUAGE = "de-DE" Then
|
|
||||||
MsgBox("Auf dem Zielverzeichnis ist nicht genug Speicherplatz zum Übertragen frei.", MsgBoxStyle.Exclamation, "Nicht genug Speicherplatz")
|
|
||||||
Else
|
|
||||||
MsgBox("Not enough diskspace in Target-Directory.", MsgBoxStyle.Exclamation, "Not enough diskspace")
|
|
||||||
End If
|
|
||||||
|
|
||||||
Return -10
|
|
||||||
End If
|
|
||||||
|
|
||||||
LOGGER.Info(" ...Datei kopieren von '" & filenameQuelle & "' nach '" & newfilename & "'.")
|
LOGGER.Info(" ...Datei kopieren von '" & SourceFilePath & "' nach '" & NewFileName & "'.")
|
||||||
Dim Connect
|
Dim Connect
|
||||||
Dim Session
|
Dim Session
|
||||||
Dim WMObject
|
Dim WMObject
|
||||||
@@ -613,13 +462,6 @@ Public Class ClassWindream
|
|||||||
LOGGER.Info(" ...Connect definieren: CreateObject('Windream.WMConnect')")
|
LOGGER.Info(" ...Connect definieren: CreateObject('Windream.WMConnect')")
|
||||||
Connect = CreateObject("Windream.WMConnect")
|
Connect = CreateObject("Windream.WMConnect")
|
||||||
aFileIO = New WMOTOOLLib.WMFileIO
|
aFileIO = New WMOTOOLLib.WMFileIO
|
||||||
'If My.Settings.DLL_WMOTOOL = "" Then
|
|
||||||
' aFileIO = New WMOTOOLLib.WMFileIO
|
|
||||||
' LOGGER.Info(" ...Direkter Verweis auf New WMOTOOLLib.WMFileIO")
|
|
||||||
'Else
|
|
||||||
' aFileIO = CreateObject(My.Settings.DLL_WMOTOOL) 'WMOTool.WMFileIO oder WMOTOOLLib.WMFileIO
|
|
||||||
' LOGGER.Info(" ...Verwendeter Verweis aus Anwendungsstring: '" & My.Settings.DLL_WMOTOOL & "'")
|
|
||||||
'End If
|
|
||||||
|
|
||||||
wmbrwsr = CreateObject("WMOBrws.ServerBrowser")
|
wmbrwsr = CreateObject("WMOBrws.ServerBrowser")
|
||||||
'==================================================================
|
'==================================================================
|
||||||
@@ -642,7 +484,7 @@ Public Class ClassWindream
|
|||||||
LOGGER.Info(" >> Login on dms-Server failed")
|
LOGGER.Info(" >> Login on dms-Server failed")
|
||||||
' MsgBox("Login failed. ")
|
' MsgBox("Login failed. ")
|
||||||
End If
|
End If
|
||||||
oSession = Session
|
_session = Session
|
||||||
Const WMCOMEventWMSessionNeedIndex = 1
|
Const WMCOMEventWMSessionNeedIndex = 1
|
||||||
|
|
||||||
'windream Objekte erstellen ohne Indexierungs-Event
|
'windream Objekte erstellen ohne Indexierungs-Event
|
||||||
@@ -650,10 +492,10 @@ Public Class ClassWindream
|
|||||||
'==================================================================
|
'==================================================================
|
||||||
' check if files exist
|
' check if files exist
|
||||||
'==================================================================
|
'==================================================================
|
||||||
LOGGER.Info(" ...ÜBERPRÜFTER DATEINAME => " & windreamFilename)
|
LOGGER.Info(" ...ÜBERPRÜFTER DATEINAME => " & oWindreamFilename)
|
||||||
Dim wdFilexists As Boolean
|
Dim wdFilexists As Boolean
|
||||||
LOGGER.Info(" ...Versuch auf die Datei in W: zuzugreifen und zu sperren...")
|
LOGGER.Info(" ...Versuch auf die Datei in W: zuzugreifen und zu sperren...")
|
||||||
wdFilexists = Session.WMObjectExists(WMEntityDocument, windreamFilename, 0, 0)
|
wdFilexists = Session.WMObjectExists(WMEntityDocument, oWindreamFilename, 0, 0)
|
||||||
Err.Clear()
|
Err.Clear()
|
||||||
If wdFilexists = False Then
|
If wdFilexists = False Then
|
||||||
LOGGER.Info(" ...Datei ist NICHT vorhanden, kann also einfach neu angelegt werden")
|
LOGGER.Info(" ...Datei ist NICHT vorhanden, kann also einfach neu angelegt werden")
|
||||||
@@ -661,7 +503,7 @@ Public Class ClassWindream
|
|||||||
'==================================================================
|
'==================================================================
|
||||||
' create an object
|
' create an object
|
||||||
'==================================================================
|
'==================================================================
|
||||||
WMObject = Session.GetNewWMObjectFS(WMEntityDocument, windreamFilename, WMObjectEditModeObject) 'WMEntityDocument, windreamFilename, WMObjectEditModeObject
|
WMObject = Session.GetNewWMObjectFS(WMEntityDocument, oWindreamFilename, WMObjectEditModeObject) 'WMEntityDocument, windreamFilename, WMObjectEditModeObject
|
||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" FEHLER: WMObject konnte nicht erzeugt werden - Error: '" & Err.Description & "'")
|
LOGGER.Info(" FEHLER: WMObject konnte nicht erzeugt werden - Error: '" & Err.Description & "'")
|
||||||
'MsgBox(Err.Description)
|
'MsgBox(Err.Description)
|
||||||
@@ -670,43 +512,54 @@ Public Class ClassWindream
|
|||||||
Else
|
Else
|
||||||
' wenn auf die Datei zugeriffen werden konnte ist sie bereits vorhanden -> Datum anhängen
|
' wenn auf die Datei zugeriffen werden konnte ist sie bereits vorhanden -> Datum anhängen
|
||||||
LOGGER.Info(" ...Es konnte zugegriffen werden -> DATEI IST BEREITS VORHANDEN")
|
LOGGER.Info(" ...Es konnte zugegriffen werden -> DATEI IST BEREITS VORHANDEN")
|
||||||
If CURRENT_DOKART_DUPLICATE_HANDLING = "Default" Or CURRENT_DOKART_DUPLICATE_HANDLING = "Question" Then
|
|
||||||
''##########
|
|
||||||
Dim msg = String.Format("Eine Datei mit identischem Namen " & vbNewLine & "'{0}'" & vbNewLine & "existiert bereits!" & vbNewLine & "Wollen Sie die bestehende Datei ersetzen?", newfilename)
|
Select Case CURRENT_DOKART_DUPLICATE_HANDLING
|
||||||
If USER_LANGUAGE <> "de-DE" Then
|
|
||||||
msg = "There is already a file with the same name! Would You like to replace the file?"
|
Case "New version"
|
||||||
End If
|
LOGGER.Info("Creating new version of file [{0}]", NewFileName)
|
||||||
Dim result As MsgBoxResult
|
oWindreamFilename = ClassFilehandle.Versionierung_Datei(NewFileName).ToString.Substring(2)
|
||||||
result = MessageBox.Show(msg, "File alredy exists:", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
CURRENT_NEWFILENAME = oWindreamFilename
|
||||||
If result = MsgBoxResult.No Then
|
Case "Question"
|
||||||
windreamFilename = ClassFilehandle.Versionierung_Datei(newfilename).ToString.Substring(2)
|
Dim oMessage = $"Eine Datei mit identischem Namen {vbNewLine}'{NewFileName}'{vbNewLine}existiert bereits!{vbNewLine}Wollen Sie die bestehende Datei ersetzen?"
|
||||||
Else
|
If USER_LANGUAGE <> "de-DE" Then
|
||||||
If Delete_WDFile(windreamFilename) = False Then
|
oMessage = $"There is already a file with the name {NewFileName}!{vbNewLine}Would You like to replace the file?"
|
||||||
|
End If
|
||||||
|
|
||||||
|
Dim oResult = MessageBox.Show(oMessage, "File exists", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
|
||||||
|
|
||||||
|
If oResult = DialogResult.No Then
|
||||||
|
oWindreamFilename = ClassFilehandle.Versionierung_Datei(NewFileName).ToString.Substring(2)
|
||||||
|
Else
|
||||||
|
If Delete_WDFile(oWindreamFilename) = False Then
|
||||||
|
Return False
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
Case Else
|
||||||
|
If Delete_WDFile(oWindreamFilename) = False Then
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
End If
|
End Select
|
||||||
ElseIf CURRENT_DOKART_DUPLICATE_HANDLING = "New version" Then
|
|
||||||
windreamFilename = ClassFilehandle.Versionierung_Datei(newfilename).ToString.Substring(2)
|
WMObject = Session.GetNewWMObjectFS(1, oWindreamFilename, 31) 'WMEntityDocument, windreamFilename, WMObjectEditModeObject
|
||||||
End If
|
|
||||||
WMObject = Session.GetNewWMObjectFS(1, windreamFilename, 31) 'WMEntityDocument, windreamFilename, WMObjectEditModeObject
|
|
||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" FEHLER: Neues WMObject (Kopie) konnte nicht erzeugt werden - Error: '" & Err.Description & "'")
|
LOGGER.Info(" FEHLER: Neues WMObject (Kopie) konnte nicht erzeugt werden - Error: '" & Err.Description & "'")
|
||||||
'MsgBox(Err.Description)
|
'MsgBox(Err.Description)
|
||||||
End If
|
End If
|
||||||
LOGGER.Info(" ...WMObject zugewiesen")
|
LOGGER.Info(" ...WMObject zugewiesen")
|
||||||
End If
|
End If
|
||||||
LOGGER.Info(" ...ENDGÜLTIGER DATEINAME => " & windreamFilename)
|
LOGGER.Info(" ...ENDGÜLTIGER DATEINAME => " & oWindreamFilename)
|
||||||
If WMObject IsNot Nothing Then
|
If WMObject IsNot Nothing Then
|
||||||
newfilename = vWLaufwerk & ":" & windreamFilename
|
'NewFileName = vWLaufwerk & ":" & oWindreamFilename
|
||||||
' lock object for file system access (to change the file itself)
|
' lock object for file system access (to change the file itself)
|
||||||
WMObject.lock()
|
WMObject.lock()
|
||||||
' set fileIO the local source file
|
' set fileIO the local source file
|
||||||
aFileIO.bstrOriginalFileName = filenameQuelle
|
aFileIO.bstrOriginalFileName = SourceFilePath
|
||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" FEHLER: fileIO konnte nicht gesetzt werden - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
LOGGER.Info(" FEHLER: fileIO konnte nicht gesetzt werden - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
||||||
LOGGER.Info(" HINWEIS: Überprüfen Sie den Verweis auf die Bibliotheken 'WMOTool.WMFileIO' UND 'WMOTOOLLib.WMFileIO' und ändern diese in den Anwendungseinstellungen (DLL_WMOTOOL)'")
|
LOGGER.Info(" HINWEIS: Überprüfen Sie den Verweis auf die Bibliotheken 'WMOTool.WMFileIO' UND 'WMOTOOLLib.WMFileIO' und ändern diese in den Anwendungseinstellungen (DLL_WMOTOOL)'")
|
||||||
WMObject.Unlock()
|
WMObject.Unlock()
|
||||||
Delete_WDFile(windreamFilename)
|
Delete_WDFile(oWindreamFilename)
|
||||||
|
|
||||||
Return False
|
Return False
|
||||||
' MsgBox(Err.Description)
|
' MsgBox(Err.Description)
|
||||||
@@ -716,7 +569,7 @@ Public Class ClassWindream
|
|||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" Unexpected error in OpenStream - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
LOGGER.Info(" Unexpected error in OpenStream - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
||||||
WMObject.Unlock()
|
WMObject.Unlock()
|
||||||
Delete_WDFile(windreamFilename)
|
Delete_WDFile(oWindreamFilename)
|
||||||
Return False
|
Return False
|
||||||
'MsgBox(Err.Description)
|
'MsgBox(Err.Description)
|
||||||
End If
|
End If
|
||||||
@@ -726,7 +579,7 @@ Public Class ClassWindream
|
|||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" Unexpected error in Zuweisen aWMStream zu aFileIO - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
LOGGER.Info(" Unexpected error in Zuweisen aWMStream zu aFileIO - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
||||||
WMObject.Unlock()
|
WMObject.Unlock()
|
||||||
Delete_WDFile(windreamFilename)
|
Delete_WDFile(oWindreamFilename)
|
||||||
Return False
|
Return False
|
||||||
'MsgBox(Err.Description)
|
'MsgBox(Err.Description)
|
||||||
End If
|
End If
|
||||||
@@ -735,7 +588,7 @@ Public Class ClassWindream
|
|||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" Unexpected error in FileIO.ImportOriginal(True) - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
LOGGER.Info(" Unexpected error in FileIO.ImportOriginal(True) - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
||||||
WMObject.Unlock()
|
WMObject.Unlock()
|
||||||
Delete_WDFile(windreamFilename)
|
Delete_WDFile(oWindreamFilename)
|
||||||
Return False
|
Return False
|
||||||
' MsgBox(Err.Description)
|
' MsgBox(Err.Description)
|
||||||
End If
|
End If
|
||||||
@@ -745,7 +598,7 @@ Public Class ClassWindream
|
|||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" Unexpected error in aWMStream.Close() - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
LOGGER.Info(" Unexpected error in aWMStream.Close() - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
||||||
WMObject.Unlock()
|
WMObject.Unlock()
|
||||||
Delete_WDFile(windreamFilename)
|
Delete_WDFile(oWindreamFilename)
|
||||||
Return False
|
Return False
|
||||||
'MsgBox(Err.Description)
|
'MsgBox(Err.Description)
|
||||||
End If
|
End If
|
||||||
@@ -754,7 +607,7 @@ Public Class ClassWindream
|
|||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" Unexpected error in WMObject.save - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
LOGGER.Info(" Unexpected error in WMObject.save - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
||||||
WMObject.Unlock()
|
WMObject.Unlock()
|
||||||
Delete_WDFile(windreamFilename)
|
Delete_WDFile(oWindreamFilename)
|
||||||
Return False
|
Return False
|
||||||
'MsgBox(Err.Description)
|
'MsgBox(Err.Description)
|
||||||
End If
|
End If
|
||||||
@@ -764,37 +617,41 @@ Public Class ClassWindream
|
|||||||
If Err.Number > 0 Then
|
If Err.Number > 0 Then
|
||||||
LOGGER.Info(" Unexpected error in WMObject.unlock - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
LOGGER.Info(" Unexpected error in WMObject.unlock - Datei wird wieder gelöscht - Error: '" & Err.Description & "'")
|
||||||
WMObject.Unlock()
|
WMObject.Unlock()
|
||||||
Delete_WDFile(windreamFilename)
|
Delete_WDFile(oWindreamFilename)
|
||||||
Return False
|
Return False
|
||||||
'MsgBox(Err.Description)
|
'MsgBox(Err.Description)
|
||||||
End If
|
End If
|
||||||
'DATEI GRÖSSE ERMITTELN - MANCHMAL KOMMT ES VOR DAS DATEIGRÖße 0 ist
|
'DATEI GRÖSSE ERMITTELN - MANCHMAL KOMMT ES VOR DAS DATEIGRÖße 0 ist
|
||||||
Dim info2 As New FileInfo(newfilename)
|
Dim info2 As New FileInfo(oFileName)
|
||||||
Dim length1 As Long = info2.Length
|
Dim length1 As Long = info2.Length
|
||||||
LOGGER.Info(" ...Length der Zieldatei: " & length1.ToString)
|
LOGGER.Info(" ...Length der Zieldatei: " & length1.ToString)
|
||||||
If length > 0 And Err.Number = 0 Then
|
If oFileLength > 0 And Err.Number = 0 Then
|
||||||
Dim p As String
|
|
||||||
If windreamFilename.StartsWith("\") Then
|
'Dim p As String
|
||||||
If windreamFilename.StartsWith("\\") Then
|
'If oWindreamFilename.StartsWith("\") Then
|
||||||
p = windreamFilename.Replace("\\", "\")
|
' If oWindreamFilename.StartsWith("\\") Then
|
||||||
Else
|
' p = oWindreamFilename.Replace("\\", "\")
|
||||||
p = windreamFilename
|
' Else
|
||||||
End If
|
' p = oWindreamFilename
|
||||||
Else
|
' End If
|
||||||
p = "\" & windreamFilename
|
'Else
|
||||||
End If
|
' p = "\" & oWindreamFilename
|
||||||
CURRENT_NEWFILENAME = vWLaufwerk & ":" & p
|
'End If
|
||||||
|
'CURRENT_NEWFILENAME = vWLaufwerk & ":" & p
|
||||||
|
|
||||||
|
CURRENT_NEWFILENAME = oFileName
|
||||||
|
|
||||||
LOGGER.Info(" >> Datei '" & CURRENT_NEWFILENAME & "' wurde erfolgreich importiert!")
|
LOGGER.Info(" >> Datei '" & CURRENT_NEWFILENAME & "' wurde erfolgreich importiert!")
|
||||||
aktWMObject = WMObject
|
_currentWMObject = WMObject
|
||||||
Return True
|
Return True
|
||||||
Else
|
Else
|
||||||
Delete_WDFile(windreamFilename)
|
Delete_WDFile(oWindreamFilename)
|
||||||
Console.WriteLine(Err.Number.ToString)
|
LOGGER.Info("Error Number: [{0}]", Err.Number)
|
||||||
LOGGER.Info(" Unexpected error in Datei-Übertragen - FileLength ist 0, Übertragene Datei wurde gelöscht")
|
LOGGER.Info(" Unexpected error in Datei-Übertragen - FileLength ist 0, Übertragene Datei wurde gelöscht")
|
||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
Else
|
Else
|
||||||
LOGGER.Info(" Could not create a WMObject for file:'" & windreamFilename)
|
LOGGER.Info(" Could not create a WMObject for file:'" & oWindreamFilename)
|
||||||
If Not Err() Is Nothing Then
|
If Not Err() Is Nothing Then
|
||||||
If Not Err.Description Is Nothing Then
|
If Not Err.Description Is Nothing Then
|
||||||
LOGGER.Info(Err.Description)
|
LOGGER.Info(Err.Description)
|
||||||
@@ -815,7 +672,7 @@ Public Class ClassWindream
|
|||||||
End If
|
End If
|
||||||
Dim WMObject As WINDREAMLib.WMObject '= CreateObject("WINDREAMLib.WMObject") 'New WINDREAMLib.WMObject
|
Dim WMObject As WINDREAMLib.WMObject '= CreateObject("WINDREAMLib.WMObject") 'New WINDREAMLib.WMObject
|
||||||
Try
|
Try
|
||||||
WMObject = oSession.GetWMObjectByPath(WINDREAMLib.WMEntity.WMEntityDocument, WD_File) 'WINDREAMLib.WMEntity.WMEntityDocument
|
WMObject = _session.GetWMObjectByPath(WINDREAMLib.WMEntity.WMEntityDocument, WD_File) 'WINDREAMLib.WMEntity.WMEntityDocument
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
LOGGER.Info(">> Could not create WMObject for file '" & WD_File & "' - so it is not existing")
|
LOGGER.Info(">> Could not create WMObject for file '" & WD_File & "' - so it is not existing")
|
||||||
LOGGER.Error(ex.Message)
|
LOGGER.Error(ex.Message)
|
||||||
@@ -848,7 +705,7 @@ Public Class ClassWindream
|
|||||||
' den Dokumenttyp schreiben
|
' den Dokumenttyp schreiben
|
||||||
LOGGER.Info(" ## Indexieren wird gestartet ##")
|
LOGGER.Info(" ## Indexieren wird gestartet ##")
|
||||||
' ein windream-Objekt der Datei anlegen
|
' ein windream-Objekt der Datei anlegen
|
||||||
WMObject = aktWMObject 'oSession.GetWMObjectByPath(WINDREAMLib.WMEntity.WMEntityDocument, WD_File)
|
WMObject = _currentWMObject 'oSession.GetWMObjectByPath(WINDREAMLib.WMEntity.WMEntityDocument, WD_File)
|
||||||
Try
|
Try
|
||||||
LOGGER.Info(" ...Datei wird gesperrt")
|
LOGGER.Info(" ...Datei wird gesperrt")
|
||||||
' die Datei sperren
|
' die Datei sperren
|
||||||
@@ -873,7 +730,7 @@ Public Class ClassWindream
|
|||||||
If WMObject.aObjectType.aName = "Standard" Then
|
If WMObject.aObjectType.aName = "Standard" Then
|
||||||
|
|
||||||
' ihr den entsprechenden Dokumenttyp zuweisen
|
' ihr den entsprechenden Dokumenttyp zuweisen
|
||||||
WMObject.aObjectType = oSession.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityObjectType, _WDObjekttyp)
|
WMObject.aObjectType = _session.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityObjectType, _WDObjekttyp)
|
||||||
' WMObject.aObjectType = Me.selectedProfile.Dokumenttyp
|
' WMObject.aObjectType = Me.selectedProfile.Dokumenttyp
|
||||||
LOGGER.Info(" ...Objekttyp wurde gesetzt")
|
LOGGER.Info(" ...Objekttyp wurde gesetzt")
|
||||||
Else
|
Else
|
||||||
@@ -963,7 +820,7 @@ Public Class ClassWindream
|
|||||||
' wenn der Datei noch kein Dokumenttyp zugewiesen wurde
|
' wenn der Datei noch kein Dokumenttyp zugewiesen wurde
|
||||||
If oDocument.aObjectType.aName <> _WDObjekttyp Then
|
If oDocument.aObjectType.aName <> _WDObjekttyp Then
|
||||||
' ihr den entsprechenden Dokumenttyp zuweisen
|
' ihr den entsprechenden Dokumenttyp zuweisen
|
||||||
oDocument.aObjectType = oSession.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityObjectType, _WDObjekttyp)
|
oDocument.aObjectType = _session.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityObjectType, _WDObjekttyp)
|
||||||
' WMObject.aObjectType = Me.selectedProfile.Dokumenttyp
|
' WMObject.aObjectType = Me.selectedProfile.Dokumenttyp
|
||||||
LOGGER.Info(" ...Objekttyp '" & oDocument.aObjectType.aName & "' wurde in '" & _WDObjekttyp & "' geändert.")
|
LOGGER.Info(" ...Objekttyp '" & oDocument.aObjectType.aName & "' wurde in '" & _WDObjekttyp & "' geändert.")
|
||||||
Else
|
Else
|
||||||
@@ -986,7 +843,7 @@ Public Class ClassWindream
|
|||||||
LOGGER.Info(" >> Indexierung von Index '" & indexname & "'")
|
LOGGER.Info(" >> Indexierung von Index '" & indexname & "'")
|
||||||
End If
|
End If
|
||||||
' das entsprechende Attribut aus windream auslesen
|
' das entsprechende Attribut aus windream auslesen
|
||||||
Dim oAttribute = oSession.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityAttribute, Indizes(i))
|
Dim oAttribute = _session.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityAttribute, Indizes(i))
|
||||||
' den Variablentyp (String, Integer, ...) auslesen
|
' den Variablentyp (String, Integer, ...) auslesen
|
||||||
Dim vType = oAttribute.getVariableValue("dwAttrType")
|
Dim vType = oAttribute.getVariableValue("dwAttrType")
|
||||||
' wenn in aValues an Position i ein Wert steht
|
' wenn in aValues an Position i ein Wert steht
|
||||||
@@ -1461,7 +1318,7 @@ Public Class ClassWindream
|
|||||||
Loop
|
Loop
|
||||||
' wenn die Datei existiert
|
' wenn die Datei existiert
|
||||||
If fileExists Then
|
If fileExists Then
|
||||||
WMObject = oSession.GetWMObjectByPath(WINDREAMLib.WMEntity.WMEntityDocument, filenameZiel)
|
WMObject = _session.GetWMObjectByPath(WINDREAMLib.WMEntity.WMEntityDocument, filenameZiel)
|
||||||
|
|
||||||
' eine Variable für den umgewandelten Indexwert anlegen (kein Typ, da noch unklar ist was reingeschrieben wird)
|
' eine Variable für den umgewandelten Indexwert anlegen (kein Typ, da noch unklar ist was reingeschrieben wird)
|
||||||
'Dim convertValue = Nothing
|
'Dim convertValue = Nothing
|
||||||
@@ -1472,7 +1329,7 @@ Public Class ClassWindream
|
|||||||
Try
|
Try
|
||||||
|
|
||||||
' ein windream-Objekt der Datei anlegen
|
' ein windream-Objekt der Datei anlegen
|
||||||
WMObject = oSession.GetWMObjectByPath(WINDREAMLib.WMEntity.WMEntityDocument, filenameZiel)
|
WMObject = _session.GetWMObjectByPath(WINDREAMLib.WMEntity.WMEntityDocument, filenameZiel)
|
||||||
If LogErrorsOnly = False Then
|
If LogErrorsOnly = False Then
|
||||||
LOGGER.Info(" - windream-Objekt der Datei erzeugt")
|
LOGGER.Info(" - windream-Objekt der Datei erzeugt")
|
||||||
LOGGER.Info(" - Ziel: W:\" & filenameZiel)
|
LOGGER.Info(" - Ziel: W:\" & filenameZiel)
|
||||||
@@ -1492,7 +1349,7 @@ Public Class ClassWindream
|
|||||||
' wenn der Datei noch kein Dokumenttyp zugewiesen wurde
|
' wenn der Datei noch kein Dokumenttyp zugewiesen wurde
|
||||||
If WMObject.aObjectType.aName = "Standard" Then
|
If WMObject.aObjectType.aName = "Standard" Then
|
||||||
' ihr den entsprechenden Dokumenttyp zuweisen
|
' ihr den entsprechenden Dokumenttyp zuweisen
|
||||||
WMObject.aObjectType = oSession.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityObjectType, _WDObjekttyp)
|
WMObject.aObjectType = _session.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityObjectType, _WDObjekttyp)
|
||||||
' WMObject.aObjectType = Me.selectedProfile.Dokumenttyp
|
' WMObject.aObjectType = Me.selectedProfile.Dokumenttyp
|
||||||
End If
|
End If
|
||||||
|
|
||||||
@@ -1873,7 +1730,7 @@ Public Class ClassWindream
|
|||||||
''' <remarks></remarks>
|
''' <remarks></remarks>
|
||||||
Public Shared Function GetTypeOfIndexAsIntByName(ByVal indexname As String) As Integer
|
Public Shared Function GetTypeOfIndexAsIntByName(ByVal indexname As String) As Integer
|
||||||
Try
|
Try
|
||||||
Dim oAttribute = oSession.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityAttribute, indexname)
|
Dim oAttribute = _session.GetWMObjectByName(WINDREAMLib.WMEntity.WMEntityAttribute, indexname)
|
||||||
Dim vType = oAttribute.getVariableValue("dwAttrType")
|
Dim vType = oAttribute.getVariableValue("dwAttrType")
|
||||||
Return vType
|
Return vType
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -1895,7 +1752,7 @@ Public Class ClassWindream
|
|||||||
Return input
|
Return input
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
LOGGER.Info("Fehler in CheckIndexValue: " & ex.Message)
|
LOGGER.Info("Fehler in CheckIndexValue: " & ex.Message)
|
||||||
LOGGER.Error(ex.message)
|
LOGGER.Error(ex.Message)
|
||||||
Return Nothing
|
Return Nothing
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
|
|||||||
60
Global_Indexer/Form1.Designer.vb
generated
Normal file
60
Global_Indexer/Form1.Designer.vb
generated
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class Form1
|
||||||
|
Inherits System.Windows.Forms.Form
|
||||||
|
|
||||||
|
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
Try
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
Finally
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Try
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Wird vom Windows Form-Designer benötigt.
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
|
||||||
|
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
|
||||||
|
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
Me.DocumentViewer1 = New DigitalData.Controls.DocumentViewer.DocumentViewer()
|
||||||
|
Me.Button1 = New System.Windows.Forms.Button()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'DocumentViewer1
|
||||||
|
'
|
||||||
|
Me.DocumentViewer1.Location = New System.Drawing.Point(24, 39)
|
||||||
|
Me.DocumentViewer1.Name = "DocumentViewer1"
|
||||||
|
Me.DocumentViewer1.Size = New System.Drawing.Size(493, 387)
|
||||||
|
Me.DocumentViewer1.TabIndex = 0
|
||||||
|
'
|
||||||
|
'Button1
|
||||||
|
'
|
||||||
|
Me.Button1.Location = New System.Drawing.Point(566, 150)
|
||||||
|
Me.Button1.Name = "Button1"
|
||||||
|
Me.Button1.Size = New System.Drawing.Size(75, 23)
|
||||||
|
Me.Button1.TabIndex = 1
|
||||||
|
Me.Button1.Text = "Button1"
|
||||||
|
Me.Button1.UseVisualStyleBackColor = True
|
||||||
|
'
|
||||||
|
'Form1
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(800, 450)
|
||||||
|
Me.Controls.Add(Me.Button1)
|
||||||
|
Me.Controls.Add(Me.DocumentViewer1)
|
||||||
|
Me.Name = "Form1"
|
||||||
|
Me.Text = "Form1"
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Friend WithEvents DocumentViewer1 As DigitalData.Controls.DocumentViewer.DocumentViewer
|
||||||
|
Friend WithEvents Button1 As Button
|
||||||
|
End Class
|
||||||
120
Global_Indexer/Form1.resx
Normal file
120
Global_Indexer/Form1.resx
Normal file
@@ -0,0 +1,120 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
8
Global_Indexer/Form1.vb
Normal file
8
Global_Indexer/Form1.vb
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
Public Class Form1
|
||||||
|
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
|
||||||
|
DocumentViewer1.Init(LOGCONFIG, VIEWER_LICENSE)
|
||||||
|
'\\dd-sto01\DD-DFSR01\SharedObjects\Public\Projekte\2.JPG
|
||||||
|
'\\dd-gan.local.digitaldata.works\DD-DFSR01\SharedObjects\Public\Projekte\2.JPG
|
||||||
|
DocumentViewer1.LoadFile("\\dd-gan.local.digitaldata.works\DD-DFSR01\UserObjects\UserFiles\schreiberm\Desktop\SimpleIndexer\File1.pdf")
|
||||||
|
End Sub
|
||||||
|
End Class
|
||||||
@@ -252,6 +252,12 @@
|
|||||||
<Compile Include="ClassWindream.vb" />
|
<Compile Include="ClassWindream.vb" />
|
||||||
<Compile Include="ClassEmailHeaderExtractor.vb" />
|
<Compile Include="ClassEmailHeaderExtractor.vb" />
|
||||||
<Compile Include="clsHotkey.vb" />
|
<Compile Include="clsHotkey.vb" />
|
||||||
|
<Compile Include="Form1.Designer.vb">
|
||||||
|
<DependentUpon>Form1.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Form1.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="frmAdministration.Designer.vb">
|
<Compile Include="frmAdministration.Designer.vb">
|
||||||
<DependentUpon>frmAdministration.vb</DependentUpon>
|
<DependentUpon>frmAdministration.vb</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
@@ -415,6 +421,9 @@
|
|||||||
<EmbeddedResource Include="AboutBox1.resx">
|
<EmbeddedResource Include="AboutBox1.resx">
|
||||||
<DependentUpon>AboutBox1.vb</DependentUpon>
|
<DependentUpon>AboutBox1.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="Form1.resx">
|
||||||
|
<DependentUpon>Form1.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmAdministration.en-US.resx">
|
<EmbeddedResource Include="frmAdministration.en-US.resx">
|
||||||
<DependentUpon>frmAdministration.vb</DependentUpon>
|
<DependentUpon>frmAdministration.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("2.0.0.8")>
|
<Assembly: AssemblyVersion("2.0.0.20")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
|
|
||||||
<Assembly: NeutralResourcesLanguageAttribute("")>
|
<Assembly: NeutralResourcesLanguageAttribute("")>
|
||||||
277
Global_Indexer/MyDataset.Designer.vb
generated
277
Global_Indexer/MyDataset.Designer.vb
generated
@@ -23141,36 +23141,47 @@ Namespace MyDatasetTableAdapters
|
|||||||
Me._adapter.TableMappings.Add(tableMapping)
|
Me._adapter.TableMappings.Add(tableMapping)
|
||||||
Me._adapter.DeleteCommand = New Global.System.Data.SqlClient.SqlCommand()
|
Me._adapter.DeleteCommand = New Global.System.Data.SqlClient.SqlCommand()
|
||||||
Me._adapter.DeleteCommand.Connection = Me.Connection
|
Me._adapter.DeleteCommand.Connection = Me.Connection
|
||||||
Me._adapter.DeleteCommand.CommandText = "DELETE FROM TBDD_INDEX_MAN_POSTPROCESSING"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (GUID = @GUID)"
|
Me._adapter.DeleteCommand.CommandText = "DELETE FROM TBDD_INDEX_MAN_POSTPROCESSING"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE (GUID = @Original_GUID)"
|
||||||
Me._adapter.DeleteCommand.CommandType = Global.System.Data.CommandType.Text
|
Me._adapter.DeleteCommand.CommandType = Global.System.Data.CommandType.Text
|
||||||
Me._adapter.DeleteCommand.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, "", "", ""))
|
Me._adapter.DeleteCommand.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.InsertCommand = New Global.System.Data.SqlClient.SqlCommand()
|
Me._adapter.InsertCommand = New Global.System.Data.SqlClient.SqlCommand()
|
||||||
Me._adapter.InsertCommand.Connection = Me.Connection
|
Me._adapter.InsertCommand.Connection = Me.Connection
|
||||||
Me._adapter.InsertCommand.CommandText = "INSERT INTO TBDD_INDEX_MAN_POSTPROCESSING"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" (IDXMAN_ID, C"& _
|
Me._adapter.InsertCommand.CommandText = "INSERT INTO [TBDD_INDEX_MAN_POSTPROCESSING] ([IDXMAN_ID], [VARIANT], [COMMENT], ["& _
|
||||||
"OMMENT, TYPE, FUNCTION1, FUNCTION2, TEXT1, TEXT2, TEXT3, SEQUENCE, ADDED_WHO, VA"& _
|
"TYPE], [FUNCTION1], [FUNCTION2], [TEXT1], [TEXT2], [TEXT3], [SEQUENCE], [ADDED_W"& _
|
||||||
"RIANT)"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"VALUES (@IDXMAN_ID,@COMMENT,@TYPE,@FUNCTION1,@FUNCTION2,@TEXT1,@T"& _
|
"HO], [ADDED_WHEN], [CHANGED_WHO], [CHANGED_WHEN]) VALUES (@IDXMAN_ID, @VARIANT, "& _
|
||||||
"EXT2,@TEXT3,@SEQUENCE,@ADDED_WHO,@VARIANT)"
|
"@COMMENT, @TYPE, @FUNCTION1, @FUNCTION2, @TEXT1, @TEXT2, @TEXT3, @SEQUENCE, @ADD"& _
|
||||||
|
"ED_WHO, @ADDED_WHEN, @CHANGED_WHO, @CHANGED_WHEN);"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SELECT GUID, IDXMAN_ID, VARI"& _
|
||||||
|
"ANT, COMMENT, TYPE, FUNCTION1, FUNCTION2, TEXT1, TEXT2, TEXT3, SEQUENCE, ADDED_W"& _
|
||||||
|
"HO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_INDEX_MAN_POSTPROCESSING WHE"& _
|
||||||
|
"RE (GUID = SCOPE_IDENTITY())"
|
||||||
Me._adapter.InsertCommand.CommandType = Global.System.Data.CommandType.Text
|
Me._adapter.InsertCommand.CommandType = Global.System.Data.CommandType.Text
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@IDXMAN_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "IDXMAN_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@IDXMAN_ID", Global.System.Data.SqlDbType.Int, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "IDXMAN_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COMMENT", Global.System.Data.SqlDbType.VarChar, 250, Global.System.Data.ParameterDirection.Input, 0, 0, "COMMENT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@VARIANT", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "VARIANT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TYPE", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "TYPE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COMMENT", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "COMMENT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@FUNCTION1", Global.System.Data.SqlDbType.VarChar, 250, Global.System.Data.ParameterDirection.Input, 0, 0, "FUNCTION1", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TYPE", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "TYPE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@FUNCTION2", Global.System.Data.SqlDbType.VarChar, 250, Global.System.Data.ParameterDirection.Input, 0, 0, "FUNCTION2", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@FUNCTION1", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "FUNCTION1", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT1", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT1", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@FUNCTION2", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "FUNCTION2", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT2", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT2", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT1", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT1", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT3", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT3", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT2", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT2", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SEQUENCE", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "SEQUENCE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT3", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT3", 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("@SEQUENCE", Global.System.Data.SqlDbType.Int, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "SEQUENCE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@VARIANT", Global.System.Data.SqlDbType.VarChar, 20, Global.System.Data.ParameterDirection.Input, 0, 0, "VARIANT", 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, 0, 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("@ADDED_WHEN", Global.System.Data.SqlDbType.DateTime, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "ADDED_WHEN", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHO", Global.System.Data.SqlDbType.VarChar, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHO", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
|
Me._adapter.InsertCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHEN", Global.System.Data.SqlDbType.DateTime, 0, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHEN", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.UpdateCommand = New Global.System.Data.SqlClient.SqlCommand()
|
Me._adapter.UpdateCommand = New Global.System.Data.SqlClient.SqlCommand()
|
||||||
Me._adapter.UpdateCommand.Connection = Me.Connection
|
Me._adapter.UpdateCommand.Connection = Me.Connection
|
||||||
Me._adapter.UpdateCommand.CommandText = "UPDATE TBDD_INDEX_MAN_POSTPROCESSING"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SET IDXMAN_ID = @IDXMA"& _
|
Me._adapter.UpdateCommand.CommandText = "UPDATE TBDD_INDEX_MAN_POSTPROCESSING"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"SET IDXMAN_ID = @IDXMA"& _
|
||||||
"N_ID, COMMENT = @COMMENT, TYPE = @TYPE, FUNCTION1 = @FUNCTION1, FUNCTION2 = @FUN"& _
|
"N_ID, VARIANT = @VARIANT, COMMENT = @COMMENT, TYPE = @TYPE, FUNCTION1 = @FUNCTIO"& _
|
||||||
"CTION2, TEXT1 = @TEXT1, TEXT2 = @TEXT2, TEXT3 = @TEXT3, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "& _
|
"N1, FUNCTION2 = @FUNCTION2, TEXT1 = @TEXT1, TEXT2 = @TEXT2, TEXT3 = @TEXT3, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" "& _
|
||||||
" SEQUENCE = @SEQUENCE, CHANGED_WHO = @CHANGED_WHO, VARIANT = @VARIANT"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE "& _
|
" SEQUENCE = @SEQUENCE, ADDED_WHO = @ADDED_WHO, ADDED_WHEN "& _
|
||||||
" (GUID = @GUID)"
|
"= @ADDED_WHEN, CHANGED_WHO = @CHANGED_WHO, CHANGED_WHEN = @CHANGED_WHEN"&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, IDXMAN_ID, VARIANT, COMMENT, TYPE,"& _
|
||||||
|
" FUNCTION1, FUNCTION2, TEXT1, TEXT2, TEXT3, SEQUENCE, ADDED_WHO, ADDED_WHEN, CHA"& _
|
||||||
|
"NGED_WHO, CHANGED_WHEN FROM TBDD_INDEX_MAN_POSTPROCESSING WHERE (GUID = @GUID)"
|
||||||
Me._adapter.UpdateCommand.CommandType = Global.System.Data.CommandType.Text
|
Me._adapter.UpdateCommand.CommandType = Global.System.Data.CommandType.Text
|
||||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@IDXMAN_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "IDXMAN_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@IDXMAN_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "IDXMAN_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@VARIANT", Global.System.Data.SqlDbType.VarChar, 20, Global.System.Data.ParameterDirection.Input, 0, 0, "VARIANT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COMMENT", Global.System.Data.SqlDbType.VarChar, 250, Global.System.Data.ParameterDirection.Input, 0, 0, "COMMENT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@COMMENT", Global.System.Data.SqlDbType.VarChar, 250, Global.System.Data.ParameterDirection.Input, 0, 0, "COMMENT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TYPE", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "TYPE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TYPE", Global.System.Data.SqlDbType.VarChar, 50, Global.System.Data.ParameterDirection.Input, 0, 0, "TYPE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@FUNCTION1", Global.System.Data.SqlDbType.VarChar, 250, Global.System.Data.ParameterDirection.Input, 0, 0, "FUNCTION1", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@FUNCTION1", Global.System.Data.SqlDbType.VarChar, 250, Global.System.Data.ParameterDirection.Input, 0, 0, "FUNCTION1", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
@@ -23179,8 +23190,11 @@ Namespace MyDatasetTableAdapters
|
|||||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT2", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT2", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT2", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT2", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT3", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT3", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@TEXT3", Global.System.Data.SqlDbType.VarChar, 100, Global.System.Data.ParameterDirection.Input, 0, 0, "TEXT3", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SEQUENCE", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "SEQUENCE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@SEQUENCE", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "SEQUENCE", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
|
Me._adapter.UpdateCommand.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.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@ADDED_WHEN", Global.System.Data.SqlDbType.DateTime, 8, Global.System.Data.ParameterDirection.Input, 0, 0, "ADDED_WHEN", 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("@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("@VARIANT", Global.System.Data.SqlDbType.VarChar, 20, Global.System.Data.ParameterDirection.Input, 0, 0, "VARIANT", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._adapter.UpdateCommand.Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@CHANGED_WHEN", Global.System.Data.SqlDbType.DateTime, 8, Global.System.Data.ParameterDirection.Input, 0, 0, "CHANGED_WHEN", 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, "", "", ""))
|
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
|
End Sub
|
||||||
|
|
||||||
@@ -23197,20 +23211,10 @@ Namespace MyDatasetTableAdapters
|
|||||||
Me._commandCollection = New Global.System.Data.SqlClient.SqlCommand(0) {}
|
Me._commandCollection = New Global.System.Data.SqlClient.SqlCommand(0) {}
|
||||||
Me._commandCollection(0) = New Global.System.Data.SqlClient.SqlCommand()
|
Me._commandCollection(0) = New Global.System.Data.SqlClient.SqlCommand()
|
||||||
Me._commandCollection(0).Connection = Me.Connection
|
Me._commandCollection(0).Connection = Me.Connection
|
||||||
Me._commandCollection(0).CommandText = "SELECT TBDD_INDEX_MAN_POSTPROCESSING.GUID, TBDD_INDEX_MAN_POSTPROCESSING.I"& _
|
Me._commandCollection(0).CommandText = "SELECT *"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM TBDD_INDEX_MAN_POSTPROCESSING"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"WHERE IDXMAN_ID IN (SELECT GUID FRO"& _
|
||||||
"DXMAN_ID, TBDD_INDEX_MAN_POSTPROCESSING.COMMENT, TBDD_INDEX_MAN_POSTPROCESSING.T"& _
|
"M TBDD_INDEX_MAN WHERE DOK_ID = @DOK_ID)"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)
|
||||||
"YPE, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBDD_INDEX_MAN_POSTPROCESSING.FUNCTION1, TBDD_IN"& _
|
|
||||||
"DEX_MAN_POSTPROCESSING.FUNCTION2, TBDD_INDEX_MAN_POSTPROCESSING.TEXT1, TBDD_INDE"& _
|
|
||||||
"X_MAN_POSTPROCESSING.TEXT2, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBDD_INDEX_MAN_POSTPROCES"& _
|
|
||||||
"SING.TEXT3, TBDD_INDEX_MAN_POSTPROCESSING.SEQUENCE, TBDD_INDEX_MAN_POSTPROCESSIN"& _
|
|
||||||
"G.ADDED_WHO, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBDD_INDEX_MAN_POSTPROCESSING.ADDED_WHEN"& _
|
|
||||||
", TBDD_INDEX_MAN_POSTPROCESSING.CHANGED_WHO, TBDD_INDEX_MAN_POSTPROCESSING.CHANG"& _
|
|
||||||
"ED_WHEN, "&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TBDD_INDEX_MAN_POSTPROCESSING.VARIANT"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"FROM "& _
|
|
||||||
" TBDD_INDEX_MAN_POSTPROCESSING INNER JOIN"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&" TB"& _
|
|
||||||
"DD_INDEX_MAN ON TBDD_INDEX_MAN_POSTPROCESSING.IDXMAN_ID = TBDD_INDEX_MAN.GUID"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&"W"& _
|
|
||||||
"HERE (TBDD_INDEX_MAN.DOK_ID = @DOK_ID)"
|
|
||||||
Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text
|
Me._commandCollection(0).CommandType = Global.System.Data.CommandType.Text
|
||||||
Me._commandCollection(0).Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@DOK_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "DOK_ID", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
Me._commandCollection(0).Parameters.Add(New Global.System.Data.SqlClient.SqlParameter("@DOK_ID", Global.System.Data.SqlDbType.Int, 4, Global.System.Data.ParameterDirection.Input, 0, 0, "", Global.System.Data.DataRowVersion.Current, false, Nothing, "", "", ""))
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
@@ -23266,6 +23270,209 @@ Namespace MyDatasetTableAdapters
|
|||||||
Public Overloads Overridable Function Update(ByVal dataRows() As Global.System.Data.DataRow) As Integer
|
Public Overloads Overridable Function Update(ByVal dataRows() As Global.System.Data.DataRow) As Integer
|
||||||
Return Me.Adapter.Update(dataRows)
|
Return Me.Adapter.Update(dataRows)
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0"), _
|
||||||
|
Global.System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), _
|
||||||
|
Global.System.ComponentModel.DataObjectMethodAttribute(Global.System.ComponentModel.DataObjectMethodType.Delete, true)> _
|
||||||
|
Public Overloads Overridable Function Delete(ByVal Original_GUID As Integer) As Integer
|
||||||
|
Me.Adapter.DeleteCommand.Parameters(0).Value = CType(Original_GUID,Integer)
|
||||||
|
Dim previousConnectionState As Global.System.Data.ConnectionState = Me.Adapter.DeleteCommand.Connection.State
|
||||||
|
If ((Me.Adapter.DeleteCommand.Connection.State And Global.System.Data.ConnectionState.Open) _
|
||||||
|
<> Global.System.Data.ConnectionState.Open) Then
|
||||||
|
Me.Adapter.DeleteCommand.Connection.Open
|
||||||
|
End If
|
||||||
|
Try
|
||||||
|
Dim returnValue As Integer = Me.Adapter.DeleteCommand.ExecuteNonQuery
|
||||||
|
Return returnValue
|
||||||
|
Finally
|
||||||
|
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
|
||||||
|
Me.Adapter.DeleteCommand.Connection.Close
|
||||||
|
End If
|
||||||
|
End Try
|
||||||
|
End Function
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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 IDXMAN_ID As Integer, ByVal _VARIANT As String, ByVal COMMENT As String, ByVal TYPE As String, ByVal FUNCTION1 As String, ByVal FUNCTION2 As String, ByVal TEXT1 As String, ByVal TEXT2 As String, ByVal TEXT3 As String, ByVal SEQUENCE As Integer, ByVal ADDED_WHO As String, ByVal ADDED_WHEN As Global.System.Nullable(Of Date), ByVal CHANGED_WHO As String, ByVal CHANGED_WHEN As Global.System.Nullable(Of Date)) As Integer
|
||||||
|
Me.Adapter.InsertCommand.Parameters(0).Value = CType(IDXMAN_ID,Integer)
|
||||||
|
If (_VARIANT Is Nothing) Then
|
||||||
|
Throw New Global.System.ArgumentNullException("_VARIANT")
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(1).Value = CType(_VARIANT,String)
|
||||||
|
End If
|
||||||
|
If (COMMENT Is Nothing) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(2).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(2).Value = CType(COMMENT,String)
|
||||||
|
End If
|
||||||
|
If (TYPE Is Nothing) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(3).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(3).Value = CType(TYPE,String)
|
||||||
|
End If
|
||||||
|
If (FUNCTION1 Is Nothing) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(4).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(4).Value = CType(FUNCTION1,String)
|
||||||
|
End If
|
||||||
|
If (FUNCTION2 Is Nothing) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(5).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(5).Value = CType(FUNCTION2,String)
|
||||||
|
End If
|
||||||
|
If (TEXT1 Is Nothing) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(6).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(6).Value = CType(TEXT1,String)
|
||||||
|
End If
|
||||||
|
If (TEXT2 Is Nothing) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(7).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(7).Value = CType(TEXT2,String)
|
||||||
|
End If
|
||||||
|
If (TEXT3 Is Nothing) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(8).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(8).Value = CType(TEXT3,String)
|
||||||
|
End If
|
||||||
|
Me.Adapter.InsertCommand.Parameters(9).Value = CType(SEQUENCE,Integer)
|
||||||
|
If (ADDED_WHO Is Nothing) Then
|
||||||
|
Throw New Global.System.ArgumentNullException("ADDED_WHO")
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(10).Value = CType(ADDED_WHO,String)
|
||||||
|
End If
|
||||||
|
If (ADDED_WHEN.HasValue = true) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(11).Value = CType(ADDED_WHEN.Value,Date)
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(11).Value = Global.System.DBNull.Value
|
||||||
|
End If
|
||||||
|
If (CHANGED_WHO Is Nothing) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(12).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(12).Value = CType(CHANGED_WHO,String)
|
||||||
|
End If
|
||||||
|
If (CHANGED_WHEN.HasValue = true) Then
|
||||||
|
Me.Adapter.InsertCommand.Parameters(13).Value = CType(CHANGED_WHEN.Value,Date)
|
||||||
|
Else
|
||||||
|
Me.Adapter.InsertCommand.Parameters(13).Value = Global.System.DBNull.Value
|
||||||
|
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
|
||||||
|
Me.Adapter.InsertCommand.Connection.Open
|
||||||
|
End If
|
||||||
|
Try
|
||||||
|
Dim returnValue As Integer = Me.Adapter.InsertCommand.ExecuteNonQuery
|
||||||
|
Return returnValue
|
||||||
|
Finally
|
||||||
|
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
|
||||||
|
Me.Adapter.InsertCommand.Connection.Close
|
||||||
|
End If
|
||||||
|
End Try
|
||||||
|
End Function
|
||||||
|
|
||||||
|
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||||
|
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.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 IDXMAN_ID As Integer, _
|
||||||
|
ByVal _VARIANT As String, _
|
||||||
|
ByVal COMMENT As String, _
|
||||||
|
ByVal TYPE As String, _
|
||||||
|
ByVal FUNCTION1 As String, _
|
||||||
|
ByVal FUNCTION2 As String, _
|
||||||
|
ByVal TEXT1 As String, _
|
||||||
|
ByVal TEXT2 As String, _
|
||||||
|
ByVal TEXT3 As String, _
|
||||||
|
ByVal SEQUENCE As Integer, _
|
||||||
|
ByVal ADDED_WHO As String, _
|
||||||
|
ByVal ADDED_WHEN As Global.System.Nullable(Of Date), _
|
||||||
|
ByVal CHANGED_WHO As String, _
|
||||||
|
ByVal CHANGED_WHEN As Global.System.Nullable(Of Date), _
|
||||||
|
ByVal Original_GUID As Integer, _
|
||||||
|
ByVal GUID As Integer) As Integer
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(0).Value = CType(IDXMAN_ID,Integer)
|
||||||
|
If (_VARIANT Is Nothing) Then
|
||||||
|
Throw New Global.System.ArgumentNullException("_VARIANT")
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(1).Value = CType(_VARIANT,String)
|
||||||
|
End If
|
||||||
|
If (COMMENT Is Nothing) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(2).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(2).Value = CType(COMMENT,String)
|
||||||
|
End If
|
||||||
|
If (TYPE Is Nothing) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(3).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(3).Value = CType(TYPE,String)
|
||||||
|
End If
|
||||||
|
If (FUNCTION1 Is Nothing) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(4).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(4).Value = CType(FUNCTION1,String)
|
||||||
|
End If
|
||||||
|
If (FUNCTION2 Is Nothing) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(5).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(5).Value = CType(FUNCTION2,String)
|
||||||
|
End If
|
||||||
|
If (TEXT1 Is Nothing) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(6).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(6).Value = CType(TEXT1,String)
|
||||||
|
End If
|
||||||
|
If (TEXT2 Is Nothing) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(7).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(7).Value = CType(TEXT2,String)
|
||||||
|
End If
|
||||||
|
If (TEXT3 Is Nothing) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(8).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(8).Value = CType(TEXT3,String)
|
||||||
|
End If
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(9).Value = CType(SEQUENCE,Integer)
|
||||||
|
If (ADDED_WHO Is Nothing) Then
|
||||||
|
Throw New Global.System.ArgumentNullException("ADDED_WHO")
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(10).Value = CType(ADDED_WHO,String)
|
||||||
|
End If
|
||||||
|
If (ADDED_WHEN.HasValue = true) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(11).Value = CType(ADDED_WHEN.Value,Date)
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(11).Value = Global.System.DBNull.Value
|
||||||
|
End If
|
||||||
|
If (CHANGED_WHO Is Nothing) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(12).Value = Global.System.DBNull.Value
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(12).Value = CType(CHANGED_WHO,String)
|
||||||
|
End If
|
||||||
|
If (CHANGED_WHEN.HasValue = true) Then
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(13).Value = CType(CHANGED_WHEN.Value,Date)
|
||||||
|
Else
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(13).Value = Global.System.DBNull.Value
|
||||||
|
End If
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(14).Value = CType(Original_GUID,Integer)
|
||||||
|
Me.Adapter.UpdateCommand.Parameters(15).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
|
||||||
|
Me.Adapter.UpdateCommand.Connection.Open
|
||||||
|
End If
|
||||||
|
Try
|
||||||
|
Dim returnValue As Integer = Me.Adapter.UpdateCommand.ExecuteNonQuery
|
||||||
|
Return returnValue
|
||||||
|
Finally
|
||||||
|
If (previousConnectionState = Global.System.Data.ConnectionState.Closed) Then
|
||||||
|
Me.Adapter.UpdateCommand.Connection.Close
|
||||||
|
End If
|
||||||
|
End Try
|
||||||
|
End Function
|
||||||
End Class
|
End Class
|
||||||
|
|
||||||
'''<summary>
|
'''<summary>
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Partial Public Class MyDataset
|
Partial Public Class MyDataset
|
||||||
|
Partial Public Class TBDD_INDEX_MANDataTable
|
||||||
|
End Class
|
||||||
|
|
||||||
Partial Public Class TBDD_INDEX_MAN_POSTPROCESSINGDataTable
|
Partial Public Class TBDD_INDEX_MAN_POSTPROCESSINGDataTable
|
||||||
Private Sub TBDD_INDEX_MAN_POSTPROCESSINGDataTable_ColumnChanging(sender As Object, e As DataColumnChangeEventArgs) Handles Me.ColumnChanging
|
Private Sub TBDD_INDEX_MAN_POSTPROCESSINGDataTable_ColumnChanging(sender As Object, e As DataColumnChangeEventArgs) Handles Me.ColumnChanging
|
||||||
If (e.Column.ColumnName = Me.COMMENTColumn.ColumnName) Then
|
If (e.Column.ColumnName = Me.COMMENTColumn.ColumnName) Then
|
||||||
|
|||||||
@@ -833,70 +833,73 @@ SELECT GUID, OBJECTTYPE, IDX_EMAIL_ID, IDX_EMAIL_FROM, IDX_EMAIL_TO, IDX_EMAIL_S
|
|||||||
</TableAdapter>
|
</TableAdapter>
|
||||||
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter" GeneratorDataComponentClassName="TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter" Name="TBDD_INDEX_MAN_POSTPROCESSING" UserDataComponentName="TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter">
|
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter" GeneratorDataComponentClassName="TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter" Name="TBDD_INDEX_MAN_POSTPROCESSING" UserDataComponentName="TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter">
|
||||||
<MainSource>
|
<MainSource>
|
||||||
<DbSource ConnectionRef="DD_ECMConnectionString (MySettings)" DbObjectName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
<DbSource ConnectionRef="DD_ECMConnectionString (MySettings)" DbObjectName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||||
<DeleteCommand>
|
<DeleteCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
<CommandText>DELETE FROM TBDD_INDEX_MAN_POSTPROCESSING
|
<CommandText>DELETE FROM TBDD_INDEX_MAN_POSTPROCESSING
|
||||||
WHERE (GUID = @GUID)</CommandText>
|
WHERE (GUID = @Original_GUID)</CommandText>
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="GUID" ColumnName="GUID" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" />
|
<Parameter AllowDbNull="false" AutogeneratedName="Original_GUID" ColumnName="GUID" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Original_GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
</DbCommand>
|
</DbCommand>
|
||||||
</DeleteCommand>
|
</DeleteCommand>
|
||||||
<InsertCommand>
|
<InsertCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||||
<CommandText>INSERT INTO TBDD_INDEX_MAN_POSTPROCESSING
|
<CommandText>INSERT INTO [TBDD_INDEX_MAN_POSTPROCESSING] ([IDXMAN_ID], [VARIANT], [COMMENT], [TYPE], [FUNCTION1], [FUNCTION2], [TEXT1], [TEXT2], [TEXT3], [SEQUENCE], [ADDED_WHO], [ADDED_WHEN], [CHANGED_WHO], [CHANGED_WHEN]) VALUES (@IDXMAN_ID, @VARIANT, @COMMENT, @TYPE, @FUNCTION1, @FUNCTION2, @TEXT1, @TEXT2, @TEXT3, @SEQUENCE, @ADDED_WHO, @ADDED_WHEN, @CHANGED_WHO, @CHANGED_WHEN);
|
||||||
(IDXMAN_ID, COMMENT, TYPE, FUNCTION1, FUNCTION2, TEXT1, TEXT2, TEXT3, SEQUENCE, ADDED_WHO, VARIANT)
|
SELECT GUID, IDXMAN_ID, VARIANT, COMMENT, TYPE, FUNCTION1, FUNCTION2, TEXT1, TEXT2, TEXT3, SEQUENCE, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_INDEX_MAN_POSTPROCESSING WHERE (GUID = SCOPE_IDENTITY())</CommandText>
|
||||||
VALUES (@IDXMAN_ID,@COMMENT,@TYPE,@FUNCTION1,@FUNCTION2,@TEXT1,@TEXT2,@TEXT3,@SEQUENCE,@ADDED_WHO,@VARIANT)</CommandText>
|
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="IDXMAN_ID" ColumnName="IDXMAN_ID" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IDXMAN_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="IDXMAN_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IDXMAN_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="IDXMAN_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="COMMENT" ColumnName="COMMENT" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@COMMENT" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="COMMENT" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@VARIANT" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="VARIANT" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="TYPE" ColumnName="TYPE" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@TYPE" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="TYPE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@COMMENT" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="COMMENT" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="FUNCTION1" ColumnName="FUNCTION1" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@FUNCTION1" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="FUNCTION1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@TYPE" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="TYPE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="FUNCTION2" ColumnName="FUNCTION2" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@FUNCTION2" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="FUNCTION2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@FUNCTION1" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="FUNCTION1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="TEXT1" ColumnName="TEXT1" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT1" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@FUNCTION2" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="FUNCTION2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="TEXT2" ColumnName="TEXT2" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT2" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@TEXT1" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="TEXT1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="TEXT3" ColumnName="TEXT3" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT3" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT3" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@TEXT2" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="TEXT2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="SEQUENCE" ColumnName="SEQUENCE" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@SEQUENCE" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="SEQUENCE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@TEXT3" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="TEXT3" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="ADDED_WHO" ColumnName="ADDED_WHO" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@ADDED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="ADDED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@SEQUENCE" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="SEQUENCE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="VARIANT" ColumnName="VARIANT" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(20)" DbType="AnsiString" Direction="Input" ParameterName="@VARIANT" Precision="0" ProviderType="VarChar" Scale="0" Size="20" SourceColumn="VARIANT" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@ADDED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="ADDED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@ADDED_WHEN" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="ADDED_WHEN" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@CHANGED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="CHANGED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@CHANGED_WHEN" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="CHANGED_WHEN" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
</DbCommand>
|
</DbCommand>
|
||||||
</InsertCommand>
|
</InsertCommand>
|
||||||
<SelectCommand>
|
<SelectCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
<CommandText>SELECT TBDD_INDEX_MAN_POSTPROCESSING.GUID, TBDD_INDEX_MAN_POSTPROCESSING.IDXMAN_ID, TBDD_INDEX_MAN_POSTPROCESSING.COMMENT, TBDD_INDEX_MAN_POSTPROCESSING.TYPE,
|
<CommandText>SELECT *
|
||||||
TBDD_INDEX_MAN_POSTPROCESSING.FUNCTION1, TBDD_INDEX_MAN_POSTPROCESSING.FUNCTION2, TBDD_INDEX_MAN_POSTPROCESSING.TEXT1, TBDD_INDEX_MAN_POSTPROCESSING.TEXT2,
|
FROM TBDD_INDEX_MAN_POSTPROCESSING
|
||||||
TBDD_INDEX_MAN_POSTPROCESSING.TEXT3, TBDD_INDEX_MAN_POSTPROCESSING.SEQUENCE, TBDD_INDEX_MAN_POSTPROCESSING.ADDED_WHO,
|
WHERE IDXMAN_ID IN (SELECT GUID FROM TBDD_INDEX_MAN WHERE DOK_ID = @DOK_ID)
|
||||||
TBDD_INDEX_MAN_POSTPROCESSING.ADDED_WHEN, TBDD_INDEX_MAN_POSTPROCESSING.CHANGED_WHO, TBDD_INDEX_MAN_POSTPROCESSING.CHANGED_WHEN,
|
</CommandText>
|
||||||
TBDD_INDEX_MAN_POSTPROCESSING.VARIANT
|
|
||||||
FROM TBDD_INDEX_MAN_POSTPROCESSING INNER JOIN
|
|
||||||
TBDD_INDEX_MAN ON TBDD_INDEX_MAN_POSTPROCESSING.IDXMAN_ID = TBDD_INDEX_MAN.GUID
|
|
||||||
WHERE (TBDD_INDEX_MAN.DOK_ID = @DOK_ID)</CommandText>
|
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="DOK_ID" ColumnName="DOK_ID" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@DOK_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="DOK_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="DOK_ID" ColumnName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@DOK_ID" Precision="0" Scale="0" Size="4" SourceColumn="" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
</DbCommand>
|
</DbCommand>
|
||||||
</SelectCommand>
|
</SelectCommand>
|
||||||
<UpdateCommand>
|
<UpdateCommand>
|
||||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||||
<CommandText>UPDATE TBDD_INDEX_MAN_POSTPROCESSING
|
<CommandText>UPDATE TBDD_INDEX_MAN_POSTPROCESSING
|
||||||
SET IDXMAN_ID = @IDXMAN_ID, COMMENT = @COMMENT, TYPE = @TYPE, FUNCTION1 = @FUNCTION1, FUNCTION2 = @FUNCTION2, TEXT1 = @TEXT1, TEXT2 = @TEXT2, TEXT3 = @TEXT3,
|
SET IDXMAN_ID = @IDXMAN_ID, VARIANT = @VARIANT, COMMENT = @COMMENT, TYPE = @TYPE, FUNCTION1 = @FUNCTION1, FUNCTION2 = @FUNCTION2, TEXT1 = @TEXT1, TEXT2 = @TEXT2, TEXT3 = @TEXT3,
|
||||||
SEQUENCE = @SEQUENCE, CHANGED_WHO = @CHANGED_WHO, VARIANT = @VARIANT
|
SEQUENCE = @SEQUENCE, ADDED_WHO = @ADDED_WHO, ADDED_WHEN = @ADDED_WHEN, CHANGED_WHO = @CHANGED_WHO, CHANGED_WHEN = @CHANGED_WHEN
|
||||||
WHERE (GUID = @GUID)</CommandText>
|
WHERE (GUID = @Original_GUID);
|
||||||
|
SELECT GUID, IDXMAN_ID, VARIANT, COMMENT, TYPE, FUNCTION1, FUNCTION2, TEXT1, TEXT2, TEXT3, SEQUENCE, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN FROM TBDD_INDEX_MAN_POSTPROCESSING WHERE (GUID = @GUID)</CommandText>
|
||||||
<Parameters>
|
<Parameters>
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="IDXMAN_ID" ColumnName="IDXMAN_ID" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IDXMAN_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="IDXMAN_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="IDXMAN_ID" ColumnName="IDXMAN_ID" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IDXMAN_ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="IDXMAN_ID" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="COMMENT" ColumnName="COMMENT" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@COMMENT" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="COMMENT" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="VARIANT" ColumnName="VARIANT" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(20)" DbType="AnsiString" Direction="Input" ParameterName="@VARIANT" Precision="0" ProviderType="VarChar" Scale="0" Size="20" SourceColumn="VARIANT" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="TYPE" ColumnName="TYPE" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@TYPE" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="TYPE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="COMMENT" ColumnName="COMMENT" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@COMMENT" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="COMMENT" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="FUNCTION1" ColumnName="FUNCTION1" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@FUNCTION1" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="FUNCTION1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="TYPE" ColumnName="TYPE" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@TYPE" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="TYPE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="FUNCTION2" ColumnName="FUNCTION2" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@FUNCTION2" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="FUNCTION2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="FUNCTION1" ColumnName="FUNCTION1" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@FUNCTION1" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="FUNCTION1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="TEXT1" ColumnName="TEXT1" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT1" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="FUNCTION2" ColumnName="FUNCTION2" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(250)" DbType="AnsiString" Direction="Input" ParameterName="@FUNCTION2" Precision="0" ProviderType="VarChar" Scale="0" Size="250" SourceColumn="FUNCTION2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="TEXT2" ColumnName="TEXT2" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT2" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="TEXT1" ColumnName="TEXT1" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT1" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="TEXT3" ColumnName="TEXT3" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT3" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT3" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="TEXT2" ColumnName="TEXT2" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT2" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT2" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="SEQUENCE" ColumnName="SEQUENCE" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@SEQUENCE" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="SEQUENCE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="true" AutogeneratedName="TEXT3" ColumnName="TEXT3" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(100)" DbType="AnsiString" Direction="Input" ParameterName="@TEXT3" Precision="0" ProviderType="VarChar" Scale="0" Size="100" SourceColumn="TEXT3" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHO" ColumnName="CHANGED_WHO" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@CHANGED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="CHANGED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="SEQUENCE" ColumnName="SEQUENCE" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@SEQUENCE" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="SEQUENCE" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="VARIANT" ColumnName="VARIANT" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(20)" DbType="AnsiString" Direction="Input" ParameterName="@VARIANT" Precision="0" ProviderType="VarChar" Scale="0" Size="20" SourceColumn="VARIANT" SourceColumnNullMapping="false" SourceVersion="Current" />
|
<Parameter AllowDbNull="false" AutogeneratedName="ADDED_WHO" ColumnName="ADDED_WHO" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@ADDED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="ADDED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
<Parameter AllowDbNull="false" AutogeneratedName="GUID" ColumnName="GUID" DataSourceName="DD_ECM.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" />
|
<Parameter AllowDbNull="true" AutogeneratedName="ADDED_WHEN" ColumnName="ADDED_WHEN" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@ADDED_WHEN" Precision="0" ProviderType="DateTime" Scale="0" Size="8" SourceColumn="ADDED_WHEN" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHO" ColumnName="CHANGED_WHO" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="varchar(50)" DbType="AnsiString" Direction="Input" ParameterName="@CHANGED_WHO" Precision="0" ProviderType="VarChar" Scale="0" Size="50" SourceColumn="CHANGED_WHO" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="true" AutogeneratedName="CHANGED_WHEN" ColumnName="CHANGED_WHEN" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@CHANGED_WHEN" Precision="0" ProviderType="DateTime" Scale="0" Size="8" SourceColumn="CHANGED_WHEN" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="Original_GUID" ColumnName="GUID" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Original_GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
|
<Parameter AllowDbNull="false" AutogeneratedName="GUID" ColumnName="GUID" DataSourceName="DD_ECM_TEST.dbo.TBDD_INDEX_MAN_POSTPROCESSING" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@GUID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="GUID" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||||
</Parameters>
|
</Parameters>
|
||||||
</DbCommand>
|
</DbCommand>
|
||||||
</UpdateCommand>
|
</UpdateCommand>
|
||||||
@@ -1691,7 +1694,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
<xs:element name="MyDataset" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="MyDataset" msprop:Generator_UserDSName="MyDataset">
|
<xs:element name="MyDataset" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="MyDataset" msprop:Generator_UserDSName="MyDataset">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||||
<xs:element name="TBDD_USER" msprop:Generator_TableClassName="TBDD_USERDataTable" msprop:Generator_TableVarName="tableTBDD_USER" msprop:Generator_RowChangedName="TBDD_USERRowChanged" msprop:Generator_TablePropName="TBDD_USER" msprop:Generator_RowDeletingName="TBDD_USERRowDeleting" msprop:Generator_RowChangingName="TBDD_USERRowChanging" msprop:Generator_RowEvHandlerName="TBDD_USERRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_USERRowDeleted" msprop:Generator_RowClassName="TBDD_USERRow" msprop:Generator_UserTableName="TBDD_USER" msprop:Generator_RowEvArgName="TBDD_USERRowChangeEvent">
|
<xs:element name="TBDD_USER" msprop:Generator_TableClassName="TBDD_USERDataTable" msprop:Generator_TableVarName="tableTBDD_USER" msprop:Generator_TablePropName="TBDD_USER" msprop:Generator_RowDeletingName="TBDD_USERRowDeleting" msprop:Generator_RowChangingName="TBDD_USERRowChanging" msprop:Generator_RowEvHandlerName="TBDD_USERRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_USERRowDeleted" msprop:Generator_UserTableName="TBDD_USER" msprop:Generator_RowChangedName="TBDD_USERRowChanged" msprop:Generator_RowEvArgName="TBDD_USERRowChangeEvent" msprop:Generator_RowClassName="TBDD_USERRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -1756,7 +1759,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_DOKUMENTART" msprop:Generator_TableClassName="TBDD_DOKUMENTARTDataTable" msprop:Generator_TableVarName="tableTBDD_DOKUMENTART" msprop:Generator_RowChangedName="TBDD_DOKUMENTARTRowChanged" msprop:Generator_TablePropName="TBDD_DOKUMENTART" msprop:Generator_RowDeletingName="TBDD_DOKUMENTARTRowDeleting" msprop:Generator_RowChangingName="TBDD_DOKUMENTARTRowChanging" msprop:Generator_RowEvHandlerName="TBDD_DOKUMENTARTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_DOKUMENTARTRowDeleted" msprop:Generator_RowClassName="TBDD_DOKUMENTARTRow" msprop:Generator_UserTableName="TBDD_DOKUMENTART" msprop:Generator_RowEvArgName="TBDD_DOKUMENTARTRowChangeEvent">
|
<xs:element name="TBDD_DOKUMENTART" msprop:Generator_TableClassName="TBDD_DOKUMENTARTDataTable" msprop:Generator_TableVarName="tableTBDD_DOKUMENTART" msprop:Generator_TablePropName="TBDD_DOKUMENTART" msprop:Generator_RowDeletingName="TBDD_DOKUMENTARTRowDeleting" msprop:Generator_RowChangingName="TBDD_DOKUMENTARTRowChanging" msprop:Generator_RowEvHandlerName="TBDD_DOKUMENTARTRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_DOKUMENTARTRowDeleted" msprop:Generator_UserTableName="TBDD_DOKUMENTART" msprop:Generator_RowChangedName="TBDD_DOKUMENTARTRowChanged" msprop:Generator_RowEvArgName="TBDD_DOKUMENTARTRowChangeEvent" msprop:Generator_RowClassName="TBDD_DOKUMENTARTRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -1839,7 +1842,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_EINGANGSARTEN" msprop:Generator_TableClassName="TBDD_EINGANGSARTENDataTable" msprop:Generator_TableVarName="tableTBDD_EINGANGSARTEN" msprop:Generator_RowChangedName="TBDD_EINGANGSARTENRowChanged" msprop:Generator_TablePropName="TBDD_EINGANGSARTEN" msprop:Generator_RowDeletingName="TBDD_EINGANGSARTENRowDeleting" msprop:Generator_RowChangingName="TBDD_EINGANGSARTENRowChanging" msprop:Generator_RowEvHandlerName="TBDD_EINGANGSARTENRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_EINGANGSARTENRowDeleted" msprop:Generator_RowClassName="TBDD_EINGANGSARTENRow" msprop:Generator_UserTableName="TBDD_EINGANGSARTEN" msprop:Generator_RowEvArgName="TBDD_EINGANGSARTENRowChangeEvent">
|
<xs:element name="TBDD_EINGANGSARTEN" msprop:Generator_TableClassName="TBDD_EINGANGSARTENDataTable" msprop:Generator_TableVarName="tableTBDD_EINGANGSARTEN" msprop:Generator_TablePropName="TBDD_EINGANGSARTEN" msprop:Generator_RowDeletingName="TBDD_EINGANGSARTENRowDeleting" msprop:Generator_RowChangingName="TBDD_EINGANGSARTENRowChanging" msprop:Generator_RowEvHandlerName="TBDD_EINGANGSARTENRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_EINGANGSARTENRowDeleted" msprop:Generator_UserTableName="TBDD_EINGANGSARTEN" msprop:Generator_RowChangedName="TBDD_EINGANGSARTENRowChanged" msprop:Generator_RowEvArgName="TBDD_EINGANGSARTENRowChangeEvent" msprop:Generator_RowClassName="TBDD_EINGANGSARTENRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:unsignedByte" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:unsignedByte" />
|
||||||
@@ -1876,7 +1879,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_DOKART_MODULE" msprop:Generator_TableClassName="TBDD_DOKART_MODULEDataTable" msprop:Generator_TableVarName="tableTBDD_DOKART_MODULE" msprop:Generator_TablePropName="TBDD_DOKART_MODULE" msprop:Generator_RowDeletingName="TBDD_DOKART_MODULERowDeleting" msprop:Generator_RowChangingName="TBDD_DOKART_MODULERowChanging" msprop:Generator_RowEvHandlerName="TBDD_DOKART_MODULERowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_DOKART_MODULERowDeleted" msprop:Generator_UserTableName="TBDD_DOKART_MODULE" msprop:Generator_RowChangedName="TBDD_DOKART_MODULERowChanged" msprop:Generator_RowEvArgName="TBDD_DOKART_MODULERowChangeEvent" msprop:Generator_RowClassName="TBDD_DOKART_MODULERow">
|
<xs:element name="TBDD_DOKART_MODULE" msprop:Generator_TableClassName="TBDD_DOKART_MODULEDataTable" msprop:Generator_TableVarName="tableTBDD_DOKART_MODULE" msprop:Generator_RowChangedName="TBDD_DOKART_MODULERowChanged" msprop:Generator_TablePropName="TBDD_DOKART_MODULE" msprop:Generator_RowDeletingName="TBDD_DOKART_MODULERowDeleting" msprop:Generator_RowChangingName="TBDD_DOKART_MODULERowChanging" msprop:Generator_RowEvHandlerName="TBDD_DOKART_MODULERowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_DOKART_MODULERowDeleted" msprop:Generator_RowClassName="TBDD_DOKART_MODULERow" msprop:Generator_UserTableName="TBDD_DOKART_MODULE" msprop:Generator_RowEvArgName="TBDD_DOKART_MODULERowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_UserColumnName="ID" type="xs:int" />
|
<xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_UserColumnName="ID" type="xs:int" />
|
||||||
@@ -1890,7 +1893,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_MODULES" msprop:Generator_TableClassName="TBDD_MODULESDataTable" msprop:Generator_TableVarName="tableTBDD_MODULES" msprop:Generator_TablePropName="TBDD_MODULES" msprop:Generator_RowDeletingName="TBDD_MODULESRowDeleting" msprop:Generator_RowChangingName="TBDD_MODULESRowChanging" msprop:Generator_RowEvHandlerName="TBDD_MODULESRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_MODULESRowDeleted" msprop:Generator_UserTableName="TBDD_MODULES" msprop:Generator_RowChangedName="TBDD_MODULESRowChanged" msprop:Generator_RowEvArgName="TBDD_MODULESRowChangeEvent" msprop:Generator_RowClassName="TBDD_MODULESRow">
|
<xs:element name="TBDD_MODULES" msprop:Generator_TableClassName="TBDD_MODULESDataTable" msprop:Generator_TableVarName="tableTBDD_MODULES" msprop:Generator_RowChangedName="TBDD_MODULESRowChanged" msprop:Generator_TablePropName="TBDD_MODULES" msprop:Generator_RowDeletingName="TBDD_MODULESRowDeleting" msprop:Generator_RowChangingName="TBDD_MODULESRowChanging" msprop:Generator_RowEvHandlerName="TBDD_MODULESRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_MODULESRowDeleted" msprop:Generator_RowClassName="TBDD_MODULESRow" msprop:Generator_UserTableName="TBDD_MODULES" msprop:Generator_RowEvArgName="TBDD_MODULESRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -1904,7 +1907,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_INDEX_MAN" msprop:Generator_TableClassName="TBDD_INDEX_MANDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_MAN" msprop:Generator_TablePropName="TBDD_INDEX_MAN" msprop:Generator_RowDeletingName="TBDD_INDEX_MANRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_MANRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_MANRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_MANRowDeleted" msprop:Generator_UserTableName="TBDD_INDEX_MAN" msprop:Generator_RowChangedName="TBDD_INDEX_MANRowChanged" msprop:Generator_RowEvArgName="TBDD_INDEX_MANRowChangeEvent" msprop:Generator_RowClassName="TBDD_INDEX_MANRow">
|
<xs:element name="TBDD_INDEX_MAN" msprop:Generator_TableClassName="TBDD_INDEX_MANDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_MAN" msprop:Generator_RowChangedName="TBDD_INDEX_MANRowChanged" msprop:Generator_TablePropName="TBDD_INDEX_MAN" msprop:Generator_RowDeletingName="TBDD_INDEX_MANRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_MANRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_MANRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_MANRowDeleted" msprop:Generator_RowClassName="TBDD_INDEX_MANRow" msprop:Generator_UserTableName="TBDD_INDEX_MAN" msprop:Generator_RowEvArgName="TBDD_INDEX_MANRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -1986,7 +1989,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_CONNECTION" msprop:Generator_TableClassName="TBDD_CONNECTIONDataTable" msprop:Generator_TableVarName="tableTBDD_CONNECTION" msprop:Generator_TablePropName="TBDD_CONNECTION" msprop:Generator_RowDeletingName="TBDD_CONNECTIONRowDeleting" msprop:Generator_RowChangingName="TBDD_CONNECTIONRowChanging" msprop:Generator_RowEvHandlerName="TBDD_CONNECTIONRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_CONNECTIONRowDeleted" msprop:Generator_UserTableName="TBDD_CONNECTION" msprop:Generator_RowChangedName="TBDD_CONNECTIONRowChanged" msprop:Generator_RowEvArgName="TBDD_CONNECTIONRowChangeEvent" msprop:Generator_RowClassName="TBDD_CONNECTIONRow">
|
<xs:element name="TBDD_CONNECTION" msprop:Generator_TableClassName="TBDD_CONNECTIONDataTable" msprop:Generator_TableVarName="tableTBDD_CONNECTION" msprop:Generator_RowChangedName="TBDD_CONNECTIONRowChanged" msprop:Generator_TablePropName="TBDD_CONNECTION" msprop:Generator_RowDeletingName="TBDD_CONNECTIONRowDeleting" msprop:Generator_RowChangingName="TBDD_CONNECTIONRowChanging" msprop:Generator_RowEvHandlerName="TBDD_CONNECTIONRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_CONNECTIONRowDeleted" msprop:Generator_RowClassName="TBDD_CONNECTIONRow" msprop:Generator_UserTableName="TBDD_CONNECTION" msprop:Generator_RowEvArgName="TBDD_CONNECTIONRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:short" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:short" />
|
||||||
@@ -2059,7 +2062,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="VWDDINDEX_MAN" msprop:Generator_TableClassName="VWDDINDEX_MANDataTable" msprop:Generator_TableVarName="tableVWDDINDEX_MAN" msprop:Generator_TablePropName="VWDDINDEX_MAN" msprop:Generator_RowDeletingName="VWDDINDEX_MANRowDeleting" msprop:Generator_RowChangingName="VWDDINDEX_MANRowChanging" msprop:Generator_RowEvHandlerName="VWDDINDEX_MANRowChangeEventHandler" msprop:Generator_RowDeletedName="VWDDINDEX_MANRowDeleted" msprop:Generator_UserTableName="VWDDINDEX_MAN" msprop:Generator_RowChangedName="VWDDINDEX_MANRowChanged" msprop:Generator_RowEvArgName="VWDDINDEX_MANRowChangeEvent" msprop:Generator_RowClassName="VWDDINDEX_MANRow">
|
<xs:element name="VWDDINDEX_MAN" msprop:Generator_TableClassName="VWDDINDEX_MANDataTable" msprop:Generator_TableVarName="tableVWDDINDEX_MAN" msprop:Generator_RowChangedName="VWDDINDEX_MANRowChanged" msprop:Generator_TablePropName="VWDDINDEX_MAN" msprop:Generator_RowDeletingName="VWDDINDEX_MANRowDeleting" msprop:Generator_RowChangingName="VWDDINDEX_MANRowChanging" msprop:Generator_RowEvHandlerName="VWDDINDEX_MANRowChangeEventHandler" msprop:Generator_RowDeletedName="VWDDINDEX_MANRowDeleted" msprop:Generator_RowClassName="VWDDINDEX_MANRow" msprop:Generator_UserTableName="VWDDINDEX_MAN" msprop:Generator_RowEvArgName="VWDDINDEX_MANRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2172,7 +2175,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="VWDDINDEX_AUTOM" msprop:Generator_TableClassName="VWDDINDEX_AUTOMDataTable" msprop:Generator_TableVarName="tableVWDDINDEX_AUTOM" msprop:Generator_TablePropName="VWDDINDEX_AUTOM" msprop:Generator_RowDeletingName="VWDDINDEX_AUTOMRowDeleting" msprop:Generator_RowChangingName="VWDDINDEX_AUTOMRowChanging" msprop:Generator_RowEvHandlerName="VWDDINDEX_AUTOMRowChangeEventHandler" msprop:Generator_RowDeletedName="VWDDINDEX_AUTOMRowDeleted" msprop:Generator_UserTableName="VWDDINDEX_AUTOM" msprop:Generator_RowChangedName="VWDDINDEX_AUTOMRowChanged" msprop:Generator_RowEvArgName="VWDDINDEX_AUTOMRowChangeEvent" msprop:Generator_RowClassName="VWDDINDEX_AUTOMRow">
|
<xs:element name="VWDDINDEX_AUTOM" msprop:Generator_TableClassName="VWDDINDEX_AUTOMDataTable" msprop:Generator_TableVarName="tableVWDDINDEX_AUTOM" msprop:Generator_RowChangedName="VWDDINDEX_AUTOMRowChanged" msprop:Generator_TablePropName="VWDDINDEX_AUTOM" msprop:Generator_RowDeletingName="VWDDINDEX_AUTOMRowDeleting" msprop:Generator_RowChangingName="VWDDINDEX_AUTOMRowChanging" msprop:Generator_RowEvHandlerName="VWDDINDEX_AUTOMRowChangeEventHandler" msprop:Generator_RowDeletedName="VWDDINDEX_AUTOMRowDeleted" msprop:Generator_RowClassName="VWDDINDEX_AUTOMRow" msprop:Generator_UserTableName="VWDDINDEX_AUTOM" msprop:Generator_RowEvArgName="VWDDINDEX_AUTOMRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2268,7 +2271,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_INDEX_AUTOM" msprop:Generator_TableClassName="TBDD_INDEX_AUTOMDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_AUTOM" msprop:Generator_RowChangedName="TBDD_INDEX_AUTOMRowChanged" msprop:Generator_TablePropName="TBDD_INDEX_AUTOM" msprop:Generator_RowDeletingName="TBDD_INDEX_AUTOMRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_AUTOMRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_AUTOMRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_AUTOMRowDeleted" msprop:Generator_RowClassName="TBDD_INDEX_AUTOMRow" msprop:Generator_UserTableName="TBDD_INDEX_AUTOM" msprop:Generator_RowEvArgName="TBDD_INDEX_AUTOMRowChangeEvent">
|
<xs:element name="TBDD_INDEX_AUTOM" msprop:Generator_TableClassName="TBDD_INDEX_AUTOMDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_AUTOM" msprop:Generator_TablePropName="TBDD_INDEX_AUTOM" msprop:Generator_RowDeletingName="TBDD_INDEX_AUTOMRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_AUTOMRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_AUTOMRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_AUTOMRowDeleted" msprop:Generator_UserTableName="TBDD_INDEX_AUTOM" msprop:Generator_RowChangedName="TBDD_INDEX_AUTOMRowChanged" msprop:Generator_RowEvArgName="TBDD_INDEX_AUTOMRowChangeEvent" msprop:Generator_RowClassName="TBDD_INDEX_AUTOMRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2323,7 +2326,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBTempFiles2Index" msprop:Generator_TableClassName="TBTempFiles2IndexDataTable" msprop:Generator_TableVarName="tableTBTempFiles2Index" msprop:Generator_TablePropName="TBTempFiles2Index" msprop:Generator_RowDeletingName="TBTempFiles2IndexRowDeleting" msprop:Generator_RowChangingName="TBTempFiles2IndexRowChanging" msprop:Generator_RowEvHandlerName="TBTempFiles2IndexRowChangeEventHandler" msprop:Generator_RowDeletedName="TBTempFiles2IndexRowDeleted" msprop:Generator_UserTableName="TBTempFiles2Index" msprop:Generator_RowChangedName="TBTempFiles2IndexRowChanged" msprop:Generator_RowEvArgName="TBTempFiles2IndexRowChangeEvent" msprop:Generator_RowClassName="TBTempFiles2IndexRow">
|
<xs:element name="TBTempFiles2Index" msprop:Generator_TableClassName="TBTempFiles2IndexDataTable" msprop:Generator_TableVarName="tableTBTempFiles2Index" msprop:Generator_RowChangedName="TBTempFiles2IndexRowChanged" msprop:Generator_TablePropName="TBTempFiles2Index" msprop:Generator_RowDeletingName="TBTempFiles2IndexRowDeleting" msprop:Generator_RowChangingName="TBTempFiles2IndexRowChanging" msprop:Generator_RowEvHandlerName="TBTempFiles2IndexRowChangeEventHandler" msprop:Generator_RowDeletedName="TBTempFiles2IndexRowDeleted" msprop:Generator_RowClassName="TBTempFiles2IndexRow" msprop:Generator_UserTableName="TBTempFiles2Index" msprop:Generator_RowEvArgName="TBTempFiles2IndexRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="Filestring" msprop:Generator_ColumnVarNameInTable="columnFilestring" msprop:Generator_ColumnPropNameInRow="Filestring" msprop:Generator_ColumnPropNameInTable="FilestringColumn" msprop:Generator_UserColumnName="Filestring" type="xs:string" minOccurs="0" />
|
<xs:element name="Filestring" msprop:Generator_ColumnVarNameInTable="columnFilestring" msprop:Generator_ColumnPropNameInRow="Filestring" msprop:Generator_ColumnPropNameInTable="FilestringColumn" msprop:Generator_UserColumnName="Filestring" type="xs:string" minOccurs="0" />
|
||||||
@@ -2331,7 +2334,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBGI_CONFIGURATION" msprop:Generator_TableClassName="TBGI_CONFIGURATIONDataTable" msprop:Generator_TableVarName="tableTBGI_CONFIGURATION" msprop:Generator_TablePropName="TBGI_CONFIGURATION" msprop:Generator_RowDeletingName="TBGI_CONFIGURATIONRowDeleting" msprop:Generator_RowChangingName="TBGI_CONFIGURATIONRowChanging" msprop:Generator_RowEvHandlerName="TBGI_CONFIGURATIONRowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_CONFIGURATIONRowDeleted" msprop:Generator_UserTableName="TBGI_CONFIGURATION" msprop:Generator_RowChangedName="TBGI_CONFIGURATIONRowChanged" msprop:Generator_RowEvArgName="TBGI_CONFIGURATIONRowChangeEvent" msprop:Generator_RowClassName="TBGI_CONFIGURATIONRow">
|
<xs:element name="TBGI_CONFIGURATION" msprop:Generator_TableClassName="TBGI_CONFIGURATIONDataTable" msprop:Generator_TableVarName="tableTBGI_CONFIGURATION" msprop:Generator_RowChangedName="TBGI_CONFIGURATIONRowChanged" msprop:Generator_TablePropName="TBGI_CONFIGURATION" msprop:Generator_RowDeletingName="TBGI_CONFIGURATIONRowDeleting" msprop:Generator_RowChangingName="TBGI_CONFIGURATIONRowChanging" msprop:Generator_RowEvHandlerName="TBGI_CONFIGURATIONRowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_CONFIGURATIONRowDeleted" msprop:Generator_RowClassName="TBGI_CONFIGURATIONRow" msprop:Generator_UserTableName="TBGI_CONFIGURATION" msprop:Generator_RowEvArgName="TBGI_CONFIGURATIONRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:unsignedByte" default="1" />
|
<xs:element name="GUID" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:unsignedByte" default="1" />
|
||||||
@@ -2381,7 +2384,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBGI_OBJECTTYPE_EMAIL_INDEX" msprop:Generator_TableClassName="TBGI_OBJECTTYPE_EMAIL_INDEXDataTable" msprop:Generator_TableVarName="tableTBGI_OBJECTTYPE_EMAIL_INDEX" msprop:Generator_RowChangedName="TBGI_OBJECTTYPE_EMAIL_INDEXRowChanged" msprop:Generator_TablePropName="TBGI_OBJECTTYPE_EMAIL_INDEX" msprop:Generator_RowDeletingName="TBGI_OBJECTTYPE_EMAIL_INDEXRowDeleting" msprop:Generator_RowChangingName="TBGI_OBJECTTYPE_EMAIL_INDEXRowChanging" msprop:Generator_RowEvHandlerName="TBGI_OBJECTTYPE_EMAIL_INDEXRowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_OBJECTTYPE_EMAIL_INDEXRowDeleted" msprop:Generator_RowClassName="TBGI_OBJECTTYPE_EMAIL_INDEXRow" msprop:Generator_UserTableName="TBGI_OBJECTTYPE_EMAIL_INDEX" msprop:Generator_RowEvArgName="TBGI_OBJECTTYPE_EMAIL_INDEXRowChangeEvent">
|
<xs:element name="TBGI_OBJECTTYPE_EMAIL_INDEX" msprop:Generator_TableClassName="TBGI_OBJECTTYPE_EMAIL_INDEXDataTable" msprop:Generator_TableVarName="tableTBGI_OBJECTTYPE_EMAIL_INDEX" msprop:Generator_TablePropName="TBGI_OBJECTTYPE_EMAIL_INDEX" msprop:Generator_RowDeletingName="TBGI_OBJECTTYPE_EMAIL_INDEXRowDeleting" msprop:Generator_RowChangingName="TBGI_OBJECTTYPE_EMAIL_INDEXRowChanging" msprop:Generator_RowEvHandlerName="TBGI_OBJECTTYPE_EMAIL_INDEXRowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_OBJECTTYPE_EMAIL_INDEXRowDeleted" msprop:Generator_UserTableName="TBGI_OBJECTTYPE_EMAIL_INDEX" msprop:Generator_RowChangedName="TBGI_OBJECTTYPE_EMAIL_INDEXRowChanged" msprop:Generator_RowEvArgName="TBGI_OBJECTTYPE_EMAIL_INDEXRowChangeEvent" msprop:Generator_RowClassName="TBGI_OBJECTTYPE_EMAIL_INDEXRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2453,7 +2456,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_TableClassName="TBDD_INDEX_MAN_POSTPROCESSINGDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_TablePropName="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_RowDeletingName="TBDD_INDEX_MAN_POSTPROCESSINGRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_MAN_POSTPROCESSINGRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_MAN_POSTPROCESSINGRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_MAN_POSTPROCESSINGRowDeleted" msprop:Generator_UserTableName="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_RowChangedName="TBDD_INDEX_MAN_POSTPROCESSINGRowChanged" msprop:Generator_RowEvArgName="TBDD_INDEX_MAN_POSTPROCESSINGRowChangeEvent" msprop:Generator_RowClassName="TBDD_INDEX_MAN_POSTPROCESSINGRow">
|
<xs:element name="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_TableClassName="TBDD_INDEX_MAN_POSTPROCESSINGDataTable" msprop:Generator_TableVarName="tableTBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_RowChangedName="TBDD_INDEX_MAN_POSTPROCESSINGRowChanged" msprop:Generator_TablePropName="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_RowDeletingName="TBDD_INDEX_MAN_POSTPROCESSINGRowDeleting" msprop:Generator_RowChangingName="TBDD_INDEX_MAN_POSTPROCESSINGRowChanging" msprop:Generator_RowEvHandlerName="TBDD_INDEX_MAN_POSTPROCESSINGRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_INDEX_MAN_POSTPROCESSINGRowDeleted" msprop:Generator_RowClassName="TBDD_INDEX_MAN_POSTPROCESSINGRow" msprop:Generator_UserTableName="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_RowEvArgName="TBDD_INDEX_MAN_POSTPROCESSINGRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2534,7 +2537,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBWHDD_INDEX_MAN" msprop:Generator_TableClassName="TBWHDD_INDEX_MANDataTable" msprop:Generator_TableVarName="tableTBWHDD_INDEX_MAN" msprop:Generator_RowChangedName="TBWHDD_INDEX_MANRowChanged" msprop:Generator_TablePropName="TBWHDD_INDEX_MAN" msprop:Generator_RowDeletingName="TBWHDD_INDEX_MANRowDeleting" msprop:Generator_RowChangingName="TBWHDD_INDEX_MANRowChanging" msprop:Generator_RowEvHandlerName="TBWHDD_INDEX_MANRowChangeEventHandler" msprop:Generator_RowDeletedName="TBWHDD_INDEX_MANRowDeleted" msprop:Generator_RowClassName="TBWHDD_INDEX_MANRow" msprop:Generator_UserTableName="TBWHDD_INDEX_MAN" msprop:Generator_RowEvArgName="TBWHDD_INDEX_MANRowChangeEvent">
|
<xs:element name="TBWHDD_INDEX_MAN" msprop:Generator_TableClassName="TBWHDD_INDEX_MANDataTable" msprop:Generator_TableVarName="tableTBWHDD_INDEX_MAN" msprop:Generator_TablePropName="TBWHDD_INDEX_MAN" msprop:Generator_RowDeletingName="TBWHDD_INDEX_MANRowDeleting" msprop:Generator_RowChangingName="TBWHDD_INDEX_MANRowChanging" msprop:Generator_RowEvHandlerName="TBWHDD_INDEX_MANRowChangeEventHandler" msprop:Generator_RowDeletedName="TBWHDD_INDEX_MANRowDeleted" msprop:Generator_UserTableName="TBWHDD_INDEX_MAN" msprop:Generator_RowChangedName="TBWHDD_INDEX_MANRowChanged" msprop:Generator_RowEvArgName="TBWHDD_INDEX_MANRowChangeEvent" msprop:Generator_RowClassName="TBWHDD_INDEX_MANRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2548,7 +2551,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBTEMP_INDEXRESULTS" msprop:Generator_TableClassName="TBTEMP_INDEXRESULTSDataTable" msprop:Generator_TableVarName="tableTBTEMP_INDEXRESULTS" msprop:Generator_TablePropName="TBTEMP_INDEXRESULTS" msprop:Generator_RowDeletingName="TBTEMP_INDEXRESULTSRowDeleting" msprop:Generator_RowChangingName="TBTEMP_INDEXRESULTSRowChanging" msprop:Generator_RowEvHandlerName="TBTEMP_INDEXRESULTSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBTEMP_INDEXRESULTSRowDeleted" msprop:Generator_UserTableName="TBTEMP_INDEXRESULTS" msprop:Generator_RowChangedName="TBTEMP_INDEXRESULTSRowChanged" msprop:Generator_RowEvArgName="TBTEMP_INDEXRESULTSRowChangeEvent" msprop:Generator_RowClassName="TBTEMP_INDEXRESULTSRow">
|
<xs:element name="TBTEMP_INDEXRESULTS" msprop:Generator_TableClassName="TBTEMP_INDEXRESULTSDataTable" msprop:Generator_TableVarName="tableTBTEMP_INDEXRESULTS" msprop:Generator_RowChangedName="TBTEMP_INDEXRESULTSRowChanged" msprop:Generator_TablePropName="TBTEMP_INDEXRESULTS" msprop:Generator_RowDeletingName="TBTEMP_INDEXRESULTSRowDeleting" msprop:Generator_RowChangingName="TBTEMP_INDEXRESULTSRowChanging" msprop:Generator_RowEvHandlerName="TBTEMP_INDEXRESULTSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBTEMP_INDEXRESULTSRowDeleted" msprop:Generator_RowClassName="TBTEMP_INDEXRESULTSRow" msprop:Generator_UserTableName="TBTEMP_INDEXRESULTS" msprop:Generator_RowEvArgName="TBTEMP_INDEXRESULTSRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="Indexname" msprop:Generator_ColumnVarNameInTable="columnIndexname" msprop:Generator_ColumnPropNameInRow="Indexname" msprop:Generator_ColumnPropNameInTable="IndexnameColumn" msprop:Generator_UserColumnName="Indexname" type="xs:string" minOccurs="0" />
|
<xs:element name="Indexname" msprop:Generator_ColumnVarNameInTable="columnIndexname" msprop:Generator_ColumnPropNameInRow="Indexname" msprop:Generator_ColumnPropNameInTable="IndexnameColumn" msprop:Generator_UserColumnName="Indexname" type="xs:string" minOccurs="0" />
|
||||||
@@ -2557,7 +2560,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBDD_GROUPS_USER" msprop:Generator_TableClassName="TBDD_GROUPS_USERDataTable" msprop:Generator_TableVarName="tableTBDD_GROUPS_USER" msprop:Generator_TablePropName="TBDD_GROUPS_USER" msprop:Generator_RowDeletingName="TBDD_GROUPS_USERRowDeleting" msprop:Generator_RowChangingName="TBDD_GROUPS_USERRowChanging" msprop:Generator_RowEvHandlerName="TBDD_GROUPS_USERRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_GROUPS_USERRowDeleted" msprop:Generator_UserTableName="TBDD_GROUPS_USER" msprop:Generator_RowChangedName="TBDD_GROUPS_USERRowChanged" msprop:Generator_RowEvArgName="TBDD_GROUPS_USERRowChangeEvent" msprop:Generator_RowClassName="TBDD_GROUPS_USERRow">
|
<xs:element name="TBDD_GROUPS_USER" msprop:Generator_TableClassName="TBDD_GROUPS_USERDataTable" msprop:Generator_TableVarName="tableTBDD_GROUPS_USER" msprop:Generator_RowChangedName="TBDD_GROUPS_USERRowChanged" msprop:Generator_TablePropName="TBDD_GROUPS_USER" msprop:Generator_RowDeletingName="TBDD_GROUPS_USERRowDeleting" msprop:Generator_RowChangingName="TBDD_GROUPS_USERRowChanging" msprop:Generator_RowEvHandlerName="TBDD_GROUPS_USERRowChangeEventHandler" msprop:Generator_RowDeletedName="TBDD_GROUPS_USERRowDeleted" msprop:Generator_RowClassName="TBDD_GROUPS_USERRow" msprop:Generator_UserTableName="TBDD_GROUPS_USER" msprop:Generator_RowEvArgName="TBDD_GROUPS_USERRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementStep="2" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementStep="2" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2582,7 +2585,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="VWGI_USER_GROUPS_RELATION" msprop:Generator_TableClassName="VWGI_USER_GROUPS_RELATIONDataTable" msprop:Generator_TableVarName="tableVWGI_USER_GROUPS_RELATION" msprop:Generator_TablePropName="VWGI_USER_GROUPS_RELATION" msprop:Generator_RowDeletingName="VWGI_USER_GROUPS_RELATIONRowDeleting" msprop:Generator_RowChangingName="VWGI_USER_GROUPS_RELATIONRowChanging" msprop:Generator_RowEvHandlerName="VWGI_USER_GROUPS_RELATIONRowChangeEventHandler" msprop:Generator_RowDeletedName="VWGI_USER_GROUPS_RELATIONRowDeleted" msprop:Generator_UserTableName="VWGI_USER_GROUPS_RELATION" msprop:Generator_RowChangedName="VWGI_USER_GROUPS_RELATIONRowChanged" msprop:Generator_RowEvArgName="VWGI_USER_GROUPS_RELATIONRowChangeEvent" msprop:Generator_RowClassName="VWGI_USER_GROUPS_RELATIONRow">
|
<xs:element name="VWGI_USER_GROUPS_RELATION" msprop:Generator_TableClassName="VWGI_USER_GROUPS_RELATIONDataTable" msprop:Generator_TableVarName="tableVWGI_USER_GROUPS_RELATION" msprop:Generator_RowChangedName="VWGI_USER_GROUPS_RELATIONRowChanged" msprop:Generator_TablePropName="VWGI_USER_GROUPS_RELATION" msprop:Generator_RowDeletingName="VWGI_USER_GROUPS_RELATIONRowDeleting" msprop:Generator_RowChangingName="VWGI_USER_GROUPS_RELATIONRowChanging" msprop:Generator_RowEvHandlerName="VWGI_USER_GROUPS_RELATIONRowChangeEventHandler" msprop:Generator_RowDeletedName="VWGI_USER_GROUPS_RELATIONRowDeleted" msprop:Generator_RowClassName="VWGI_USER_GROUPS_RELATIONRow" msprop:Generator_UserTableName="VWGI_USER_GROUPS_RELATION" msprop:Generator_RowEvArgName="VWGI_USER_GROUPS_RELATIONRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2621,7 +2624,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBHOTKEY_PROFILE" msprop:Generator_TableClassName="TBHOTKEY_PROFILEDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_PROFILE" msprop:Generator_TablePropName="TBHOTKEY_PROFILE" msprop:Generator_RowDeletingName="TBHOTKEY_PROFILERowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_PROFILERowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_PROFILERowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_PROFILERowDeleted" msprop:Generator_UserTableName="TBHOTKEY_PROFILE" msprop:Generator_RowChangedName="TBHOTKEY_PROFILERowChanged" msprop:Generator_RowEvArgName="TBHOTKEY_PROFILERowChangeEvent" msprop:Generator_RowClassName="TBHOTKEY_PROFILERow">
|
<xs:element name="TBHOTKEY_PROFILE" msprop:Generator_TableClassName="TBHOTKEY_PROFILEDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_PROFILE" msprop:Generator_RowChangedName="TBHOTKEY_PROFILERowChanged" msprop:Generator_TablePropName="TBHOTKEY_PROFILE" msprop:Generator_RowDeletingName="TBHOTKEY_PROFILERowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_PROFILERowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_PROFILERowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_PROFILERowDeleted" msprop:Generator_RowClassName="TBHOTKEY_PROFILERow" msprop:Generator_UserTableName="TBHOTKEY_PROFILE" msprop:Generator_RowEvArgName="TBHOTKEY_PROFILERowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2693,7 +2696,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBHOTKEY_PATTERNS" msprop:Generator_TableClassName="TBHOTKEY_PATTERNSDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_PATTERNS" msprop:Generator_TablePropName="TBHOTKEY_PATTERNS" msprop:Generator_RowDeletingName="TBHOTKEY_PATTERNSRowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_PATTERNSRowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_PATTERNSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_PATTERNSRowDeleted" msprop:Generator_UserTableName="TBHOTKEY_PATTERNS" msprop:Generator_RowChangedName="TBHOTKEY_PATTERNSRowChanged" msprop:Generator_RowEvArgName="TBHOTKEY_PATTERNSRowChangeEvent" msprop:Generator_RowClassName="TBHOTKEY_PATTERNSRow">
|
<xs:element name="TBHOTKEY_PATTERNS" msprop:Generator_TableClassName="TBHOTKEY_PATTERNSDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_PATTERNS" msprop:Generator_RowChangedName="TBHOTKEY_PATTERNSRowChanged" msprop:Generator_TablePropName="TBHOTKEY_PATTERNS" msprop:Generator_RowDeletingName="TBHOTKEY_PATTERNSRowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_PATTERNSRowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_PATTERNSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_PATTERNSRowDeleted" msprop:Generator_RowClassName="TBHOTKEY_PATTERNSRow" msprop:Generator_UserTableName="TBHOTKEY_PATTERNS" msprop:Generator_RowEvArgName="TBHOTKEY_PATTERNSRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2732,7 +2735,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBMYHOTKEYS" msprop:Generator_TableClassName="TBMYHOTKEYSDataTable" msprop:Generator_TableVarName="tableTBMYHOTKEYS" msprop:Generator_TablePropName="TBMYHOTKEYS" msprop:Generator_RowDeletingName="TBMYHOTKEYSRowDeleting" msprop:Generator_RowChangingName="TBMYHOTKEYSRowChanging" msprop:Generator_RowEvHandlerName="TBMYHOTKEYSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBMYHOTKEYSRowDeleted" msprop:Generator_UserTableName="TBMYHOTKEYS" msprop:Generator_RowChangedName="TBMYHOTKEYSRowChanged" msprop:Generator_RowEvArgName="TBMYHOTKEYSRowChangeEvent" msprop:Generator_RowClassName="TBMYHOTKEYSRow">
|
<xs:element name="TBMYHOTKEYS" msprop:Generator_TableClassName="TBMYHOTKEYSDataTable" msprop:Generator_TableVarName="tableTBMYHOTKEYS" msprop:Generator_RowChangedName="TBMYHOTKEYSRowChanged" msprop:Generator_TablePropName="TBMYHOTKEYS" msprop:Generator_RowDeletingName="TBMYHOTKEYSRowDeleting" msprop:Generator_RowChangingName="TBMYHOTKEYSRowChanging" msprop:Generator_RowEvHandlerName="TBMYHOTKEYSRowChangeEventHandler" msprop:Generator_RowDeletedName="TBMYHOTKEYSRowDeleted" msprop:Generator_RowClassName="TBMYHOTKEYSRow" msprop:Generator_UserTableName="TBMYHOTKEYS" msprop:Generator_RowEvArgName="TBMYHOTKEYSRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2746,7 +2749,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBHOTKEY_USER_PROFILE" msprop:Generator_TableClassName="TBHOTKEY_USER_PROFILEDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_USER_PROFILE" msprop:Generator_RowChangedName="TBHOTKEY_USER_PROFILERowChanged" msprop:Generator_TablePropName="TBHOTKEY_USER_PROFILE" msprop:Generator_RowDeletingName="TBHOTKEY_USER_PROFILERowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_USER_PROFILERowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_USER_PROFILERowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_USER_PROFILERowDeleted" msprop:Generator_RowClassName="TBHOTKEY_USER_PROFILERow" msprop:Generator_UserTableName="TBHOTKEY_USER_PROFILE" msprop:Generator_RowEvArgName="TBHOTKEY_USER_PROFILERowChangeEvent">
|
<xs:element name="TBHOTKEY_USER_PROFILE" msprop:Generator_TableClassName="TBHOTKEY_USER_PROFILEDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_USER_PROFILE" msprop:Generator_TablePropName="TBHOTKEY_USER_PROFILE" msprop:Generator_RowDeletingName="TBHOTKEY_USER_PROFILERowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_USER_PROFILERowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_USER_PROFILERowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_USER_PROFILERowDeleted" msprop:Generator_UserTableName="TBHOTKEY_USER_PROFILE" msprop:Generator_RowChangedName="TBHOTKEY_USER_PROFILERowChanged" msprop:Generator_RowEvArgName="TBHOTKEY_USER_PROFILERowChangeEvent" msprop:Generator_RowClassName="TBHOTKEY_USER_PROFILERow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2792,7 +2795,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBHOTKEY_PATTERNS_REWORK" msprop:Generator_TableClassName="TBHOTKEY_PATTERNS_REWORKDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_PATTERNS_REWORK" msprop:Generator_RowChangedName="TBHOTKEY_PATTERNS_REWORKRowChanged" msprop:Generator_TablePropName="TBHOTKEY_PATTERNS_REWORK" msprop:Generator_RowDeletingName="TBHOTKEY_PATTERNS_REWORKRowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_PATTERNS_REWORKRowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_PATTERNS_REWORKRowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_PATTERNS_REWORKRowDeleted" msprop:Generator_RowClassName="TBHOTKEY_PATTERNS_REWORKRow" msprop:Generator_UserTableName="TBHOTKEY_PATTERNS_REWORK" msprop:Generator_RowEvArgName="TBHOTKEY_PATTERNS_REWORKRowChangeEvent">
|
<xs:element name="TBHOTKEY_PATTERNS_REWORK" msprop:Generator_TableClassName="TBHOTKEY_PATTERNS_REWORKDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_PATTERNS_REWORK" msprop:Generator_TablePropName="TBHOTKEY_PATTERNS_REWORK" msprop:Generator_RowDeletingName="TBHOTKEY_PATTERNS_REWORKRowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_PATTERNS_REWORKRowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_PATTERNS_REWORKRowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_PATTERNS_REWORKRowDeleted" msprop:Generator_UserTableName="TBHOTKEY_PATTERNS_REWORK" msprop:Generator_RowChangedName="TBHOTKEY_PATTERNS_REWORKRowChanged" msprop:Generator_RowEvArgName="TBHOTKEY_PATTERNS_REWORKRowChangeEvent" msprop:Generator_RowClassName="TBHOTKEY_PATTERNS_REWORKRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2852,7 +2855,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBHOTKEY_WINDOW_HOOK" msprop:Generator_TableClassName="TBHOTKEY_WINDOW_HOOKDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_WINDOW_HOOK" msprop:Generator_TablePropName="TBHOTKEY_WINDOW_HOOK" msprop:Generator_RowDeletingName="TBHOTKEY_WINDOW_HOOKRowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_WINDOW_HOOKRowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_WINDOW_HOOKRowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_WINDOW_HOOKRowDeleted" msprop:Generator_UserTableName="TBHOTKEY_WINDOW_HOOK" msprop:Generator_RowChangedName="TBHOTKEY_WINDOW_HOOKRowChanged" msprop:Generator_RowEvArgName="TBHOTKEY_WINDOW_HOOKRowChangeEvent" msprop:Generator_RowClassName="TBHOTKEY_WINDOW_HOOKRow">
|
<xs:element name="TBHOTKEY_WINDOW_HOOK" msprop:Generator_TableClassName="TBHOTKEY_WINDOW_HOOKDataTable" msprop:Generator_TableVarName="tableTBHOTKEY_WINDOW_HOOK" msprop:Generator_RowChangedName="TBHOTKEY_WINDOW_HOOKRowChanged" msprop:Generator_TablePropName="TBHOTKEY_WINDOW_HOOK" msprop:Generator_RowDeletingName="TBHOTKEY_WINDOW_HOOKRowDeleting" msprop:Generator_RowChangingName="TBHOTKEY_WINDOW_HOOKRowChanging" msprop:Generator_RowEvHandlerName="TBHOTKEY_WINDOW_HOOKRowChangeEventHandler" msprop:Generator_RowDeletedName="TBHOTKEY_WINDOW_HOOKRowDeleted" msprop:Generator_RowClassName="TBHOTKEY_WINDOW_HOOKRow" msprop:Generator_UserTableName="TBHOTKEY_WINDOW_HOOK" msprop:Generator_RowEvArgName="TBHOTKEY_WINDOW_HOOKRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2884,7 +2887,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBGI_FILES_USER" msprop:Generator_TableClassName="TBGI_FILES_USERDataTable" msprop:Generator_TableVarName="tableTBGI_FILES_USER" msprop:Generator_RowChangedName="TBGI_FILES_USERRowChanged" msprop:Generator_TablePropName="TBGI_FILES_USER" msprop:Generator_RowDeletingName="TBGI_FILES_USERRowDeleting" msprop:Generator_RowChangingName="TBGI_FILES_USERRowChanging" msprop:Generator_RowEvHandlerName="TBGI_FILES_USERRowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_FILES_USERRowDeleted" msprop:Generator_RowClassName="TBGI_FILES_USERRow" msprop:Generator_UserTableName="TBGI_FILES_USER" msprop:Generator_RowEvArgName="TBGI_FILES_USERRowChangeEvent">
|
<xs:element name="TBGI_FILES_USER" msprop:Generator_TableClassName="TBGI_FILES_USERDataTable" msprop:Generator_TableVarName="tableTBGI_FILES_USER" msprop:Generator_TablePropName="TBGI_FILES_USER" msprop:Generator_RowDeletingName="TBGI_FILES_USERRowDeleting" msprop:Generator_RowChangingName="TBGI_FILES_USERRowChanging" msprop:Generator_RowEvHandlerName="TBGI_FILES_USERRowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_FILES_USERRowDeleted" msprop:Generator_UserTableName="TBGI_FILES_USER" msprop:Generator_RowChangedName="TBGI_FILES_USERRowChanged" msprop:Generator_RowEvArgName="TBGI_FILES_USERRowChangeEvent" msprop:Generator_RowClassName="TBGI_FILES_USERRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2922,7 +2925,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBGI_HISTORY" msprop:Generator_TableClassName="TBGI_HISTORYDataTable" msprop:Generator_TableVarName="tableTBGI_HISTORY" msprop:Generator_TablePropName="TBGI_HISTORY" msprop:Generator_RowDeletingName="TBGI_HISTORYRowDeleting" msprop:Generator_RowChangingName="TBGI_HISTORYRowChanging" msprop:Generator_RowEvHandlerName="TBGI_HISTORYRowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_HISTORYRowDeleted" msprop:Generator_UserTableName="TBGI_HISTORY" msprop:Generator_RowChangedName="TBGI_HISTORYRowChanged" msprop:Generator_RowEvArgName="TBGI_HISTORYRowChangeEvent" msprop:Generator_RowClassName="TBGI_HISTORYRow">
|
<xs:element name="TBGI_HISTORY" msprop:Generator_TableClassName="TBGI_HISTORYDataTable" msprop:Generator_TableVarName="tableTBGI_HISTORY" msprop:Generator_RowChangedName="TBGI_HISTORYRowChanged" msprop:Generator_TablePropName="TBGI_HISTORY" msprop:Generator_RowDeletingName="TBGI_HISTORYRowDeleting" msprop:Generator_RowChangingName="TBGI_HISTORYRowChanging" msprop:Generator_RowEvHandlerName="TBGI_HISTORYRowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_HISTORYRowDeleted" msprop:Generator_RowClassName="TBGI_HISTORYRow" msprop:Generator_UserTableName="TBGI_HISTORY" msprop:Generator_RowEvArgName="TBGI_HISTORYRowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -2944,7 +2947,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBAD_Users" msprop:Generator_TableClassName="TBAD_UsersDataTable" msprop:Generator_TableVarName="tableTBAD_Users" msprop:Generator_RowChangedName="TBAD_UsersRowChanged" msprop:Generator_TablePropName="TBAD_Users" msprop:Generator_RowDeletingName="TBAD_UsersRowDeleting" msprop:Generator_RowChangingName="TBAD_UsersRowChanging" msprop:Generator_RowEvHandlerName="TBAD_UsersRowChangeEventHandler" msprop:Generator_RowDeletedName="TBAD_UsersRowDeleted" msprop:Generator_RowClassName="TBAD_UsersRow" msprop:Generator_UserTableName="TBAD_Users" msprop:Generator_RowEvArgName="TBAD_UsersRowChangeEvent">
|
<xs:element name="TBAD_Users" msprop:Generator_TableClassName="TBAD_UsersDataTable" msprop:Generator_TableVarName="tableTBAD_Users" msprop:Generator_TablePropName="TBAD_Users" msprop:Generator_RowDeletingName="TBAD_UsersRowDeleting" msprop:Generator_RowChangingName="TBAD_UsersRowChanging" msprop:Generator_RowEvHandlerName="TBAD_UsersRowChangeEventHandler" msprop:Generator_RowDeletedName="TBAD_UsersRowDeleted" msprop:Generator_UserTableName="TBAD_Users" msprop:Generator_RowChangedName="TBAD_UsersRowChanged" msprop:Generator_RowEvArgName="TBAD_UsersRowChangeEvent" msprop:Generator_RowClassName="TBAD_UsersRow">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="Select" msprop:Generator_ColumnVarNameInTable="columnSelect" msprop:Generator_ColumnPropNameInRow="_Select" msprop:Generator_ColumnPropNameInTable="SelectColumn" msprop:Generator_UserColumnName="Select" type="xs:boolean" default="false" minOccurs="0" />
|
<xs:element name="Select" msprop:Generator_ColumnVarNameInTable="columnSelect" msprop:Generator_ColumnPropNameInRow="_Select" msprop:Generator_ColumnPropNameInTable="SelectColumn" msprop:Generator_UserColumnName="Select" type="xs:boolean" default="false" minOccurs="0" />
|
||||||
@@ -2956,7 +2959,7 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:sequence>
|
</xs:sequence>
|
||||||
</xs:complexType>
|
</xs:complexType>
|
||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:element name="TBGI_REGEX_DOCTYPE" msprop:Generator_TableClassName="TBGI_REGEX_DOCTYPEDataTable" msprop:Generator_TableVarName="tableTBGI_REGEX_DOCTYPE" msprop:Generator_TablePropName="TBGI_REGEX_DOCTYPE" msprop:Generator_RowDeletingName="TBGI_REGEX_DOCTYPERowDeleting" msprop:Generator_RowChangingName="TBGI_REGEX_DOCTYPERowChanging" msprop:Generator_RowEvHandlerName="TBGI_REGEX_DOCTYPERowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_REGEX_DOCTYPERowDeleted" msprop:Generator_UserTableName="TBGI_REGEX_DOCTYPE" msprop:Generator_RowChangedName="TBGI_REGEX_DOCTYPERowChanged" msprop:Generator_RowEvArgName="TBGI_REGEX_DOCTYPERowChangeEvent" msprop:Generator_RowClassName="TBGI_REGEX_DOCTYPERow">
|
<xs:element name="TBGI_REGEX_DOCTYPE" msprop:Generator_TableClassName="TBGI_REGEX_DOCTYPEDataTable" msprop:Generator_TableVarName="tableTBGI_REGEX_DOCTYPE" msprop:Generator_RowChangedName="TBGI_REGEX_DOCTYPERowChanged" msprop:Generator_TablePropName="TBGI_REGEX_DOCTYPE" msprop:Generator_RowDeletingName="TBGI_REGEX_DOCTYPERowDeleting" msprop:Generator_RowChangingName="TBGI_REGEX_DOCTYPERowChanging" msprop:Generator_RowEvHandlerName="TBGI_REGEX_DOCTYPERowChangeEventHandler" msprop:Generator_RowDeletedName="TBGI_REGEX_DOCTYPERowDeleted" msprop:Generator_RowClassName="TBGI_REGEX_DOCTYPERow" msprop:Generator_UserTableName="TBGI_REGEX_DOCTYPE" msprop:Generator_RowEvArgName="TBGI_REGEX_DOCTYPERowChangeEvent">
|
||||||
<xs:complexType>
|
<xs:complexType>
|
||||||
<xs:sequence>
|
<xs:sequence>
|
||||||
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
<xs:element name="GUID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="1" msprop:Generator_ColumnVarNameInTable="columnGUID" msprop:Generator_ColumnPropNameInRow="GUID" msprop:Generator_ColumnPropNameInTable="GUIDColumn" msprop:Generator_UserColumnName="GUID" type="xs:int" />
|
||||||
@@ -3092,21 +3095,21 @@ SELECT GUID, REGEX, DOCTYPE_ID, ADDED_WHO, ADDED_WHEN, CHANGED_WHO, CHANGED_WHEN
|
|||||||
</xs:element>
|
</xs:element>
|
||||||
<xs:annotation>
|
<xs:annotation>
|
||||||
<xs:appinfo>
|
<xs:appinfo>
|
||||||
<msdata:Relationship name="FK_TBDD_DOKUMENTART_EINGID" msdata:parent="TBDD_EINGANGSARTEN" msdata:child="TBDD_DOKUMENTART" msdata:parentkey="GUID" msdata:childkey="EINGANGSART_ID" msprop:Generator_UserChildTable="TBDD_DOKUMENTART" msprop:Generator_ChildPropName="GetTBDD_DOKUMENTARTRows" msprop:Generator_UserRelationName="FK_TBDD_DOKUMENTART_EINGID" msprop:Generator_ParentPropName="TBDD_EINGANGSARTENRow" msprop:Generator_RelationVarName="relationFK_TBDD_DOKUMENTART_EINGID" msprop:Generator_UserParentTable="TBDD_EINGANGSARTEN" />
|
<msdata:Relationship name="FK_TBDD_DOKUMENTART_EINGID" msdata:parent="TBDD_EINGANGSARTEN" msdata:child="TBDD_DOKUMENTART" msdata:parentkey="GUID" msdata:childkey="EINGANGSART_ID" msprop:Generator_UserChildTable="TBDD_DOKUMENTART" msprop:Generator_ChildPropName="GetTBDD_DOKUMENTARTRows" msprop:Generator_UserRelationName="FK_TBDD_DOKUMENTART_EINGID" msprop:Generator_RelationVarName="relationFK_TBDD_DOKUMENTART_EINGID" msprop:Generator_UserParentTable="TBDD_EINGANGSARTEN" msprop:Generator_ParentPropName="TBDD_EINGANGSARTENRow" />
|
||||||
<msdata:Relationship name="FK_TBDD_INDEX_MAN_CID" msdata:parent="TBDD_CONNECTION" msdata:child="TBDD_INDEX_MAN" msdata:parentkey="GUID" msdata:childkey="CONNECTION_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN" msprop:Generator_ChildPropName="GetTBDD_INDEX_MANRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_MAN_CID" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_MAN_CID" msprop:Generator_UserParentTable="TBDD_CONNECTION" msprop:Generator_ParentPropName="TBDD_CONNECTIONRow" />
|
<msdata:Relationship name="FK_TBDD_INDEX_MAN_CID" msdata:parent="TBDD_CONNECTION" msdata:child="TBDD_INDEX_MAN" msdata:parentkey="GUID" msdata:childkey="CONNECTION_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN" msprop:Generator_ChildPropName="GetTBDD_INDEX_MANRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_MAN_CID" msprop:Generator_ParentPropName="TBDD_CONNECTIONRow" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_MAN_CID" msprop:Generator_UserParentTable="TBDD_CONNECTION" />
|
||||||
<msdata:Relationship name="FK_TBDD_INDEX_AUTOM_DOCID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBDD_INDEX_AUTOM" msdata:parentkey="GUID" msdata:childkey="DOCTYPE_ID" msprop:Generator_UserChildTable="TBDD_INDEX_AUTOM" msprop:Generator_ChildPropName="GetTBDD_INDEX_AUTOMRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_AUTOM_DOCID" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_AUTOM_DOCID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" />
|
<msdata:Relationship name="FK_TBDD_INDEX_AUTOM_DOCID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBDD_INDEX_AUTOM" msdata:parentkey="GUID" msdata:childkey="DOCTYPE_ID" msprop:Generator_UserChildTable="TBDD_INDEX_AUTOM" msprop:Generator_ChildPropName="GetTBDD_INDEX_AUTOMRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_AUTOM_DOCID" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_AUTOM_DOCID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" />
|
||||||
<msdata:Relationship name="FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID" msdata:parent="TBDD_INDEX_MAN" msdata:child="TBDD_INDEX_MAN_POSTPROCESSING" msdata:parentkey="GUID" msdata:childkey="IDXMAN_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_ChildPropName="GetTBDD_INDEX_MAN_POSTPROCESSINGRows" msprop:Generator_UserRelationName="FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID" msprop:Generator_ParentPropName="TBDD_INDEX_MANRow" msprop:Generator_RelationVarName="relationFKTBDD_INDEX_MAN_POSTPROCESSING_IDXID" msprop:Generator_UserParentTable="TBDD_INDEX_MAN" />
|
<msdata:Relationship name="FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID" msdata:parent="TBDD_INDEX_MAN" msdata:child="TBDD_INDEX_MAN_POSTPROCESSING" msdata:parentkey="GUID" msdata:childkey="IDXMAN_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_ChildPropName="GetTBDD_INDEX_MAN_POSTPROCESSINGRows" msprop:Generator_UserRelationName="FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID" msprop:Generator_RelationVarName="relationFKTBDD_INDEX_MAN_POSTPROCESSING_IDXID" msprop:Generator_UserParentTable="TBDD_INDEX_MAN" msprop:Generator_ParentPropName="TBDD_INDEX_MANRow" />
|
||||||
<msdata:Relationship name="FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID1" msdata:parent="TBWHDD_INDEX_MAN" msdata:child="TBDD_INDEX_MAN_POSTPROCESSING" msdata:parentkey="GUID" msdata:childkey="IDXMAN_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_ChildPropName="GetTBDD_INDEX_MAN_POSTPROCESSINGRows" msprop:Generator_UserRelationName="FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID1" msprop:Generator_ParentPropName="TBWHDD_INDEX_MANRow" msprop:Generator_RelationVarName="relationFKTBDD_INDEX_MAN_POSTPROCESSING_IDXID1" msprop:Generator_UserParentTable="TBWHDD_INDEX_MAN" />
|
<msdata:Relationship name="FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID1" msdata:parent="TBWHDD_INDEX_MAN" msdata:child="TBDD_INDEX_MAN_POSTPROCESSING" msdata:parentkey="GUID" msdata:childkey="IDXMAN_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN_POSTPROCESSING" msprop:Generator_ChildPropName="GetTBDD_INDEX_MAN_POSTPROCESSINGRows" msprop:Generator_UserRelationName="FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID1" msprop:Generator_RelationVarName="relationFKTBDD_INDEX_MAN_POSTPROCESSING_IDXID1" msprop:Generator_UserParentTable="TBWHDD_INDEX_MAN" msprop:Generator_ParentPropName="TBWHDD_INDEX_MANRow" />
|
||||||
<msdata:Relationship name="FK_TBDD_GROUPS_USER_USER_ID" msdata:parent="TBDD_USER" msdata:child="TBDD_GROUPS_USER" msdata:parentkey="GUID" msdata:childkey="USER_ID" msprop:Generator_UserChildTable="TBDD_GROUPS_USER" msprop:Generator_ChildPropName="GetTBDD_GROUPS_USERRows" msprop:Generator_UserRelationName="FK_TBDD_GROUPS_USER_USER_ID" msprop:Generator_ParentPropName="TBDD_USERRow" msprop:Generator_RelationVarName="relationFK_TBDD_GROUPS_USER_USER_ID" msprop:Generator_UserParentTable="TBDD_USER" />
|
<msdata:Relationship name="FK_TBDD_GROUPS_USER_USER_ID" msdata:parent="TBDD_USER" msdata:child="TBDD_GROUPS_USER" msdata:parentkey="GUID" msdata:childkey="USER_ID" msprop:Generator_UserChildTable="TBDD_GROUPS_USER" msprop:Generator_ChildPropName="GetTBDD_GROUPS_USERRows" msprop:Generator_UserRelationName="FK_TBDD_GROUPS_USER_USER_ID" msprop:Generator_RelationVarName="relationFK_TBDD_GROUPS_USER_USER_ID" msprop:Generator_UserParentTable="TBDD_USER" msprop:Generator_ParentPropName="TBDD_USERRow" />
|
||||||
<msdata:Relationship name="FK_TBDD_INDEX_MAN_DAID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBDD_INDEX_MAN" msdata:parentkey="GUID" msdata:childkey="DOK_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN" msprop:Generator_ChildPropName="GetTBDD_INDEX_MANRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_MAN_DAID" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_MAN_DAID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" />
|
<msdata:Relationship name="FK_TBDD_INDEX_MAN_DAID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBDD_INDEX_MAN" msdata:parentkey="GUID" msdata:childkey="DOK_ID" msprop:Generator_UserChildTable="TBDD_INDEX_MAN" msprop:Generator_ChildPropName="GetTBDD_INDEX_MANRows" msprop:Generator_UserRelationName="FK_TBDD_INDEX_MAN_DAID" msprop:Generator_RelationVarName="relationFK_TBDD_INDEX_MAN_DAID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" />
|
||||||
<msdata:Relationship name="FK_TBHOTKEY_PATTERNS_PROFILE_ID" msdata:parent="TBHOTKEY_PROFILE" msdata:child="TBHOTKEY_PATTERNS" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_PATTERNS" msprop:Generator_ChildPropName="GetTBHOTKEY_PATTERNSRows" msprop:Generator_UserRelationName="FK_TBHOTKEY_PATTERNS_PROFILE_ID" msprop:Generator_ParentPropName="TBHOTKEY_PROFILERow" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_PATTERNS_PROFILE_ID" msprop:Generator_UserParentTable="TBHOTKEY_PROFILE" />
|
<msdata:Relationship name="FK_TBHOTKEY_PATTERNS_PROFILE_ID" msdata:parent="TBHOTKEY_PROFILE" msdata:child="TBHOTKEY_PATTERNS" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_PATTERNS" msprop:Generator_ChildPropName="GetTBHOTKEY_PATTERNSRows" msprop:Generator_UserRelationName="FK_TBHOTKEY_PATTERNS_PROFILE_ID" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_PATTERNS_PROFILE_ID" msprop:Generator_UserParentTable="TBHOTKEY_PROFILE" msprop:Generator_ParentPropName="TBHOTKEY_PROFILERow" />
|
||||||
<msdata:Relationship name="FK_TBHOTKEY_PATTERNS_PROFILE_ID1" msdata:parent="TBMYHOTKEYS" msdata:child="TBHOTKEY_PATTERNS" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_PATTERNS" msprop:Generator_ChildPropName="GetTBHOTKEY_PATTERNSRows" msprop:Generator_UserRelationName="FK_TBHOTKEY_PATTERNS_PROFILE_ID1" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_PATTERNS_PROFILE_ID1" msprop:Generator_UserParentTable="TBMYHOTKEYS" msprop:Generator_ParentPropName="TBMYHOTKEYSRow" />
|
<msdata:Relationship name="FK_TBHOTKEY_PATTERNS_PROFILE_ID1" msdata:parent="TBMYHOTKEYS" msdata:child="TBHOTKEY_PATTERNS" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_PATTERNS" msprop:Generator_ChildPropName="GetTBHOTKEY_PATTERNSRows" msprop:Generator_UserRelationName="FK_TBHOTKEY_PATTERNS_PROFILE_ID1" msprop:Generator_ParentPropName="TBMYHOTKEYSRow" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_PATTERNS_PROFILE_ID1" msprop:Generator_UserParentTable="TBMYHOTKEYS" />
|
||||||
<msdata:Relationship name="FK_TBHOTKEY_USER_PROFILE_PROFILE_ID" msdata:parent="TBHOTKEY_PROFILE" msdata:child="TBHOTKEY_USER_PROFILE" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_USER_PROFILE" msprop:Generator_ChildPropName="GetTBHOTKEY_USER_PROFILERows" msprop:Generator_UserRelationName="FK_TBHOTKEY_USER_PROFILE_PROFILE_ID" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_USER_PROFILE_PROFILE_ID" msprop:Generator_UserParentTable="TBHOTKEY_PROFILE" msprop:Generator_ParentPropName="TBHOTKEY_PROFILERow" />
|
<msdata:Relationship name="FK_TBHOTKEY_USER_PROFILE_PROFILE_ID" msdata:parent="TBHOTKEY_PROFILE" msdata:child="TBHOTKEY_USER_PROFILE" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_USER_PROFILE" msprop:Generator_ChildPropName="GetTBHOTKEY_USER_PROFILERows" msprop:Generator_UserRelationName="FK_TBHOTKEY_USER_PROFILE_PROFILE_ID" msprop:Generator_ParentPropName="TBHOTKEY_PROFILERow" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_USER_PROFILE_PROFILE_ID" msprop:Generator_UserParentTable="TBHOTKEY_PROFILE" />
|
||||||
<msdata:Relationship name="FK_TBHOTKEY_USER_PROFILE_PROFILE_ID1" msdata:parent="TBMYHOTKEYS" msdata:child="TBHOTKEY_USER_PROFILE" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_USER_PROFILE" msprop:Generator_ChildPropName="GetTBHOTKEY_USER_PROFILERows" msprop:Generator_UserRelationName="FK_TBHOTKEY_USER_PROFILE_PROFILE_ID1" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_USER_PROFILE_PROFILE_ID1" msprop:Generator_UserParentTable="TBMYHOTKEYS" msprop:Generator_ParentPropName="TBMYHOTKEYSRow" />
|
<msdata:Relationship name="FK_TBHOTKEY_USER_PROFILE_PROFILE_ID1" msdata:parent="TBMYHOTKEYS" msdata:child="TBHOTKEY_USER_PROFILE" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_USER_PROFILE" msprop:Generator_ChildPropName="GetTBHOTKEY_USER_PROFILERows" msprop:Generator_UserRelationName="FK_TBHOTKEY_USER_PROFILE_PROFILE_ID1" msprop:Generator_ParentPropName="TBMYHOTKEYSRow" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_USER_PROFILE_PROFILE_ID1" msprop:Generator_UserParentTable="TBMYHOTKEYS" />
|
||||||
<msdata:Relationship name="FK_TBHOTKEY_USER_PROFILE_USER_ID" msdata:parent="TBDD_USER" msdata:child="TBHOTKEY_USER_PROFILE" msdata:parentkey="GUID" msdata:childkey="USER_ID" msprop:Generator_UserChildTable="TBHOTKEY_USER_PROFILE" msprop:Generator_ChildPropName="GetTBHOTKEY_USER_PROFILERows" msprop:Generator_UserRelationName="FK_TBHOTKEY_USER_PROFILE_USER_ID" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_USER_PROFILE_USER_ID" msprop:Generator_UserParentTable="TBDD_USER" msprop:Generator_ParentPropName="TBDD_USERRow" />
|
<msdata:Relationship name="FK_TBHOTKEY_USER_PROFILE_USER_ID" msdata:parent="TBDD_USER" msdata:child="TBHOTKEY_USER_PROFILE" msdata:parentkey="GUID" msdata:childkey="USER_ID" msprop:Generator_UserChildTable="TBHOTKEY_USER_PROFILE" msprop:Generator_ChildPropName="GetTBHOTKEY_USER_PROFILERows" msprop:Generator_UserRelationName="FK_TBHOTKEY_USER_PROFILE_USER_ID" msprop:Generator_ParentPropName="TBDD_USERRow" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_USER_PROFILE_USER_ID" msprop:Generator_UserParentTable="TBDD_USER" />
|
||||||
<msdata:Relationship name="FK_TBHOTKEY_PATTERNS_REWORK_HKPATTERN_ID" msdata:parent="TBHOTKEY_PATTERNS" msdata:child="TBHOTKEY_PATTERNS_REWORK" msdata:parentkey="GUID" msdata:childkey="HKPATTERN_ID" msprop:Generator_UserChildTable="TBHOTKEY_PATTERNS_REWORK" msprop:Generator_ChildPropName="GetTBHOTKEY_PATTERNS_REWORKRows" msprop:Generator_UserRelationName="FK_TBHOTKEY_PATTERNS_REWORK_HKPATTERN_ID" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_PATTERNS_REWORK_HKPATTERN_ID" msprop:Generator_UserParentTable="TBHOTKEY_PATTERNS" msprop:Generator_ParentPropName="TBHOTKEY_PATTERNSRow" />
|
<msdata:Relationship name="FK_TBHOTKEY_PATTERNS_REWORK_HKPATTERN_ID" msdata:parent="TBHOTKEY_PATTERNS" msdata:child="TBHOTKEY_PATTERNS_REWORK" msdata:parentkey="GUID" msdata:childkey="HKPATTERN_ID" msprop:Generator_UserChildTable="TBHOTKEY_PATTERNS_REWORK" msprop:Generator_ChildPropName="GetTBHOTKEY_PATTERNS_REWORKRows" msprop:Generator_UserRelationName="FK_TBHOTKEY_PATTERNS_REWORK_HKPATTERN_ID" msprop:Generator_ParentPropName="TBHOTKEY_PATTERNSRow" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_PATTERNS_REWORK_HKPATTERN_ID" msprop:Generator_UserParentTable="TBHOTKEY_PATTERNS" />
|
||||||
<msdata:Relationship name="FK_TBHOTKEY_WINDOW_HOOK_PROFILE_ID" msdata:parent="TBHOTKEY_PROFILE" msdata:child="TBHOTKEY_WINDOW_HOOK" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_WINDOW_HOOK" msprop:Generator_ChildPropName="GetTBHOTKEY_WINDOW_HOOKRows" msprop:Generator_UserRelationName="FK_TBHOTKEY_WINDOW_HOOK_PROFILE_ID" msprop:Generator_ParentPropName="TBHOTKEY_PROFILERow" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_WINDOW_HOOK_PROFILE_ID" msprop:Generator_UserParentTable="TBHOTKEY_PROFILE" />
|
<msdata:Relationship name="FK_TBHOTKEY_WINDOW_HOOK_PROFILE_ID" msdata:parent="TBHOTKEY_PROFILE" msdata:child="TBHOTKEY_WINDOW_HOOK" msdata:parentkey="GUID" msdata:childkey="HKPROFILE_ID" msprop:Generator_UserChildTable="TBHOTKEY_WINDOW_HOOK" msprop:Generator_ChildPropName="GetTBHOTKEY_WINDOW_HOOKRows" msprop:Generator_UserRelationName="FK_TBHOTKEY_WINDOW_HOOK_PROFILE_ID" msprop:Generator_RelationVarName="relationFK_TBHOTKEY_WINDOW_HOOK_PROFILE_ID" msprop:Generator_UserParentTable="TBHOTKEY_PROFILE" msprop:Generator_ParentPropName="TBHOTKEY_PROFILERow" />
|
||||||
<msdata:Relationship name="FK_TBGI_REGEX_DOCTYPE_DTID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBGI_REGEX_DOCTYPE" msdata:parentkey="GUID" msdata:childkey="DOCTYPE_ID" msprop:Generator_UserChildTable="TBGI_REGEX_DOCTYPE" msprop:Generator_ChildPropName="GetTBGI_REGEX_DOCTYPERows" msprop:Generator_UserRelationName="FK_TBGI_REGEX_DOCTYPE_DTID" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" msprop:Generator_RelationVarName="relationFK_TBGI_REGEX_DOCTYPE_DTID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" />
|
<msdata:Relationship name="FK_TBGI_REGEX_DOCTYPE_DTID" msdata:parent="TBDD_DOKUMENTART" msdata:child="TBGI_REGEX_DOCTYPE" msdata:parentkey="GUID" msdata:childkey="DOCTYPE_ID" msprop:Generator_UserChildTable="TBGI_REGEX_DOCTYPE" msprop:Generator_ChildPropName="GetTBGI_REGEX_DOCTYPERows" msprop:Generator_UserRelationName="FK_TBGI_REGEX_DOCTYPE_DTID" msprop:Generator_RelationVarName="relationFK_TBGI_REGEX_DOCTYPE_DTID" msprop:Generator_UserParentTable="TBDD_DOKUMENTART" msprop:Generator_ParentPropName="TBDD_DOKUMENTARTRow" />
|
||||||
</xs:appinfo>
|
</xs:appinfo>
|
||||||
</xs:annotation>
|
</xs:annotation>
|
||||||
</xs:schema>
|
</xs:schema>
|
||||||
@@ -4,26 +4,24 @@
|
|||||||
Changes to this file may cause incorrect behavior and will be lost if
|
Changes to this file may cause incorrect behavior and will be lost if
|
||||||
the code is regenerated.
|
the code is regenerated.
|
||||||
</autogenerated>-->
|
</autogenerated>-->
|
||||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="23" ViewPortY="362" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="-22" ViewPortY="-47" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||||
<Shapes>
|
<Shapes>
|
||||||
<Shape ID="DesignTable:TBDD_USER" ZOrder="8" X="765" Y="247" Height="305" Width="213" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="235" />
|
<Shape ID="DesignTable:TBDD_USER" ZOrder="8" X="765" Y="247" Height="305" Width="213" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="235" />
|
||||||
<Shape ID="DesignTable:TBDD_DOKUMENTART" ZOrder="10" X="119" Y="308" Height="381" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="275" />
|
<Shape ID="DesignTable:TBDD_DOKUMENTART" ZOrder="10" X="119" Y="308" Height="381" Width="278" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="275" />
|
||||||
<Shape ID="DesignTable:TBDD_EINGANGSARTEN" ZOrder="28" X="431" Y="313" Height="210" Width="286" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
<Shape ID="DesignTable:TBDD_EINGANGSARTEN" ZOrder="28" X="431" Y="313" Height="210" Width="286" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||||
<Shape ID="DesignTable:TBDD_DOKART_MODULE" ZOrder="45" X="1381" Y="161" Height="134" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
<Shape ID="DesignTable:TBDD_DOKART_MODULE" ZOrder="42" X="1381" Y="161" Height="134" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||||
<Shape ID="DesignTable:TBDD_MODULES" ZOrder="44" X="1096" Y="325" Height="115" Width="242" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
<Shape ID="DesignTable:TBDD_MODULES" ZOrder="41" X="1096" Y="325" Height="115" Width="242" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
|
||||||
<Shape ID="DesignTable:TBDD_INDEX_MAN" ZOrder="37" X="464" Y="656" Height="360" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="292" />
|
<Shape ID="DesignTable:TBDD_INDEX_MAN" ZOrder="2" X="456" Y="638" Height="360" Width="244" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="292" />
|
||||||
<Shape ID="DesignTable:TBDD_CONNECTION" ZOrder="43" X="433" Y="81" Height="305" Width="264" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:TBDD_CONNECTION" ZOrder="40" X="433" Y="81" Height="305" Width="264" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:VWDDINDEX_MAN" ZOrder="6" X="1040" Y="444" Height="381" Width="256" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="313" />
|
<Shape ID="DesignTable:VWDDINDEX_MAN" ZOrder="6" X="1040" Y="444" Height="381" Width="256" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="313" />
|
||||||
<Shape ID="DesignTable:VWDDINDEX_AUTOM" ZOrder="41" X="1361" Y="319" Height="305" Width="272" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:VWDDINDEX_AUTOM" ZOrder="38" X="1361" Y="319" Height="305" Width="272" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:TBDD_INDEX_AUTOM" ZOrder="7" X="668" Y="605" Height="305" Width="272" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:TBDD_INDEX_AUTOM" ZOrder="7" X="668" Y="605" Height="305" Width="272" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:TBGI_CONFIGURATION" ZOrder="38" X="1071" Y="621" Height="229" Width="279" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
<Shape ID="DesignTable:TBGI_CONFIGURATION" ZOrder="35" X="1071" Y="621" Height="229" Width="279" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
||||||
<Shape ID="DesignTable:TBGI_OBJECTTYPE_EMAIL_INDEX" ZOrder="29" X="117" Y="665" Height="286" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="235" />
|
<Shape ID="DesignTable:TBGI_OBJECTTYPE_EMAIL_INDEX" ZOrder="29" X="117" Y="665" Height="286" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="235" />
|
||||||
<Shape ID="DesignTable:TBDD_INDEX_MAN_POSTPROCESSING" ZOrder="35" X="743" Y="69" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
<Shape ID="DesignTable:TBDD_INDEX_MAN_POSTPROCESSING" ZOrder="1" X="743" Y="69" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||||
<Shape ID="DesignTable:TBWHDD_INDEX_MAN" ZOrder="33" X="133" Y="112" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
<Shape ID="DesignTable:TBWHDD_INDEX_MAN" ZOrder="32" X="133" Y="112" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||||
<Shape ID="DesignTable:TBDD_GROUPS" ZOrder="3" X="1096" Y="109" Height="210" Width="233" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
|
<Shape ID="DesignTable:TBDD_GROUPS_USER" ZOrder="5" X="1014" Y="-1" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||||
<Shape ID="DesignTable:TBDD_GROUPS_USER" ZOrder="4" X="1014" Y="-1" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
|
||||||
<Shape ID="DesignTable:VWGI_USER_GROUPS_RELATION" ZOrder="9" X="845" Y="494" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
<Shape ID="DesignTable:VWGI_USER_GROUPS_RELATION" ZOrder="9" X="845" Y="494" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||||
<Shape ID="DesignTable:VWGI_DOCTYPE_GROUP" ZOrder="5" X="259" Y="220" Height="267" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
|
|
||||||
<Shape ID="DesignTable:TBHOTKEY_PROFILE" ZOrder="17" X="-12" Y="311" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
<Shape ID="DesignTable:TBHOTKEY_PROFILE" ZOrder="17" X="-12" Y="311" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||||
<Shape ID="DesignTable:TBHOTKEY_PATTERNS" ZOrder="16" X="221" Y="-36" Height="320" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="252" />
|
<Shape ID="DesignTable:TBHOTKEY_PATTERNS" ZOrder="16" X="221" Y="-36" Height="320" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="252" />
|
||||||
<Shape ID="DesignTable:TBMYHOTKEYS" ZOrder="20" X="25" Y="-1" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
<Shape ID="DesignTable:TBMYHOTKEYS" ZOrder="20" X="25" Y="-1" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||||
@@ -32,13 +30,13 @@
|
|||||||
<Shape ID="DesignTable:TBHOTKEY_WINDOW_HOOK" ZOrder="15" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
<Shape ID="DesignTable:TBHOTKEY_WINDOW_HOOK" ZOrder="15" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||||
<Shape ID="DesignTable:TBGI_FILES_USER" ZOrder="14" X="1181" Y="7" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
<Shape ID="DesignTable:TBGI_FILES_USER" ZOrder="14" X="1181" Y="7" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||||
<Shape ID="DesignTable:TBGI_HISTORY" ZOrder="12" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
<Shape ID="DesignTable:TBGI_HISTORY" ZOrder="12" X="0" Y="0" Height="90" Width="158" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="0" />
|
||||||
<Shape ID="DesignTable:TBTempFiles2Index" ZOrder="39" X="915" Y="82" Height="106" Width="150" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
<Shape ID="DesignTable:TBGI_REGEX_DOCTYPE" ZOrder="4" X="1027" Y="881" Height="210" Width="276" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||||
<Shape ID="DesignTable:TBTEMP_INDEXRESULTS" ZOrder="32" X="639" Y="943" Height="67" Width="208" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="63" />
|
<Shape ID="DesignTable:TBTempFiles2Index" ZOrder="36" X="915" Y="82" Height="106" Width="150" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
|
||||||
|
<Shape ID="DesignTable:TBTEMP_INDEXRESULTS" ZOrder="31" X="639" Y="943" Height="67" Width="208" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="63" />
|
||||||
<Shape ID="DesignTable:TBAD_Users" ZOrder="11" X="1363" Y="639" Height="143" Width="150" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="86" />
|
<Shape ID="DesignTable:TBAD_Users" ZOrder="11" X="1363" Y="639" Height="143" Width="150" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="86" />
|
||||||
<Shape ID="DesignTable:TBGI_REGEX_DOCTYPE" ZOrder="2" X="1027" Y="881" Height="210" Width="276" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
|
||||||
</Shapes>
|
</Shapes>
|
||||||
<Connectors>
|
<Connectors>
|
||||||
<Connector ID="DesignRelation:FK_TBDD_DOKUMENTART_EINGID" ZOrder="46" LineWidth="11">
|
<Connector ID="DesignRelation:FK_TBDD_DOKUMENTART_EINGID" ZOrder="43" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>431</X>
|
<X>431</X>
|
||||||
@@ -50,19 +48,19 @@
|
|||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
<Connector ID="DesignRelation:FK_TBDD_INDEX_MAN_CID" ZOrder="42" LineWidth="11">
|
<Connector ID="DesignRelation:FK_TBDD_INDEX_MAN_CID" ZOrder="39" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>543</X>
|
<X>535</X>
|
||||||
<Y>386</Y>
|
<Y>386</Y>
|
||||||
</Point>
|
</Point>
|
||||||
<Point>
|
<Point>
|
||||||
<X>543</X>
|
<X>535</X>
|
||||||
<Y>656</Y>
|
<Y>638</Y>
|
||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
<Connector ID="DesignRelation:FK_TBDD_INDEX_AUTOM_DOCID" ZOrder="40" LineWidth="11">
|
<Connector ID="DesignRelation:FK_TBDD_INDEX_AUTOM_DOCID" ZOrder="37" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>397</X>
|
<X>397</X>
|
||||||
@@ -74,14 +72,14 @@
|
|||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
<Connector ID="DesignRelation:FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID" ZOrder="36" LineWidth="11">
|
<Connector ID="DesignRelation:FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID" ZOrder="34" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>605</X>
|
<X>597</X>
|
||||||
<Y>656</Y>
|
<Y>638</Y>
|
||||||
</Point>
|
</Point>
|
||||||
<Point>
|
<Point>
|
||||||
<X>605</X>
|
<X>597</X>
|
||||||
<Y>148</Y>
|
<Y>148</Y>
|
||||||
</Point>
|
</Point>
|
||||||
<Point>
|
<Point>
|
||||||
@@ -90,7 +88,7 @@
|
|||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
<Connector ID="DesignRelation:FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID1" ZOrder="34" LineWidth="11">
|
<Connector ID="DesignRelation:FKTBDD_INDEX_MAN_POSTPROCESSING_IDXID1" ZOrder="33" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>959</X>
|
<X>959</X>
|
||||||
@@ -102,22 +100,6 @@
|
|||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
<Connector ID="DesignRelation:FK_TBDD_GROUPS_USER_GROUP_ID" ZOrder="31" LineWidth="11">
|
|
||||||
<RoutePoints>
|
|
||||||
<Point>
|
|
||||||
<X>1096</X>
|
|
||||||
<Y>262</Y>
|
|
||||||
</Point>
|
|
||||||
<Point>
|
|
||||||
<X>1047</X>
|
|
||||||
<Y>262</Y>
|
|
||||||
</Point>
|
|
||||||
<Point>
|
|
||||||
<X>1047</X>
|
|
||||||
<Y>228</Y>
|
|
||||||
</Point>
|
|
||||||
</RoutePoints>
|
|
||||||
</Connector>
|
|
||||||
<Connector ID="DesignRelation:FK_TBDD_GROUPS_USER_USER_ID" ZOrder="30" LineWidth="11">
|
<Connector ID="DesignRelation:FK_TBDD_GROUPS_USER_USER_ID" ZOrder="30" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
@@ -137,20 +119,12 @@
|
|||||||
<Connector ID="DesignRelation:FK_TBDD_INDEX_MAN_DAID" ZOrder="27" LineWidth="11">
|
<Connector ID="DesignRelation:FK_TBDD_INDEX_MAN_DAID" ZOrder="27" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>94</X>
|
<X>397</X>
|
||||||
<Y>0</Y>
|
<Y>663</Y>
|
||||||
</Point>
|
</Point>
|
||||||
<Point>
|
<Point>
|
||||||
<X>94</X>
|
<X>456</X>
|
||||||
<Y>-30</Y>
|
<Y>663</Y>
|
||||||
</Point>
|
|
||||||
<Point>
|
|
||||||
<X>94</X>
|
|
||||||
<Y>-30</Y>
|
|
||||||
</Point>
|
|
||||||
<Point>
|
|
||||||
<X>94</X>
|
|
||||||
<Y>0</Y>
|
|
||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
@@ -278,7 +252,7 @@
|
|||||||
</Point>
|
</Point>
|
||||||
</RoutePoints>
|
</RoutePoints>
|
||||||
</Connector>
|
</Connector>
|
||||||
<Connector ID="DesignRelation:FK_TBGI_REGEX_DOCTYPE_DTID" ZOrder="1" LineWidth="11">
|
<Connector ID="DesignRelation:FK_TBGI_REGEX_DOCTYPE_DTID" ZOrder="3" LineWidth="11">
|
||||||
<RoutePoints>
|
<RoutePoints>
|
||||||
<Point>
|
<Point>
|
||||||
<X>380</X>
|
<X>380</X>
|
||||||
|
|||||||
89
Global_Indexer/frmAdministration.Designer.vb
generated
89
Global_Indexer/frmAdministration.Designer.vb
generated
@@ -118,12 +118,6 @@ Partial Class frmAdministration
|
|||||||
Me.BarButtonItem26 = New DevExpress.XtraBars.BarButtonItem()
|
Me.BarButtonItem26 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
Me.BarButtonItem27 = New DevExpress.XtraBars.BarButtonItem()
|
Me.BarButtonItem27 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
Me.BarButtonItem28 = New DevExpress.XtraBars.BarButtonItem()
|
Me.BarButtonItem28 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
Me.RibbonPageCategoryUserGroups = New DevExpress.XtraBars.Ribbon.RibbonPageCategory()
|
|
||||||
Me.RibbonPageUserGroups = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
|
||||||
Me.RibbonPageGroup3 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
|
||||||
Me.RibbonPageCategoryMisc = New DevExpress.XtraBars.Ribbon.RibbonPageCategory()
|
|
||||||
Me.RibbonPageEmail = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
|
||||||
Me.RibbonPageGroup4 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
|
||||||
Me.RibbonPageStart = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
Me.RibbonPageStart = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||||
Me.RibbonPageGroup2 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroup2 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPageGroup1 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroup1 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
@@ -131,6 +125,8 @@ Partial Class frmAdministration
|
|||||||
Me.RibbonPageGroupManualIndexFunctions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroupManualIndexFunctions = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPageGroupAutoIndex = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroupAutoIndex = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPageGroupProfileRegex = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroupProfileRegex = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
|
Me.RibbonPageEmail = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||||
|
Me.RibbonPageGroup4 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonStatusBar1 = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
|
Me.RibbonStatusBar1 = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
|
||||||
Me.Label12 = New System.Windows.Forms.Label()
|
Me.Label12 = New System.Windows.Forms.Label()
|
||||||
Me.XtraTabControl3 = New DevExpress.XtraTab.XtraTabControl()
|
Me.XtraTabControl3 = New DevExpress.XtraTab.XtraTabControl()
|
||||||
@@ -222,12 +218,12 @@ Partial Class frmAdministration
|
|||||||
Me.XtraTabPageAutoIndex = New DevExpress.XtraTab.XtraTabPage()
|
Me.XtraTabPageAutoIndex = New DevExpress.XtraTab.XtraTabPage()
|
||||||
Me.Label6 = New System.Windows.Forms.Label()
|
Me.Label6 = New System.Windows.Forms.Label()
|
||||||
Me.ListBoxControl4 = New DevExpress.XtraEditors.ListBoxControl()
|
Me.ListBoxControl4 = New DevExpress.XtraEditors.ListBoxControl()
|
||||||
|
Me.TBDD_INDEX_AUTOMBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||||
Me.btnAddWindowsVariable = New System.Windows.Forms.Button()
|
Me.btnAddWindowsVariable = New System.Windows.Forms.Button()
|
||||||
Me.lblWindowParameter = New System.Windows.Forms.Label()
|
Me.lblWindowParameter = New System.Windows.Forms.Label()
|
||||||
Me.lbFileparameter = New System.Windows.Forms.ListBox()
|
Me.lbFileparameter = New System.Windows.Forms.ListBox()
|
||||||
Me.lblValue = New System.Windows.Forms.Label()
|
Me.lblValue = New System.Windows.Forms.Label()
|
||||||
Me.INDEXNAME_AutoIndexCMB = New System.Windows.Forms.ComboBox()
|
Me.INDEXNAME_AutoIndexCMB = New System.Windows.Forms.ComboBox()
|
||||||
Me.TBDD_INDEX_AUTOMBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
|
||||||
Me.btnSQLViewAuto = New System.Windows.Forms.Button()
|
Me.btnSQLViewAuto = New System.Windows.Forms.Button()
|
||||||
Me.SQL_ACTIVECheckBox = New System.Windows.Forms.CheckBox()
|
Me.SQL_ACTIVECheckBox = New System.Windows.Forms.CheckBox()
|
||||||
Me.GUIDAUTO_INDEXTextbox = New System.Windows.Forms.TextBox()
|
Me.GUIDAUTO_INDEXTextbox = New System.Windows.Forms.TextBox()
|
||||||
@@ -527,8 +523,7 @@ Partial Class frmAdministration
|
|||||||
resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
|
resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
|
||||||
Me.RibbonControl1.MaxItemId = 38
|
Me.RibbonControl1.MaxItemId = 38
|
||||||
Me.RibbonControl1.Name = "RibbonControl1"
|
Me.RibbonControl1.Name = "RibbonControl1"
|
||||||
Me.RibbonControl1.PageCategories.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageCategory() {Me.RibbonPageCategoryUserGroups, Me.RibbonPageCategoryMisc})
|
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPageStart, Me.RibbonPageEmail})
|
||||||
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPageStart})
|
|
||||||
Me.RibbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
Me.RibbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
Me.RibbonControl1.ShowToolbarCustomizeItem = False
|
Me.RibbonControl1.ShowToolbarCustomizeItem = False
|
||||||
Me.RibbonControl1.StatusBar = Me.RibbonStatusBar1
|
Me.RibbonControl1.StatusBar = Me.RibbonStatusBar1
|
||||||
@@ -750,53 +745,6 @@ Partial Class frmAdministration
|
|||||||
Me.BarButtonItem28.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem28.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.BarButtonItem28.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem28.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem28.Name = "BarButtonItem28"
|
Me.BarButtonItem28.Name = "BarButtonItem28"
|
||||||
'
|
'
|
||||||
'RibbonPageCategoryUserGroups
|
|
||||||
'
|
|
||||||
Me.RibbonPageCategoryUserGroups.Appearance.BackColor = System.Drawing.Color.SeaGreen
|
|
||||||
Me.RibbonPageCategoryUserGroups.Appearance.Options.UseBackColor = True
|
|
||||||
Me.RibbonPageCategoryUserGroups.AutoStretchPageHeaders = True
|
|
||||||
Me.RibbonPageCategoryUserGroups.Name = "RibbonPageCategoryUserGroups"
|
|
||||||
Me.RibbonPageCategoryUserGroups.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPageUserGroups})
|
|
||||||
resources.ApplyResources(Me.RibbonPageCategoryUserGroups, "RibbonPageCategoryUserGroups")
|
|
||||||
'
|
|
||||||
'RibbonPageUserGroups
|
|
||||||
'
|
|
||||||
Me.RibbonPageUserGroups.Appearance.BackColor = System.Drawing.Color.SeaGreen
|
|
||||||
Me.RibbonPageUserGroups.Appearance.Options.UseBackColor = True
|
|
||||||
Me.RibbonPageUserGroups.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup3})
|
|
||||||
Me.RibbonPageUserGroups.Name = "RibbonPageUserGroups"
|
|
||||||
resources.ApplyResources(Me.RibbonPageUserGroups, "RibbonPageUserGroups")
|
|
||||||
'
|
|
||||||
'RibbonPageGroup3
|
|
||||||
'
|
|
||||||
Me.RibbonPageGroup3.ItemLinks.Add(Me.BarButtonItem6)
|
|
||||||
Me.RibbonPageGroup3.Name = "RibbonPageGroup3"
|
|
||||||
resources.ApplyResources(Me.RibbonPageGroup3, "RibbonPageGroup3")
|
|
||||||
'
|
|
||||||
'RibbonPageCategoryMisc
|
|
||||||
'
|
|
||||||
Me.RibbonPageCategoryMisc.Appearance.BackColor = System.Drawing.Color.DarkCyan
|
|
||||||
Me.RibbonPageCategoryMisc.Appearance.Options.UseBackColor = True
|
|
||||||
Me.RibbonPageCategoryMisc.AutoStretchPageHeaders = True
|
|
||||||
Me.RibbonPageCategoryMisc.Name = "RibbonPageCategoryMisc"
|
|
||||||
Me.RibbonPageCategoryMisc.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPageEmail})
|
|
||||||
resources.ApplyResources(Me.RibbonPageCategoryMisc, "RibbonPageCategoryMisc")
|
|
||||||
'
|
|
||||||
'RibbonPageEmail
|
|
||||||
'
|
|
||||||
Me.RibbonPageEmail.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup4})
|
|
||||||
Me.RibbonPageEmail.Name = "RibbonPageEmail"
|
|
||||||
resources.ApplyResources(Me.RibbonPageEmail, "RibbonPageEmail")
|
|
||||||
'
|
|
||||||
'RibbonPageGroup4
|
|
||||||
'
|
|
||||||
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem9)
|
|
||||||
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem10)
|
|
||||||
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem11)
|
|
||||||
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem12)
|
|
||||||
Me.RibbonPageGroup4.Name = "RibbonPageGroup4"
|
|
||||||
resources.ApplyResources(Me.RibbonPageGroup4, "RibbonPageGroup4")
|
|
||||||
'
|
|
||||||
'RibbonPageStart
|
'RibbonPageStart
|
||||||
'
|
'
|
||||||
Me.RibbonPageStart.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup2, Me.RibbonPageGroup1, Me.RibbonPageGroupManualIndex, Me.RibbonPageGroupManualIndexFunctions, Me.RibbonPageGroupAutoIndex, Me.RibbonPageGroupProfileRegex})
|
Me.RibbonPageStart.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup2, Me.RibbonPageGroup1, Me.RibbonPageGroupManualIndex, Me.RibbonPageGroupManualIndexFunctions, Me.RibbonPageGroupAutoIndex, Me.RibbonPageGroupProfileRegex})
|
||||||
@@ -860,6 +808,21 @@ Partial Class frmAdministration
|
|||||||
Me.RibbonPageGroupProfileRegex.Name = "RibbonPageGroupProfileRegex"
|
Me.RibbonPageGroupProfileRegex.Name = "RibbonPageGroupProfileRegex"
|
||||||
resources.ApplyResources(Me.RibbonPageGroupProfileRegex, "RibbonPageGroupProfileRegex")
|
resources.ApplyResources(Me.RibbonPageGroupProfileRegex, "RibbonPageGroupProfileRegex")
|
||||||
'
|
'
|
||||||
|
'RibbonPageEmail
|
||||||
|
'
|
||||||
|
Me.RibbonPageEmail.Groups.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageGroup() {Me.RibbonPageGroup4})
|
||||||
|
Me.RibbonPageEmail.Name = "RibbonPageEmail"
|
||||||
|
resources.ApplyResources(Me.RibbonPageEmail, "RibbonPageEmail")
|
||||||
|
'
|
||||||
|
'RibbonPageGroup4
|
||||||
|
'
|
||||||
|
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem9)
|
||||||
|
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem10)
|
||||||
|
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem11)
|
||||||
|
Me.RibbonPageGroup4.ItemLinks.Add(Me.BarButtonItem12)
|
||||||
|
Me.RibbonPageGroup4.Name = "RibbonPageGroup4"
|
||||||
|
resources.ApplyResources(Me.RibbonPageGroup4, "RibbonPageGroup4")
|
||||||
|
'
|
||||||
'RibbonStatusBar1
|
'RibbonStatusBar1
|
||||||
'
|
'
|
||||||
Me.RibbonStatusBar1.ItemLinks.Add(Me.txtStatus)
|
Me.RibbonStatusBar1.ItemLinks.Add(Me.txtStatus)
|
||||||
@@ -1771,6 +1734,11 @@ Partial Class frmAdministration
|
|||||||
resources.ApplyResources(Me.ListBoxControl4, "ListBoxControl4")
|
resources.ApplyResources(Me.ListBoxControl4, "ListBoxControl4")
|
||||||
Me.ListBoxControl4.Name = "ListBoxControl4"
|
Me.ListBoxControl4.Name = "ListBoxControl4"
|
||||||
'
|
'
|
||||||
|
'TBDD_INDEX_AUTOMBindingSource
|
||||||
|
'
|
||||||
|
Me.TBDD_INDEX_AUTOMBindingSource.DataMember = "TBDD_INDEX_AUTOM"
|
||||||
|
Me.TBDD_INDEX_AUTOMBindingSource.DataSource = Me.MyDataset
|
||||||
|
'
|
||||||
'btnAddWindowsVariable
|
'btnAddWindowsVariable
|
||||||
'
|
'
|
||||||
Me.btnAddWindowsVariable.Image = Global.Global_Indexer.My.Resources.Resources.arrow_previous_16xLG
|
Me.btnAddWindowsVariable.Image = Global.Global_Indexer.My.Resources.Resources.arrow_previous_16xLG
|
||||||
@@ -1802,11 +1770,6 @@ Partial Class frmAdministration
|
|||||||
Me.INDEXNAME_AutoIndexCMB.FormattingEnabled = True
|
Me.INDEXNAME_AutoIndexCMB.FormattingEnabled = True
|
||||||
Me.INDEXNAME_AutoIndexCMB.Name = "INDEXNAME_AutoIndexCMB"
|
Me.INDEXNAME_AutoIndexCMB.Name = "INDEXNAME_AutoIndexCMB"
|
||||||
'
|
'
|
||||||
'TBDD_INDEX_AUTOMBindingSource
|
|
||||||
'
|
|
||||||
Me.TBDD_INDEX_AUTOMBindingSource.DataMember = "TBDD_INDEX_AUTOM"
|
|
||||||
Me.TBDD_INDEX_AUTOMBindingSource.DataSource = Me.MyDataset
|
|
||||||
'
|
|
||||||
'btnSQLViewAuto
|
'btnSQLViewAuto
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnSQLViewAuto, "btnSQLViewAuto")
|
resources.ApplyResources(Me.btnSQLViewAuto, "btnSQLViewAuto")
|
||||||
@@ -2946,9 +2909,6 @@ Partial Class frmAdministration
|
|||||||
Friend WithEvents RibbonPage2 As DevExpress.XtraBars.Ribbon.RibbonPage
|
Friend WithEvents RibbonPage2 As DevExpress.XtraBars.Ribbon.RibbonPage
|
||||||
Friend WithEvents BarButtonItem1 As DevExpress.XtraBars.BarButtonItem
|
Friend WithEvents BarButtonItem1 As DevExpress.XtraBars.BarButtonItem
|
||||||
Friend WithEvents BarButtonItem2 As DevExpress.XtraBars.BarButtonItem
|
Friend WithEvents BarButtonItem2 As DevExpress.XtraBars.BarButtonItem
|
||||||
Friend WithEvents RibbonPageCategoryUserGroups As DevExpress.XtraBars.Ribbon.RibbonPageCategory
|
|
||||||
Friend WithEvents RibbonPageUserGroups As DevExpress.XtraBars.Ribbon.RibbonPage
|
|
||||||
Friend WithEvents RibbonPageGroup3 As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
|
||||||
Friend WithEvents BarButtonItem6 As DevExpress.XtraBars.BarButtonItem
|
Friend WithEvents BarButtonItem6 As DevExpress.XtraBars.BarButtonItem
|
||||||
Friend WithEvents SplitContainerControl1 As DevExpress.XtraEditors.SplitContainerControl
|
Friend WithEvents SplitContainerControl1 As DevExpress.XtraEditors.SplitContainerControl
|
||||||
Friend WithEvents Label12 As Label
|
Friend WithEvents Label12 As Label
|
||||||
@@ -2970,7 +2930,6 @@ Partial Class frmAdministration
|
|||||||
Friend WithEvents BarButtonItem8 As DevExpress.XtraBars.BarButtonItem
|
Friend WithEvents BarButtonItem8 As DevExpress.XtraBars.BarButtonItem
|
||||||
Friend WithEvents txtStatus As DevExpress.XtraBars.BarStaticItem
|
Friend WithEvents txtStatus As DevExpress.XtraBars.BarStaticItem
|
||||||
Friend WithEvents RibbonPage8 As DevExpress.XtraBars.Ribbon.RibbonPage
|
Friend WithEvents RibbonPage8 As DevExpress.XtraBars.Ribbon.RibbonPage
|
||||||
Friend WithEvents RibbonPageCategoryMisc As DevExpress.XtraBars.Ribbon.RibbonPageCategory
|
|
||||||
Friend WithEvents RibbonPageEmail As DevExpress.XtraBars.Ribbon.RibbonPage
|
Friend WithEvents RibbonPageEmail As DevExpress.XtraBars.Ribbon.RibbonPage
|
||||||
Friend WithEvents RibbonPageGroup4 As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
Friend WithEvents RibbonPageGroup4 As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
||||||
Friend WithEvents BarButtonItem9 As DevExpress.XtraBars.BarButtonItem
|
Friend WithEvents BarButtonItem9 As DevExpress.XtraBars.BarButtonItem
|
||||||
|
|||||||
@@ -343,7 +343,7 @@
|
|||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarButtonItem8.Caption" xml:space="preserve">
|
<data name="BarButtonItem8.Caption" xml:space="preserve">
|
||||||
<value>Duplizieren</value>
|
<value>Profil kopieren</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="BarButtonItem8.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v19.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="BarButtonItem8.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v19.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
@@ -820,24 +820,6 @@
|
|||||||
<data name="RibbonControl1.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="RibbonControl1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>0, 0</value>
|
<value>0, 0</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageGroup3.Text" xml:space="preserve">
|
|
||||||
<value>Gruppenzuordnung</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPageUserGroups.Text" xml:space="preserve">
|
|
||||||
<value>Profil-Zuordnung</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPageCategoryUserGroups.Text" xml:space="preserve">
|
|
||||||
<value>Profil-Einstellungen</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPageGroup4.Text" xml:space="preserve">
|
|
||||||
<value>E-Mail Indexierung</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPageEmail.Text" xml:space="preserve">
|
|
||||||
<value>E-Mail Indexierung</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPageCategoryMisc.Text" xml:space="preserve">
|
|
||||||
<value>Weitere Einstellungen</value>
|
|
||||||
</data>
|
|
||||||
<data name="RibbonPageGroup2.Text" xml:space="preserve">
|
<data name="RibbonPageGroup2.Text" xml:space="preserve">
|
||||||
<value>Grundeinstellungen</value>
|
<value>Grundeinstellungen</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -857,7 +839,13 @@
|
|||||||
<value>Automatische Profilauswahl</value>
|
<value>Automatische Profilauswahl</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonPageStart.Text" xml:space="preserve">
|
<data name="RibbonPageStart.Text" xml:space="preserve">
|
||||||
<value>Start</value>
|
<value>Profil-Verwaltung</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageGroup4.Text" xml:space="preserve">
|
||||||
|
<value>E-Mail Indexierung</value>
|
||||||
|
</data>
|
||||||
|
<data name="RibbonPageEmail.Text" xml:space="preserve">
|
||||||
|
<value>E-Mail Indexierung</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="RibbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="RibbonControl1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>1376, 158</value>
|
<value>1376, 158</value>
|
||||||
@@ -7506,42 +7494,6 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
|
|||||||
<data name=">>BarButtonItem28.Type" xml:space="preserve">
|
<data name=">>BarButtonItem28.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraBars.BarButtonItem, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>RibbonPageCategoryUserGroups.Name" xml:space="preserve">
|
|
||||||
<value>RibbonPageCategoryUserGroups</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageCategoryUserGroups.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageCategory, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageUserGroups.Name" xml:space="preserve">
|
|
||||||
<value>RibbonPageUserGroups</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageUserGroups.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPage, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageGroup3.Name" xml:space="preserve">
|
|
||||||
<value>RibbonPageGroup3</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageGroup3.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageCategoryMisc.Name" xml:space="preserve">
|
|
||||||
<value>RibbonPageCategoryMisc</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageCategoryMisc.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageCategory, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageEmail.Name" xml:space="preserve">
|
|
||||||
<value>RibbonPageEmail</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageEmail.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPage, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageGroup4.Name" xml:space="preserve">
|
|
||||||
<value>RibbonPageGroup4</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageGroup4.Type" xml:space="preserve">
|
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>RibbonPageStart.Name" xml:space="preserve">
|
<data name=">>RibbonPageStart.Name" xml:space="preserve">
|
||||||
<value>RibbonPageStart</value>
|
<value>RibbonPageStart</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -7584,6 +7536,18 @@ Die erhaltenen Werte können in Indizes geschrieben oder zur Benennung der Datei
|
|||||||
<data name=">>RibbonPageGroupProfileRegex.Type" xml:space="preserve">
|
<data name=">>RibbonPageGroupProfileRegex.Type" xml:space="preserve">
|
||||||
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name=">>RibbonPageEmail.Name" xml:space="preserve">
|
||||||
|
<value>RibbonPageEmail</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonPageEmail.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.Ribbon.RibbonPage, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonPageGroup4.Name" xml:space="preserve">
|
||||||
|
<value>RibbonPageGroup4</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>RibbonPageGroup4.Type" xml:space="preserve">
|
||||||
|
<value>DevExpress.XtraBars.Ribbon.RibbonPageGroup, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
|
</data>
|
||||||
<data name=">>viewAssignedGroups.Name" xml:space="preserve">
|
<data name=">>viewAssignedGroups.Name" xml:space="preserve">
|
||||||
<value>viewAssignedGroups</value>
|
<value>viewAssignedGroups</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
@@ -48,8 +48,7 @@ Public Class frmAdministration
|
|||||||
oDragDropManager.AddGridView(viewAssignedUsers)
|
oDragDropManager.AddGridView(viewAssignedUsers)
|
||||||
oDragDropManager.AddGridView(viewAvailableUsers)
|
oDragDropManager.AddGridView(viewAvailableUsers)
|
||||||
|
|
||||||
RibbonPageCategoryUserGroups.Visible = False
|
RibbonPageEmail.Visible = False
|
||||||
RibbonPageCategoryMisc.Visible = False
|
|
||||||
|
|
||||||
Dim oDatatable As New DataTable()
|
Dim oDatatable As New DataTable()
|
||||||
oDatatable.Columns.Add("VALUE_TEXT")
|
oDatatable.Columns.Add("VALUE_TEXT")
|
||||||
@@ -62,10 +61,13 @@ Public Class frmAdministration
|
|||||||
ComboBox3.DataSource = oDatatable
|
ComboBox3.DataSource = oDatatable
|
||||||
|
|
||||||
Try
|
Try
|
||||||
Me.TBDD_DOKUMENTARTTableAdapter.Fill(Me.MyDataset.TBDD_DOKUMENTART)
|
Me.TBDD_DOKUMENTARTTableAdapter.FillByModuleGI(Me.MyDataset.TBDD_DOKUMENTART)
|
||||||
Me.TBDD_EINGANGSARTENTableAdapter.Fill(Me.MyDataset.TBDD_EINGANGSARTEN)
|
Me.TBDD_EINGANGSARTENTableAdapter.Fill(Me.MyDataset.TBDD_EINGANGSARTEN)
|
||||||
Me.TBDD_MODULESTableAdapter.Fill(Me.MyDataset.TBDD_MODULES)
|
Me.TBDD_MODULESTableAdapter.Fill(Me.MyDataset.TBDD_MODULES)
|
||||||
|
|
||||||
|
TBDD_DOKUMENTARTBindingSource.ResetBindings(True)
|
||||||
|
MaybeDisableUserAndEmailTabs()
|
||||||
|
|
||||||
' Initialize Profile-GridControl before its tab is loaded
|
' Initialize Profile-GridControl before its tab is loaded
|
||||||
' prevents jumping of selected profile when selected tab is changed
|
' prevents jumping of selected profile when selected tab is changed
|
||||||
GridControl3.ForceInitialize()
|
GridControl3.ForceInitialize()
|
||||||
@@ -77,6 +79,17 @@ Public Class frmAdministration
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub MaybeDisableUserAndEmailTabs()
|
||||||
|
If MyDataset.TBDD_DOKUMENTART.Rows.Count = 0 Then
|
||||||
|
XtraTabPageUsersGroups.PageEnabled = False
|
||||||
|
XtraTabPageEmail.PageEnabled = False
|
||||||
|
Else
|
||||||
|
XtraTabPageUsersGroups.PageEnabled = True
|
||||||
|
XtraTabPageEmail.PageEnabled = True
|
||||||
|
End If
|
||||||
|
End Sub
|
||||||
|
|
||||||
Private Sub ObjektTypenEintragen()
|
Private Sub ObjektTypenEintragen()
|
||||||
Try
|
Try
|
||||||
pnlObjekttype_Config.Enabled = False
|
pnlObjekttype_Config.Enabled = False
|
||||||
@@ -189,7 +202,10 @@ Public Class frmAdministration
|
|||||||
End Try
|
End Try
|
||||||
|
|
||||||
If MyDataset.TBDD_DOKUMENTART.GetChanges Is Nothing = False Then
|
If MyDataset.TBDD_DOKUMENTART.GetChanges Is Nothing = False Then
|
||||||
Me.GEANDERTWERTextBox.Text = Environment.UserName
|
If Not IsInsert Then
|
||||||
|
Me.GEANDERTWERTextBox.Text = Environment.UserName
|
||||||
|
End If
|
||||||
|
|
||||||
Try
|
Try
|
||||||
Me.TBDD_DOKUMENTARTBindingSource.EndEdit()
|
Me.TBDD_DOKUMENTARTBindingSource.EndEdit()
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -199,23 +215,32 @@ Public Class frmAdministration
|
|||||||
MsgBox("Error in EndEdit 2 documenttype: " & vbNewLine & ex.Message, MsgBoxStyle.Exclamation)
|
MsgBox("Error in EndEdit 2 documenttype: " & vbNewLine & ex.Message, MsgBoxStyle.Exclamation)
|
||||||
End If
|
End If
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
TBDD_DOKUMENTARTTableAdapter.Update(MyDataset.TBDD_DOKUMENTART)
|
TBDD_DOKUMENTARTTableAdapter.Update(MyDataset.TBDD_DOKUMENTART)
|
||||||
txtStatus.Caption = $"Profil gespeichert - {Now.ToString}"
|
|
||||||
If IsInsert = True Then
|
If IsInsert = True Then
|
||||||
Dim oNewID As Integer
|
Dim oNewID As Integer
|
||||||
oNewID = ClassDatabase.Execute_Scalar("SELECT MAX(GUID) FROM TBDD_DOKUMENTART", MyConnectionString)
|
oNewID = ClassDatabase.Execute_Scalar("SELECT MAX(GUID) FROM TBDD_DOKUMENTART", MyConnectionString)
|
||||||
If IsNumeric(oNewID) Then
|
If IsNumeric(oNewID) Then
|
||||||
Dim osql = $" EXEC PRDD_CHECK_REL_DOCTYPE_MODULE 'GLOBIX',{oNewID}"
|
Dim osql = $" EXEC PRDD_CHECK_REL_DOCTYPE_MODULE 'GLOBIX', {oNewID}"
|
||||||
ClassDatabase.Execute_non_Query(osql)
|
If ClassDatabase.Execute_non_Query(osql) = False Then
|
||||||
|
MsgBox("Fehler beim zuweisen des neuen Profils zum Modul Global-Indexer!", MsgBoxStyle.Critical, Text)
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
TBDD_DOKUMENTARTBindingSource.ResetBindings(True)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
MaybeDisableUserAndEmailTabs()
|
||||||
|
|
||||||
|
SetStatus("Profil gespeichert!")
|
||||||
|
Else
|
||||||
|
ClearStatus()
|
||||||
End If
|
End If
|
||||||
IsInsert = False
|
IsInsert = False
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Error in Save_Dokumentart: " & vbNewLine & ex.Message, MsgBoxStyle.Exclamation)
|
MsgBox("Error in Save_Dokumentart: " & vbNewLine & ex.Message, MsgBoxStyle.Exclamation)
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
Private Sub btnNamenkonvention_Click(sender As Object, e As EventArgs) Handles btnNamenkonvention.Click
|
Private Sub btnNamenkonvention_Click(sender As Object, e As EventArgs) Handles btnNamenkonvention.Click
|
||||||
Save_Dokumentart()
|
Save_Dokumentart()
|
||||||
@@ -235,11 +260,18 @@ Public Class frmAdministration
|
|||||||
CURRENT_DOKART_ID = DOKART_GUIDTextBox.Text
|
CURRENT_DOKART_ID = DOKART_GUIDTextBox.Text
|
||||||
Load_TabData()
|
Load_TabData()
|
||||||
|
|
||||||
|
|
||||||
gridAssignedGroups.DataSource = ClassDatatables.GetAssignedGroups(CURRENT_DOKART_ID)
|
gridAssignedGroups.DataSource = ClassDatatables.GetAssignedGroups(CURRENT_DOKART_ID)
|
||||||
gridAvailableGroups.DataSource = ClassDatatables.GetAvailableGroups(CURRENT_DOKART_ID)
|
gridAvailableGroups.DataSource = ClassDatatables.GetAvailableGroups(CURRENT_DOKART_ID)
|
||||||
gridAssignedUsers.DataSource = ClassDatatables.GetAssignedUsers(CURRENT_DOKART_ID)
|
gridAssignedUsers.DataSource = ClassDatatables.GetAssignedUsers(CURRENT_DOKART_ID)
|
||||||
gridAvailableUsers.DataSource = ClassDatatables.GetAvailableUsers(CURRENT_DOKART_ID)
|
gridAvailableUsers.DataSource = ClassDatatables.GetAvailableUsers(CURRENT_DOKART_ID)
|
||||||
|
|
||||||
|
If TextBox3.Text = String.Empty Then
|
||||||
|
TextBox5.Enabled = False
|
||||||
|
TextBox1.Enabled = False
|
||||||
|
Else
|
||||||
|
TextBox5.Enabled = True
|
||||||
|
TextBox1.Enabled = True
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -262,7 +294,7 @@ Public Class frmAdministration
|
|||||||
|
|
||||||
MyDataset.TBDD_DOKUMENTART.ERSTELLTWERColumn.DefaultValue = Environment.UserName
|
MyDataset.TBDD_DOKUMENTART.ERSTELLTWERColumn.DefaultValue = Environment.UserName
|
||||||
MyDataset.TBDD_DOKUMENTART.OBJEKTTYPColumn.DefaultValue = ""
|
MyDataset.TBDD_DOKUMENTART.OBJEKTTYPColumn.DefaultValue = ""
|
||||||
MyDataset.TBDD_DOKUMENTART.NAMENKONVENTIONColumn.DefaultValue = "[%vOFilename]-[%vYY_MM_DD]-[%Version]"
|
MyDataset.TBDD_DOKUMENTART.NAMENKONVENTIONColumn.DefaultValue = "[%vOFilename]-[%vYY_MM_DD]"
|
||||||
MyDataset.TBDD_DOKUMENTART.DUPLICATE_HANDLINGColumn.DefaultValue = "New version"
|
MyDataset.TBDD_DOKUMENTART.DUPLICATE_HANDLINGColumn.DefaultValue = "New version"
|
||||||
IsInsert = True
|
IsInsert = True
|
||||||
End Sub
|
End Sub
|
||||||
@@ -321,13 +353,19 @@ Public Class frmAdministration
|
|||||||
If DOKART_GUIDTextBox.Text <> "" Then
|
If DOKART_GUIDTextBox.Text <> "" Then
|
||||||
Load_Dokart()
|
Load_Dokart()
|
||||||
'Load_INDEXMAN(Me.DOKART_GUIDTextBox.Text)
|
'Load_INDEXMAN(Me.DOKART_GUIDTextBox.Text)
|
||||||
Load_ZuordnungDokart_Module(DOKART_GUIDTextBox.Text)
|
If DOKART_GUIDTextBox.Text <> String.Empty Then
|
||||||
|
Load_ZuordnungDokart_Module(DOKART_GUIDTextBox.Text)
|
||||||
|
End If
|
||||||
|
|
||||||
If SUGGESTIONCheckBox.CheckState = CheckState.Checked Then
|
If SUGGESTIONCheckBox.CheckState = CheckState.Checked Then
|
||||||
btnSQLView.Visible = True
|
btnSQLView.Visible = True
|
||||||
Else
|
Else
|
||||||
btnSQLView.Visible = False
|
btnSQLView.Visible = False
|
||||||
End If
|
End If
|
||||||
Load_INDEXMAN(Me.DOKART_GUIDTextBox.Text)
|
If DOKART_GUIDTextBox.Text <> String.Empty Then
|
||||||
|
Load_INDEXMAN(Me.DOKART_GUIDTextBox.Text)
|
||||||
|
End If
|
||||||
|
|
||||||
End If
|
End If
|
||||||
frmloaded = True
|
frmloaded = True
|
||||||
WM_CHECKED_CHANGE()
|
WM_CHECKED_CHANGE()
|
||||||
@@ -401,12 +439,15 @@ Public Class frmAdministration
|
|||||||
End Sub
|
End Sub
|
||||||
Sub Save_IndexMan()
|
Sub Save_IndexMan()
|
||||||
Try
|
Try
|
||||||
|
If Not IsInsert Then
|
||||||
|
CHANGED_WHOTextBox.Text = Environment.UserName
|
||||||
|
End If
|
||||||
|
|
||||||
Me.TBDD_INDEX_MANBindingSource.EndEdit()
|
Me.TBDD_INDEX_MANBindingSource.EndEdit()
|
||||||
If MyDataset.TBDD_INDEX_MAN.GetChanges Is Nothing = False Then
|
If MyDataset.TBDD_INDEX_MAN.GetChanges Is Nothing = False Then
|
||||||
CHANGED_WHOTextBox.Text = Environment.UserName
|
|
||||||
Me.TBDD_INDEX_MANBindingSource.EndEdit()
|
Me.TBDD_INDEX_MANBindingSource.EndEdit()
|
||||||
TBDD_INDEX_MANTableAdapter.Update(MyDataset.TBDD_INDEX_MAN)
|
TBDD_INDEX_MANTableAdapter.Update(MyDataset.TBDD_INDEX_MAN)
|
||||||
SetStatus("Index erfolgreich gespeichert!")
|
SetStatus("Manueller Index erfolgreich gespeichert!")
|
||||||
Else
|
Else
|
||||||
ClearStatus()
|
ClearStatus()
|
||||||
End If
|
End If
|
||||||
@@ -422,7 +463,9 @@ Public Class frmAdministration
|
|||||||
CHANGED_WHOTextBox3.Text = Environment.UserName
|
CHANGED_WHOTextBox3.Text = Environment.UserName
|
||||||
Me.TBDD_INDEX_AUTOMBindingSource.EndEdit()
|
Me.TBDD_INDEX_AUTOMBindingSource.EndEdit()
|
||||||
TBDD_INDEX_AUTOMTableAdapter.Update(MyDataset.TBDD_INDEX_AUTOM)
|
TBDD_INDEX_AUTOMTableAdapter.Update(MyDataset.TBDD_INDEX_AUTOM)
|
||||||
SetStatus("Index erfolgreich gespeichert!")
|
SetStatus("Automatischer Index erfolgreich gespeichert!")
|
||||||
|
Else
|
||||||
|
ClearStatus()
|
||||||
End If
|
End If
|
||||||
IsInsert = False
|
IsInsert = False
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -453,23 +496,14 @@ Public Class frmAdministration
|
|||||||
RibbonControl1.SelectedPage = RibbonPageStart
|
RibbonControl1.SelectedPage = RibbonPageStart
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If oSelectedPageName = XtraTabPageUsersGroups.Name Then
|
|
||||||
RibbonPageCategoryUserGroups.Visible = True
|
|
||||||
RibbonControl1.SelectedPage = RibbonPageUserGroups
|
|
||||||
Else
|
|
||||||
RibbonPageCategoryUserGroups.Visible = False
|
|
||||||
End If
|
|
||||||
|
|
||||||
If oSelectedPageName = XtraTabPageEmail.Name Then
|
If oSelectedPageName = XtraTabPageEmail.Name Then
|
||||||
RibbonPageCategoryMisc.Visible = True
|
RibbonPageEmail.Visible = True
|
||||||
|
|
||||||
If oSelectedPageName = XtraTabPageEmail.Name Then
|
If oSelectedPageName = XtraTabPageEmail.Name Then
|
||||||
RibbonControl1.SelectedPage = RibbonPageEmail
|
RibbonControl1.SelectedPage = RibbonPageEmail
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
||||||
Else
|
Else
|
||||||
RibbonPageCategoryMisc.Visible = False
|
RibbonPageEmail.Visible = False
|
||||||
End If
|
End If
|
||||||
|
|
||||||
Select Case XtraTabControl1.SelectedTabPageIndex
|
Select Case XtraTabControl1.SelectedTabPageIndex
|
||||||
@@ -664,9 +698,9 @@ Public Class frmAdministration
|
|||||||
lbFileparameter.Visible = True
|
lbFileparameter.Visible = True
|
||||||
btnAddWindowsVariable.Visible = True
|
btnAddWindowsVariable.Visible = True
|
||||||
End If
|
End If
|
||||||
If IsInsert = False Then
|
'If IsInsert = False Then
|
||||||
Save_IndexAuto()
|
' Save_IndexAuto()
|
||||||
End If
|
'End If
|
||||||
End If
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -800,15 +834,21 @@ Public Class frmAdministration
|
|||||||
End Sub
|
End Sub
|
||||||
Sub Save_PostProcessing()
|
Sub Save_PostProcessing()
|
||||||
Try
|
Try
|
||||||
|
If Not IsInsert Then
|
||||||
|
CHANGED_WHOTextBox4.Text = Environment.UserName
|
||||||
|
End If
|
||||||
|
|
||||||
TBDD_INDEX_MAN_POSTPROCESSINGBindingSource.EndEdit()
|
TBDD_INDEX_MAN_POSTPROCESSINGBindingSource.EndEdit()
|
||||||
If MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.GetChanges Is Nothing = False Then
|
If MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.GetChanges Is Nothing = False Then
|
||||||
CHANGED_WHOTextBox4.Text = Environment.UserName
|
|
||||||
TBDD_INDEX_MAN_POSTPROCESSINGBindingSource.EndEdit()
|
TBDD_INDEX_MAN_POSTPROCESSINGBindingSource.EndEdit()
|
||||||
Me.TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter.Update(MyDataset.TBDD_INDEX_MAN_POSTPROCESSING)
|
Me.TBDD_INDEX_MAN_POSTPROCESSINGTableAdapter.Update(MyDataset.TBDD_INDEX_MAN_POSTPROCESSING)
|
||||||
SetStatus("Funktion erfolgreich gespeichert!")
|
SetStatus("Nachbearbeitungsfunktion erfolgreich gespeichert!")
|
||||||
Else
|
Else
|
||||||
ClearStatus()
|
ClearStatus()
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
IsInsert = False
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Error in Save Post Processing: ")
|
MsgBox(ex.Message, MsgBoxStyle.Exclamation, "Error in Save Post Processing: ")
|
||||||
End Try
|
End Try
|
||||||
@@ -817,9 +857,11 @@ Public Class frmAdministration
|
|||||||
Private Sub TBDD_INDEX_MAN_POSTPROCESSINGBindingSource_AddingNew(sender As Object, e As System.ComponentModel.AddingNewEventArgs) Handles TBDD_INDEX_MAN_POSTPROCESSINGBindingSource.AddingNew
|
Private Sub TBDD_INDEX_MAN_POSTPROCESSINGBindingSource_AddingNew(sender As Object, e As System.ComponentModel.AddingNewEventArgs) Handles TBDD_INDEX_MAN_POSTPROCESSINGBindingSource.AddingNew
|
||||||
Save_Dokumentart()
|
Save_Dokumentart()
|
||||||
EnableControls(XtraTabPageManualIndexFunctions)
|
EnableControls(XtraTabPageManualIndexFunctions)
|
||||||
|
MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.ADDED_WHENColumn.DefaultValue = DateTime.Now
|
||||||
MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.ADDED_WHOColumn.DefaultValue = Environment.UserName
|
MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.ADDED_WHOColumn.DefaultValue = Environment.UserName
|
||||||
MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.SEQUENCEColumn.DefaultValue = 1
|
MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.SEQUENCEColumn.DefaultValue = 1
|
||||||
MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.COMMENTColumn.DefaultValue = "Funktions Name"
|
MyDataset.TBDD_INDEX_MAN_POSTPROCESSING.COMMENTColumn.DefaultValue = "Funktions Name"
|
||||||
|
IsInsert = True
|
||||||
End Sub
|
End Sub
|
||||||
Sub EnableControls(Control As Control, Optional Value As Boolean = True)
|
Sub EnableControls(Control As Control, Optional Value As Boolean = True)
|
||||||
For Each oSubControl As Control In Control.Controls
|
For Each oSubControl As Control In Control.Controls
|
||||||
@@ -857,7 +899,8 @@ Public Class frmAdministration
|
|||||||
txtcrFoldermanuell.Text = ""
|
txtcrFoldermanuell.Text = ""
|
||||||
End If
|
End If
|
||||||
Me.TBDD_DOKUMENTARTTableAdapter.cmdUpdateFolderIndex(Environment.UserName, FOLDER_FOR_INDEXTextBox.Text, DOKART_GUIDTextBox.Text)
|
Me.TBDD_DOKUMENTARTTableAdapter.cmdUpdateFolderIndex(Environment.UserName, FOLDER_FOR_INDEXTextBox.Text, DOKART_GUIDTextBox.Text)
|
||||||
txtStatus.Caption = $"Profil gespeichert - {Now.ToString}"
|
|
||||||
|
SetStatus("Profil gespeichert")
|
||||||
End Sub
|
End Sub
|
||||||
Private Sub cmbCrFolderIndex_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cmbCrFolderIndex.SelectedIndexChanged
|
Private Sub cmbCrFolderIndex_SelectedIndexChanged(sender As Object, e As EventArgs) Handles cmbCrFolderIndex.SelectedIndexChanged
|
||||||
cmbCrFolderDate.SelectedIndex = -1
|
cmbCrFolderDate.SelectedIndex = -1
|
||||||
@@ -986,7 +1029,13 @@ Public Class frmAdministration
|
|||||||
|
|
||||||
Private Sub TBGI_REGEX_DOCTYPEBindingSource_AddingNew(sender As Object, e As AddingNewEventArgs) Handles TBGI_REGEX_DOCTYPEBindingSource.AddingNew
|
Private Sub TBGI_REGEX_DOCTYPEBindingSource_AddingNew(sender As Object, e As AddingNewEventArgs) Handles TBGI_REGEX_DOCTYPEBindingSource.AddingNew
|
||||||
MyDataset.TBGI_REGEX_DOCTYPE.ADDED_WHOColumn.DefaultValue = Environment.UserName
|
MyDataset.TBGI_REGEX_DOCTYPE.ADDED_WHOColumn.DefaultValue = Environment.UserName
|
||||||
|
MyDataset.TBGI_REGEX_DOCTYPE.ADDED_WHENColumn.DefaultValue = Date.Now()
|
||||||
MyDataset.TBGI_REGEX_DOCTYPE.DOCTYPE_IDColumn.DefaultValue = DOKART_GUIDTextBox.Text
|
MyDataset.TBGI_REGEX_DOCTYPE.DOCTYPE_IDColumn.DefaultValue = DOKART_GUIDTextBox.Text
|
||||||
|
|
||||||
|
TextBox5.Enabled = True
|
||||||
|
TextBox1.Enabled = True
|
||||||
|
|
||||||
|
IsInsert = True
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BarButtonItem1_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem1.ItemClick
|
Private Sub BarButtonItem1_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem1.ItemClick
|
||||||
@@ -1041,7 +1090,8 @@ Public Class frmAdministration
|
|||||||
Dim del As String = " EXEC PRDD_GLOBIX_DELETE_DOCTYPE " & DOKART_GUIDTextBox.Text
|
Dim del As String = " EXEC PRDD_GLOBIX_DELETE_DOCTYPE " & DOKART_GUIDTextBox.Text
|
||||||
If ClassDatabase.Execute_non_Query(del, True) = True Then
|
If ClassDatabase.Execute_non_Query(del, True) = True Then
|
||||||
Load_Dokart()
|
Load_Dokart()
|
||||||
|
MaybeDisableUserAndEmailTabs()
|
||||||
|
TBDD_DOKUMENTARTBindingSource.ResetBindings(True)
|
||||||
|
|
||||||
If USER_LANGUAGE = "de-DE" Then
|
If USER_LANGUAGE = "de-DE" Then
|
||||||
MsgBox("Das Profil wurde erfolgreich gelöscht!", MsgBoxStyle.Information)
|
MsgBox("Das Profil wurde erfolgreich gelöscht!", MsgBoxStyle.Information)
|
||||||
@@ -1077,7 +1127,9 @@ Public Class frmAdministration
|
|||||||
MsgBox("Profile was copied successfully and set to INACTIVE." & vbNewLine & "Please note:" & vbNewLine & "- Profile was not assigned to a usergroup", MsgBoxStyle.Information)
|
MsgBox("Profile was copied successfully and set to INACTIVE." & vbNewLine & "Please note:" & vbNewLine & "- Profile was not assigned to a usergroup", MsgBoxStyle.Information)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
||||||
Load_Dokart()
|
Load_Dokart()
|
||||||
|
TBDD_DOKUMENTARTBindingSource.ResetBindings(True)
|
||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Error in Copy Doctype:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
|
MsgBox("Error in Copy Doctype:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
|
||||||
@@ -1087,6 +1139,7 @@ Public Class frmAdministration
|
|||||||
|
|
||||||
Private Sub BarButtonItem7_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem7.ItemClick
|
Private Sub BarButtonItem7_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem7.ItemClick
|
||||||
LoadGlobix_Doctypes()
|
LoadGlobix_Doctypes()
|
||||||
|
MaybeDisableUserAndEmailTabs()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BarButtonItem5_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem5.ItemClick
|
Private Sub BarButtonItem5_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem5.ItemClick
|
||||||
@@ -1163,6 +1216,10 @@ Public Class frmAdministration
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BarButtonItem13_ItemClick_1(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem13.ItemClick
|
Private Sub BarButtonItem13_ItemClick_1(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem13.ItemClick
|
||||||
|
If Not IsInsert Then
|
||||||
|
TextBox4.Text = Environment.UserName
|
||||||
|
End If
|
||||||
|
|
||||||
Try
|
Try
|
||||||
Me.TBGI_REGEX_DOCTYPEBindingSource.EndEdit()
|
Me.TBGI_REGEX_DOCTYPEBindingSource.EndEdit()
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
@@ -1171,14 +1228,18 @@ Public Class frmAdministration
|
|||||||
End Try
|
End Try
|
||||||
|
|
||||||
If MyDataset.TBGI_REGEX_DOCTYPE.GetChanges Is Nothing = False Then
|
If MyDataset.TBGI_REGEX_DOCTYPE.GetChanges Is Nothing = False Then
|
||||||
TextBox4.Text = Environment.UserName
|
|
||||||
Try
|
Try
|
||||||
Me.TBGI_REGEX_DOCTYPEBindingSource.EndEdit()
|
Me.TBGI_REGEX_DOCTYPEBindingSource.EndEdit()
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox("Error in Save Regex2: " & vbNewLine & ex.Message, MsgBoxStyle.Exclamation)
|
MsgBox("Error in Save Regex2: " & vbNewLine & ex.Message, MsgBoxStyle.Exclamation)
|
||||||
End Try
|
End Try
|
||||||
TBGI_REGEX_DOCTYPETableAdapter.Update(MyDataset.TBGI_REGEX_DOCTYPE)
|
TBGI_REGEX_DOCTYPETableAdapter.Update(MyDataset.TBGI_REGEX_DOCTYPE)
|
||||||
|
SetStatus("Profilzuordnung gespeichert!")
|
||||||
|
Else
|
||||||
|
ClearStatus()
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
IsInsert = False
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BarButtonItem14_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem14.ItemClick
|
Private Sub BarButtonItem14_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem14.ItemClick
|
||||||
@@ -1227,7 +1288,9 @@ Public Class frmAdministration
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BarButtonItem18_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem18.ItemClick
|
Private Sub BarButtonItem18_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem18.ItemClick
|
||||||
Load_INDEXMAN(Me.DOKART_GUIDTextBox.Text)
|
If DOKART_GUIDTextBox.Text <> String.Empty Then
|
||||||
|
Load_INDEXMAN(DOKART_GUIDTextBox.Text)
|
||||||
|
End If
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BarButtonItem20_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem20.ItemClick
|
Private Sub BarButtonItem20_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem20.ItemClick
|
||||||
@@ -1332,17 +1395,10 @@ Public Class frmAdministration
|
|||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BarButtonItem6_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem6.ItemClick
|
|
||||||
If DOKART_GUIDTextBox.Text <> String.Empty Then
|
|
||||||
Dim profileId As Integer = DOKART_GUIDTextBox.Text
|
|
||||||
|
|
||||||
gridAssignedUsers.DataSource = ClassDatatables.GetAssignedUsers(profileId)
|
|
||||||
gridAvailableUsers.DataSource = ClassDatatables.GetAvailableUsers(profileId)
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub BarButtonItem28_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem28.ItemClick
|
Private Sub BarButtonItem28_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem28.ItemClick
|
||||||
TBGI_REGEX_DOCTYPEBindingSource.AddNew()
|
TBGI_REGEX_DOCTYPEBindingSource.AddNew()
|
||||||
|
|
||||||
|
|
||||||
EnableControls(XtraTabPageProfileRegex)
|
EnableControls(XtraTabPageProfileRegex)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
@@ -639,7 +639,7 @@
|
|||||||
<value>DocumentViewer1</value>
|
<value>DocumentViewer1</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DocumentViewer1.Type" xml:space="preserve">
|
<data name=">>DocumentViewer1.Type" xml:space="preserve">
|
||||||
<value>DigitalData.Controls.DocumentViewer.DocumentViewer, DigitalData.Controls.DocumentViewer, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
|
<value>DigitalData.Controls.DocumentViewer.DocumentViewer, DigitalData.Controls.DocumentViewer, Version=1.0.0.1, Culture=neutral, PublicKeyToken=null</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>DocumentViewer1.Parent" xml:space="preserve">
|
<data name=">>DocumentViewer1.Parent" xml:space="preserve">
|
||||||
<value>SplitContainer1.Panel2</value>
|
<value>SplitContainer1.Panel2</value>
|
||||||
|
|||||||
@@ -28,6 +28,8 @@ Public Class frmIndex
|
|||||||
|
|
||||||
Private NewFileString As String
|
Private NewFileString As String
|
||||||
Private CancelAttempts As Integer = 0
|
Private CancelAttempts As Integer = 0
|
||||||
|
Private Const MaxCancelAttempts = 2
|
||||||
|
|
||||||
Private Property ViewerString As String
|
Private Property ViewerString As String
|
||||||
|
|
||||||
#End Region
|
#End Region
|
||||||
@@ -74,13 +76,14 @@ Public Class frmIndex
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Sub addLabel(indexname As String, hinweis As String, ylbl As Integer, anz As String)
|
Sub addLabel(indexname As String, hinweis As String, ylbl As Integer, anz As String)
|
||||||
Dim lbl As New Label
|
Dim lbl As New Label With {
|
||||||
lbl.Name = "lbl" & indexname
|
.Name = "lbl" & indexname,
|
||||||
lbl.Size = New Size(CInt(hinweis.Length * 15), 18) 'CInt(hinweis.Length * 9)
|
.AutoSize = True,
|
||||||
lbl.Text = hinweis
|
.Text = hinweis,
|
||||||
|
.Location = New Point(11, ylbl)
|
||||||
|
}
|
||||||
|
|
||||||
pnlIndex.Controls.Add(lbl)
|
pnlIndex.Controls.Add(lbl)
|
||||||
lbl.Location = New Point(11, ylbl)
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Function Indexwert_checkValueDB(indexname As String, wert As String)
|
Function Indexwert_checkValueDB(indexname As String, wert As String)
|
||||||
@@ -234,7 +237,7 @@ Public Class frmIndex
|
|||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
Function GetAutomaticIndexSQLValue(vsqlstatement As String, vconnectionID As Integer, vProvider As String) As String
|
Function GetAutomaticIndexSQLValue(SQLCommand As String, vconnectionID As Integer, vProvider As String) As String
|
||||||
Try
|
Try
|
||||||
Dim oConnectionString As String
|
Dim oConnectionString As String
|
||||||
oConnectionString = ClassFormFunctions.GetConnectionString(vconnectionID)
|
oConnectionString = ClassFormFunctions.GetConnectionString(vconnectionID)
|
||||||
@@ -243,9 +246,9 @@ Public Class frmIndex
|
|||||||
Dim oErgebnis
|
Dim oErgebnis
|
||||||
'Welcher Provider?
|
'Welcher Provider?
|
||||||
If vProvider.ToLower = "oracle" Then
|
If vProvider.ToLower = "oracle" Then
|
||||||
oErgebnis = ClassDatabase.OracleExecute_Scalar(vsqlstatement, oConnectionString)
|
oErgebnis = ClassDatabase.OracleExecute_Scalar(SQLCommand, oConnectionString)
|
||||||
Else 'im Moment nur SQL-Server
|
Else 'im Moment nur SQL-Server
|
||||||
oErgebnis = ClassDatabase.Execute_Scalar(vsqlstatement, oConnectionString)
|
oErgebnis = ClassDatabase.Execute_Scalar(SQLCommand, oConnectionString)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If LogErrorsOnly = False Then
|
If LogErrorsOnly = False Then
|
||||||
@@ -768,8 +771,6 @@ Public Class frmIndex
|
|||||||
Return False
|
Return False
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
LOGGER.Info("Unvorhergesehener Unexpected error in Write_Indizes - Fehler: " & vbNewLine & ex.Message)
|
LOGGER.Info("Unvorhergesehener Unexpected error in Write_Indizes - Fehler: " & vbNewLine & ex.Message)
|
||||||
LOGGER.Error(ex.Message)
|
LOGGER.Error(ex.Message)
|
||||||
@@ -1173,6 +1174,15 @@ Public Class frmIndex
|
|||||||
Try
|
Try
|
||||||
ClassWindream._WDObjekttyp = _Objekttyp
|
ClassWindream._WDObjekttyp = _Objekttyp
|
||||||
Dim streamresult = ClassWindream.Stream_File(CURRENT_WORKFILE, CURRENT_NEWFILENAME)
|
Dim streamresult = ClassWindream.Stream_File(CURRENT_WORKFILE, CURRENT_NEWFILENAME)
|
||||||
|
|
||||||
|
If CONFIG.Config.DeleteOriginalFile = True Then
|
||||||
|
Try
|
||||||
|
My.Computer.FileSystem.DeleteFile(CURRENT_WORKFILE)
|
||||||
|
Catch ex As Exception
|
||||||
|
LOGGER.Error(ex)
|
||||||
|
End Try
|
||||||
|
End If
|
||||||
|
|
||||||
Return streamresult
|
Return streamresult
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox(ex.Message, MsgBoxStyle.Critical, "Error in SINGLEFILE_2_WINDREAM:")
|
MsgBox(ex.Message, MsgBoxStyle.Critical, "Error in SINGLEFILE_2_WINDREAM:")
|
||||||
@@ -1195,7 +1205,11 @@ Public Class frmIndex
|
|||||||
Loop
|
Loop
|
||||||
End If
|
End If
|
||||||
'Die Datei wird nun verschoben
|
'Die Datei wird nun verschoben
|
||||||
My.Computer.FileSystem.MoveFile(CURRENT_WORKFILE, CURRENT_NEWFILENAME)
|
If CONFIG.Config.DeleteOriginalFile = True Then
|
||||||
|
My.Computer.FileSystem.MoveFile(CURRENT_WORKFILE, CURRENT_NEWFILENAME)
|
||||||
|
Else
|
||||||
|
My.Computer.FileSystem.CopyFile(CURRENT_WORKFILE, CURRENT_NEWFILENAME)
|
||||||
|
End If
|
||||||
|
|
||||||
Dim Insert_String As String
|
Dim Insert_String As String
|
||||||
Try
|
Try
|
||||||
@@ -1343,87 +1357,99 @@ Public Class frmIndex
|
|||||||
'TODO: Load License from DB
|
'TODO: Load License from DB
|
||||||
DocumentViewer1.Init(LOGCONFIG, VIEWER_LICENSE)
|
DocumentViewer1.Init(LOGCONFIG, VIEWER_LICENSE)
|
||||||
|
|
||||||
CURRENT_DROPTYPE = DropType.Replace("|", "")
|
If DropType Is Nothing Then
|
||||||
If DropType = "|DROPFROMFSYSTEM|" Then
|
LOGGER.Warn("File with Id [{0}] was not found in TBGI_FILES_USER. Exiting.")
|
||||||
checkItemDeleteSource.Enabled = True
|
CancelAttempts = MaxCancelAttempts
|
||||||
checkItemDeleteSource.Checked = CURR_DELETE_ORIGIN
|
Close()
|
||||||
|
|
||||||
'chkdelete_origin.Visible = True
|
|
||||||
'chkdelete_origin.Checked = CURR_DELETE_ORIGIN
|
|
||||||
If USER_LANGUAGE <> "de-DE" Then
|
|
||||||
Me.Text = "Indexing of dropped file"
|
|
||||||
Else
|
|
||||||
Me.Text = "Indexierung der gedroppten Datei"
|
|
||||||
End If
|
|
||||||
ElseIf DropType = "|OUTLOOK_MESSAGE|" Or DropType = "|FW_MSGONLY|" Then
|
|
||||||
Select Case DropType
|
|
||||||
Case "|FW_MSGONLY|"
|
|
||||||
LOGGER.Info(" >> .msg-file from folderwatch")
|
|
||||||
If USER_LANGUAGE <> "de-DE" Then
|
|
||||||
Me.Text = "Indexing of msg-File (without Attachments) - from Folderwatch"
|
|
||||||
Else
|
|
||||||
Me.Text = "Indexierung der msg-Datei (ohne Anhang) - aus Folderwatch"
|
|
||||||
End If
|
|
||||||
Case "|OUTLOOK_MESSAGE|"
|
|
||||||
LOGGER.Info(" >> .msg-file through dragdrop")
|
|
||||||
If USER_LANGUAGE <> "de-DE" Then
|
|
||||||
Me.Text = "Indexing of msg-File (without Attachments)"
|
|
||||||
Else
|
|
||||||
Me.Text = "Indexierung der msg-Datei (ohne Anhang)"
|
|
||||||
End If
|
|
||||||
End Select
|
|
||||||
|
|
||||||
ElseIf DropType = "|MSGONLY|" Then
|
|
||||||
If USER_LANGUAGE = "de-DE" Then
|
|
||||||
Me.Text = "Indexierung der msg-Datei (ohne Anhang)"
|
|
||||||
Else
|
|
||||||
Me.Text = "Indexing of msg-File (without Attachments)"
|
|
||||||
End If
|
|
||||||
ElseIf DropType = "|ATTMNTEXTRACTED|" Or DropType = "|OUTLOOK_ATTACHMENT|" Then
|
|
||||||
CURRENT_ISATTACHMENT = True
|
|
||||||
|
|
||||||
If USER_LANGUAGE = "de-DE" Then
|
|
||||||
Me.Text = "Indexierung eines Email-Attachments"
|
|
||||||
Else
|
|
||||||
Me.Text = "Indexing of email-Attachment"
|
|
||||||
End If
|
|
||||||
ElseIf DropType = "|FW_SIMPLEINDEXER|" Then
|
|
||||||
|
|
||||||
If USER_LANGUAGE = "de-DE" Then
|
|
||||||
Me.Text = "Indexierung einer Folderwatch-Datei"
|
|
||||||
Else
|
|
||||||
Me.Text = "Indexing of Folderwatch-File"
|
|
||||||
End If
|
|
||||||
End If
|
|
||||||
|
|
||||||
|
|
||||||
labelFilePath.Caption = CURRENT_WORKFILE
|
|
||||||
|
|
||||||
ClassWindowLocation.LoadFormLocationSize(Me)
|
|
||||||
|
|
||||||
SetFilePreview(CONFIG.Config.FilePreview)
|
|
||||||
|
|
||||||
SplitContainer1.SplitterDistance = CONFIG.Config.SplitterDistanceViewer
|
|
||||||
|
|
||||||
Load_String()
|
|
||||||
MULTIFILES = ClassDatabase.Execute_Scalar("SELECT COUNT(*) FROM TBGI_FILES_USER WHERE WORKED = 0 AND GUID <> " & CURRENT_WORKFILE_GUID & " AND UPPER(USER@WORK) = UPPER('" & Environment.UserName & "')", MyConnectionString, True)
|
|
||||||
MULTIINDEXING_ACTIVE = False
|
|
||||||
If MULTIFILES > 0 Then
|
|
||||||
If USER_LANGUAGE = "de-DE" Then
|
|
||||||
checkMultiindex.Text = "Multi-Indexing - Alle nachfolgenden Dateien (" & MULTIFILES & ") identisch indexieren"
|
|
||||||
Else
|
|
||||||
checkMultiindex.Text = "Multi-Indexing - All following files (" & MULTIFILES & ") will be indexed identically"
|
|
||||||
End If
|
|
||||||
|
|
||||||
checkMultiindex.Checked = False
|
|
||||||
checkMultiindex.Visible = True
|
|
||||||
|
|
||||||
BarButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Always
|
|
||||||
Else
|
Else
|
||||||
checkMultiindex.Visible = False
|
CURRENT_DROPTYPE = DropType.Replace("|", "")
|
||||||
|
|
||||||
BarButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never
|
If DropType = "|DROPFROMFSYSTEM|" Then
|
||||||
|
checkItemDeleteSource.Enabled = True
|
||||||
|
checkItemDeleteSource.Checked = CURR_DELETE_ORIGIN
|
||||||
|
|
||||||
|
'chkdelete_origin.Visible = True
|
||||||
|
'chkdelete_origin.Checked = CURR_DELETE_ORIGIN
|
||||||
|
If USER_LANGUAGE <> "de-DE" Then
|
||||||
|
Me.Text = "Indexing of dropped file"
|
||||||
|
Else
|
||||||
|
Me.Text = "Indexierung der gedroppten Datei"
|
||||||
|
End If
|
||||||
|
ElseIf DropType = "|OUTLOOK_MESSAGE|" Or DropType = "|FW_MSGONLY|" Then
|
||||||
|
Select Case DropType
|
||||||
|
Case "|FW_MSGONLY|"
|
||||||
|
LOGGER.Info(" >> .msg-file from folderwatch")
|
||||||
|
If USER_LANGUAGE <> "de-DE" Then
|
||||||
|
Me.Text = "Indexing of msg-File (without Attachments) - from Folderwatch"
|
||||||
|
Else
|
||||||
|
Me.Text = "Indexierung der msg-Datei (ohne Anhang) - aus Folderwatch"
|
||||||
|
End If
|
||||||
|
Case "|OUTLOOK_MESSAGE|"
|
||||||
|
LOGGER.Info(" >> .msg-file through dragdrop")
|
||||||
|
If USER_LANGUAGE <> "de-DE" Then
|
||||||
|
Me.Text = "Indexing of msg-File (without Attachments)"
|
||||||
|
Else
|
||||||
|
Me.Text = "Indexierung der msg-Datei (ohne Anhang)"
|
||||||
|
End If
|
||||||
|
End Select
|
||||||
|
|
||||||
|
ElseIf DropType = "|MSGONLY|" Then
|
||||||
|
If USER_LANGUAGE = "de-DE" Then
|
||||||
|
Me.Text = "Indexierung der msg-Datei (ohne Anhang)"
|
||||||
|
Else
|
||||||
|
Me.Text = "Indexing of msg-File (without Attachments)"
|
||||||
|
End If
|
||||||
|
ElseIf DropType = "|ATTMNTEXTRACTED|" Or DropType = "|OUTLOOK_ATTACHMENT|" Then
|
||||||
|
CURRENT_ISATTACHMENT = True
|
||||||
|
|
||||||
|
If USER_LANGUAGE = "de-DE" Then
|
||||||
|
Me.Text = "Indexierung eines Email-Attachments"
|
||||||
|
Else
|
||||||
|
Me.Text = "Indexing of email-Attachment"
|
||||||
|
End If
|
||||||
|
ElseIf DropType = "|FW_SIMPLEINDEXER|" Then
|
||||||
|
|
||||||
|
If USER_LANGUAGE = "de-DE" Then
|
||||||
|
Me.Text = "Indexierung einer Folderwatch-Datei"
|
||||||
|
Else
|
||||||
|
Me.Text = "Indexing of Folderwatch-File"
|
||||||
|
End If
|
||||||
|
End If
|
||||||
|
|
||||||
|
BarCheckItem1.Checked = TopMost
|
||||||
|
|
||||||
|
labelFilePath.Caption = CURRENT_WORKFILE
|
||||||
|
|
||||||
|
ClassWindowLocation.LoadFormLocationSize(Me)
|
||||||
|
|
||||||
|
SetFilePreview(CONFIG.Config.FilePreview)
|
||||||
|
|
||||||
|
SplitContainer1.SplitterDistance = CONFIG.Config.SplitterDistanceViewer
|
||||||
|
|
||||||
|
Load_String()
|
||||||
|
|
||||||
|
DTTBGI_REGEX_DOCTYPE = ClassDatabase.Return_Datatable("SELECT T1.DOCTYPE as DocType, T.* FROM TBGI_REGEX_DOCTYPE T, VWGI_DOCTYPE T1 WHERE T.DOCTYPE_ID = T1.DOCTYPE_ID")
|
||||||
|
MULTIFILES = ClassDatabase.Execute_Scalar("SELECT COUNT(*) FROM TBGI_FILES_USER WHERE WORKED = 0 AND GUID <> " & CURRENT_WORKFILE_GUID & " AND UPPER(USER@WORK) = UPPER('" & Environment.UserName & "')", MyConnectionString, True)
|
||||||
|
MULTIINDEXING_ACTIVE = False
|
||||||
|
If MULTIFILES > 0 Then
|
||||||
|
If USER_LANGUAGE = "de-DE" Then
|
||||||
|
checkMultiindex.Text = "Multi-Indexing - Alle nachfolgenden Dateien (" & MULTIFILES & ") identisch indexieren"
|
||||||
|
Else
|
||||||
|
checkMultiindex.Text = "Multi-Indexing - All following files (" & MULTIFILES & ") will be indexed identically"
|
||||||
|
End If
|
||||||
|
|
||||||
|
checkMultiindex.Checked = False
|
||||||
|
checkMultiindex.Visible = True
|
||||||
|
|
||||||
|
BarButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Always
|
||||||
|
Else
|
||||||
|
checkMultiindex.Visible = False
|
||||||
|
|
||||||
|
BarButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never
|
||||||
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
LOGGER.Info(" - Unexpected error in Öffnen des Formulares - Fehler: " & vbNewLine & ex.Message)
|
LOGGER.Info(" - Unexpected error in Öffnen des Formulares - Fehler: " & vbNewLine & ex.Message)
|
||||||
LOGGER.Error(ex.Message)
|
LOGGER.Error(ex.Message)
|
||||||
@@ -1455,6 +1481,8 @@ Public Class frmIndex
|
|||||||
FormLoaded = True
|
FormLoaded = True
|
||||||
|
|
||||||
If CONFIG.Config.ProfilePreselection Then
|
If CONFIG.Config.ProfilePreselection Then
|
||||||
|
checkItemPreselection.Checked = True
|
||||||
|
|
||||||
If CURRENT_LASTDOKART <> "" Then
|
If CURRENT_LASTDOKART <> "" Then
|
||||||
cmbDokumentart.SelectedIndex = cmbDokumentart.FindStringExact(CURRENT_LASTDOKART)
|
cmbDokumentart.SelectedIndex = cmbDokumentart.FindStringExact(CURRENT_LASTDOKART)
|
||||||
End If
|
End If
|
||||||
@@ -1532,7 +1560,7 @@ Public Class frmIndex
|
|||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
' <STAThread()> _
|
' <STAThread()> _
|
||||||
Function Check_HistoryValues(Indexname As String, Dokart As String)
|
Function Check_HistoryValues(Indexname As String, Dokart As String) As String
|
||||||
Try
|
Try
|
||||||
Dim result = Nothing
|
Dim result = Nothing
|
||||||
Dim DT As DataTable = MyDataset.TBTEMP_INDEXRESULTS
|
Dim DT As DataTable = MyDataset.TBTEMP_INDEXRESULTS
|
||||||
@@ -1548,6 +1576,7 @@ Public Class frmIndex
|
|||||||
End If
|
End If
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
MsgBox(ex.Message, MsgBoxStyle.Critical, "Unexpected error in Check_HistoryValues:")
|
MsgBox(ex.Message, MsgBoxStyle.Critical, "Unexpected error in Check_HistoryValues:")
|
||||||
|
Return Nothing
|
||||||
End Try
|
End Try
|
||||||
End Function
|
End Function
|
||||||
|
|
||||||
@@ -1769,6 +1798,10 @@ Public Class frmIndex
|
|||||||
LOGGER.Info(" oSqlResult afrer first Replace: " & oSqlResult)
|
LOGGER.Info(" oSqlResult afrer first Replace: " & oSqlResult)
|
||||||
End If
|
End If
|
||||||
|
|
||||||
|
'TODO: Replace Windream Patterns?
|
||||||
|
oSqlResult = ClassPatterns.ReplaceControlValues(oSqlResult, pnlIndex)
|
||||||
|
oSqlResult = ClassPatterns.ReplaceInternalValues(oSqlResult)
|
||||||
|
|
||||||
' Ergebnis: Es wurden alle einfachen Platzhalter ersetzt, jetzt haben wir einen SQL Befehl,
|
' Ergebnis: Es wurden alle einfachen Platzhalter ersetzt, jetzt haben wir einen SQL Befehl,
|
||||||
' der nur noch vektorfelder-platzhalter enthält
|
' der nur noch vektorfelder-platzhalter enthält
|
||||||
|
|
||||||
@@ -2154,7 +2187,7 @@ Public Class frmIndex
|
|||||||
MsgBox("All files were successfully processed through Multiindexing", MsgBoxStyle.Information, "Success")
|
MsgBox("All files were successfully processed through Multiindexing", MsgBoxStyle.Information, "Success")
|
||||||
End If
|
End If
|
||||||
|
|
||||||
DTACTUAL_FILES.Clear()
|
'DTACTUAL_FILES.Clear()
|
||||||
Me.Close()
|
Me.Close()
|
||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
@@ -2187,7 +2220,7 @@ Public Class frmIndex
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
If CBool(CURR_DOKART_WD_DIRECT) = False Then
|
If CURR_DOKART_WD_DIRECT = False Then
|
||||||
'Datei verschieben
|
'Datei verschieben
|
||||||
err = Move_Rename_Only(CURRENT_WORKFILE, CURRENT_NEWFILENAME, CURR_WORKFILE_EXTENSION, VERSION_DELIMITER)
|
err = Move_Rename_Only(CURRENT_WORKFILE, CURRENT_NEWFILENAME, CURR_WORKFILE_EXTENSION, VERSION_DELIMITER)
|
||||||
Else
|
Else
|
||||||
@@ -2209,7 +2242,7 @@ Public Class frmIndex
|
|||||||
End If
|
End If
|
||||||
If exp2WD = True Then
|
If exp2WD = True Then
|
||||||
'Prüfen ob Session da ist - wenn nicht nochmal neu initiieren
|
'Prüfen ob Session da ist - wenn nicht nochmal neu initiieren
|
||||||
If ClassWindream.oSession Is Nothing Then
|
If ClassWindream._session Is Nothing Then
|
||||||
ClassWindream.Init()
|
ClassWindream.Init()
|
||||||
End If
|
End If
|
||||||
'Kein Fehler in Export2windream
|
'Kein Fehler in Export2windream
|
||||||
@@ -2503,6 +2536,9 @@ Public Class frmIndex
|
|||||||
ClearError()
|
ClearError()
|
||||||
ClearNotice()
|
ClearNotice()
|
||||||
|
|
||||||
|
DocumentViewer1.CloseDocument()
|
||||||
|
DocumentViewer1.Done()
|
||||||
|
|
||||||
Me.Cursor = Cursors.WaitCursor
|
Me.Cursor = Cursors.WaitCursor
|
||||||
ClassHelper.Refresh_RegexTable()
|
ClassHelper.Refresh_RegexTable()
|
||||||
For Each rowregex As DataRow In CURRENT_DT_REGEX.Rows
|
For Each rowregex As DataRow In CURRENT_DT_REGEX.Rows
|
||||||
@@ -2535,7 +2571,7 @@ Public Class frmIndex
|
|||||||
MsgBox("All files were successfully processed through Multiindexing", MsgBoxStyle.Information, "Success")
|
MsgBox("All files were successfully processed through Multiindexing", MsgBoxStyle.Information, "Success")
|
||||||
End If
|
End If
|
||||||
|
|
||||||
DTACTUAL_FILES.Clear()
|
'DTACTUAL_FILES.Clear()
|
||||||
|
|
||||||
CancelAttempts = 2
|
CancelAttempts = 2
|
||||||
Me.Close()
|
Me.Close()
|
||||||
@@ -2591,7 +2627,14 @@ Public Class frmIndex
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub BarButtonItem1_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem1.ItemClick
|
Private Sub BarButtonItem1_ItemClick(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles BarButtonItem1.ItemClick
|
||||||
|
ClassDatabase.Execute_non_Query($"DELETE FROM TBGI_FILES_USER WHERE GUID = {CURRENT_WORKFILE_GUID}", True)
|
||||||
|
|
||||||
CancelAttempts = 2
|
CancelAttempts = 2
|
||||||
Close()
|
Close()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
Private Sub checkItemPreselection_CheckedChanged(sender As Object, e As DevExpress.XtraBars.ItemClickEventArgs) Handles checkItemPreselection.CheckedChanged
|
||||||
|
CONFIG.Config.ProfilePreselection = checkItemPreselection.Checked
|
||||||
|
CONFIG.Save()
|
||||||
|
End Sub
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
24
Global_Indexer/frmNamenkonvention.designer.vb
generated
24
Global_Indexer/frmNamenkonvention.designer.vb
generated
@@ -40,7 +40,6 @@ Partial Class frmNamenkonvention
|
|||||||
Me.Button2 = New System.Windows.Forms.Button()
|
Me.Button2 = New System.Windows.Forms.Button()
|
||||||
Me.btnVersionTZ = New System.Windows.Forms.Button()
|
Me.btnVersionTZ = New System.Windows.Forms.Button()
|
||||||
Me.btnTrennzeichen = New System.Windows.Forms.Button()
|
Me.btnTrennzeichen = New System.Windows.Forms.Button()
|
||||||
Me.btnVersion = New System.Windows.Forms.Button()
|
|
||||||
Me.btndelete = New System.Windows.Forms.Button()
|
Me.btndelete = New System.Windows.Forms.Button()
|
||||||
Me.btnOK = New System.Windows.Forms.Button()
|
Me.btnOK = New System.Windows.Forms.Button()
|
||||||
Me.btnclose = New System.Windows.Forms.Button()
|
Me.btnclose = New System.Windows.Forms.Button()
|
||||||
@@ -74,13 +73,13 @@ Partial Class frmNamenkonvention
|
|||||||
'
|
'
|
||||||
'GroupBox1
|
'GroupBox1
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GroupBox1, "GroupBox1")
|
|
||||||
Me.GroupBox1.Controls.Add(Me.btnAddIndexA)
|
Me.GroupBox1.Controls.Add(Me.btnAddIndexA)
|
||||||
Me.GroupBox1.Controls.Add(Me.btnAddIndexM)
|
Me.GroupBox1.Controls.Add(Me.btnAddIndexM)
|
||||||
Me.GroupBox1.Controls.Add(Me.cmbIndex_A)
|
Me.GroupBox1.Controls.Add(Me.cmbIndex_A)
|
||||||
Me.GroupBox1.Controls.Add(Me.cmbIndex_m)
|
Me.GroupBox1.Controls.Add(Me.cmbIndex_m)
|
||||||
Me.GroupBox1.Controls.Add(Me.Label3)
|
Me.GroupBox1.Controls.Add(Me.Label3)
|
||||||
Me.GroupBox1.Controls.Add(Me.Label2)
|
Me.GroupBox1.Controls.Add(Me.Label2)
|
||||||
|
resources.ApplyResources(Me.GroupBox1, "GroupBox1")
|
||||||
Me.GroupBox1.Name = "GroupBox1"
|
Me.GroupBox1.Name = "GroupBox1"
|
||||||
Me.GroupBox1.TabStop = False
|
Me.GroupBox1.TabStop = False
|
||||||
'
|
'
|
||||||
@@ -98,10 +97,10 @@ Partial Class frmNamenkonvention
|
|||||||
'
|
'
|
||||||
'cmbIndex_A
|
'cmbIndex_A
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.cmbIndex_A, "cmbIndex_A")
|
|
||||||
Me.cmbIndex_A.DataSource = Me.TBDD_INDEX_AUTOMBindingSource
|
Me.cmbIndex_A.DataSource = Me.TBDD_INDEX_AUTOMBindingSource
|
||||||
Me.cmbIndex_A.DisplayMember = "INDEXNAME"
|
Me.cmbIndex_A.DisplayMember = "INDEXNAME"
|
||||||
Me.cmbIndex_A.FormattingEnabled = True
|
Me.cmbIndex_A.FormattingEnabled = True
|
||||||
|
resources.ApplyResources(Me.cmbIndex_A, "cmbIndex_A")
|
||||||
Me.cmbIndex_A.Name = "cmbIndex_A"
|
Me.cmbIndex_A.Name = "cmbIndex_A"
|
||||||
Me.cmbIndex_A.ValueMember = "GUID"
|
Me.cmbIndex_A.ValueMember = "GUID"
|
||||||
'
|
'
|
||||||
@@ -117,10 +116,10 @@ Partial Class frmNamenkonvention
|
|||||||
'
|
'
|
||||||
'cmbIndex_m
|
'cmbIndex_m
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.cmbIndex_m, "cmbIndex_m")
|
|
||||||
Me.cmbIndex_m.DataSource = Me.TBDD_INDEX_MANBindingSource
|
Me.cmbIndex_m.DataSource = Me.TBDD_INDEX_MANBindingSource
|
||||||
Me.cmbIndex_m.DisplayMember = "NAME"
|
Me.cmbIndex_m.DisplayMember = "NAME"
|
||||||
Me.cmbIndex_m.FormattingEnabled = True
|
Me.cmbIndex_m.FormattingEnabled = True
|
||||||
|
resources.ApplyResources(Me.cmbIndex_m, "cmbIndex_m")
|
||||||
Me.cmbIndex_m.Name = "cmbIndex_m"
|
Me.cmbIndex_m.Name = "cmbIndex_m"
|
||||||
Me.cmbIndex_m.ValueMember = "GUID"
|
Me.cmbIndex_m.ValueMember = "GUID"
|
||||||
'
|
'
|
||||||
@@ -141,11 +140,10 @@ Partial Class frmNamenkonvention
|
|||||||
'
|
'
|
||||||
'GroupBox2
|
'GroupBox2
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GroupBox2, "GroupBox2")
|
|
||||||
Me.GroupBox2.Controls.Add(Me.Button2)
|
Me.GroupBox2.Controls.Add(Me.Button2)
|
||||||
Me.GroupBox2.Controls.Add(Me.btnVersionTZ)
|
Me.GroupBox2.Controls.Add(Me.btnVersionTZ)
|
||||||
Me.GroupBox2.Controls.Add(Me.btnTrennzeichen)
|
Me.GroupBox2.Controls.Add(Me.btnTrennzeichen)
|
||||||
Me.GroupBox2.Controls.Add(Me.btnVersion)
|
resources.ApplyResources(Me.GroupBox2, "GroupBox2")
|
||||||
Me.GroupBox2.Name = "GroupBox2"
|
Me.GroupBox2.Name = "GroupBox2"
|
||||||
Me.GroupBox2.TabStop = False
|
Me.GroupBox2.TabStop = False
|
||||||
'
|
'
|
||||||
@@ -167,30 +165,24 @@ Partial Class frmNamenkonvention
|
|||||||
Me.btnTrennzeichen.Name = "btnTrennzeichen"
|
Me.btnTrennzeichen.Name = "btnTrennzeichen"
|
||||||
Me.btnTrennzeichen.UseVisualStyleBackColor = True
|
Me.btnTrennzeichen.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnVersion
|
|
||||||
'
|
|
||||||
resources.ApplyResources(Me.btnVersion, "btnVersion")
|
|
||||||
Me.btnVersion.Name = "btnVersion"
|
|
||||||
Me.btnVersion.UseVisualStyleBackColor = True
|
|
||||||
'
|
|
||||||
'btndelete
|
'btndelete
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btndelete, "btndelete")
|
|
||||||
Me.btndelete.Image = Global.Global_Indexer.My.Resources.Resources.delete2
|
Me.btndelete.Image = Global.Global_Indexer.My.Resources.Resources.delete2
|
||||||
|
resources.ApplyResources(Me.btndelete, "btndelete")
|
||||||
Me.btndelete.Name = "btndelete"
|
Me.btndelete.Name = "btndelete"
|
||||||
Me.btndelete.UseVisualStyleBackColor = True
|
Me.btndelete.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnOK
|
'btnOK
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnOK, "btnOK")
|
|
||||||
Me.btnOK.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
|
Me.btnOK.Image = Global.Global_Indexer.My.Resources.Resources.save_16xLG
|
||||||
|
resources.ApplyResources(Me.btnOK, "btnOK")
|
||||||
Me.btnOK.Name = "btnOK"
|
Me.btnOK.Name = "btnOK"
|
||||||
Me.btnOK.UseVisualStyleBackColor = True
|
Me.btnOK.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
'btnclose
|
'btnclose
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.btnclose, "btnclose")
|
|
||||||
Me.btnclose.Image = Global.Global_Indexer.My.Resources.Resources.Close_16xLG
|
Me.btnclose.Image = Global.Global_Indexer.My.Resources.Resources.Close_16xLG
|
||||||
|
resources.ApplyResources(Me.btnclose, "btnclose")
|
||||||
Me.btnclose.Name = "btnclose"
|
Me.btnclose.Name = "btnclose"
|
||||||
Me.btnclose.UseVisualStyleBackColor = True
|
Me.btnclose.UseVisualStyleBackColor = True
|
||||||
'
|
'
|
||||||
@@ -215,6 +207,7 @@ Partial Class frmNamenkonvention
|
|||||||
Me.TableAdapterManager.TBDD_USERTableAdapter = Nothing
|
Me.TableAdapterManager.TBDD_USERTableAdapter = Nothing
|
||||||
Me.TableAdapterManager.TBGI_CONFIGURATIONTableAdapter = Nothing
|
Me.TableAdapterManager.TBGI_CONFIGURATIONTableAdapter = Nothing
|
||||||
Me.TableAdapterManager.TBGI_OBJECTTYPE_EMAIL_INDEXTableAdapter = Nothing
|
Me.TableAdapterManager.TBGI_OBJECTTYPE_EMAIL_INDEXTableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBGI_REGEX_DOCTYPETableAdapter = Nothing
|
||||||
Me.TableAdapterManager.TBHOTKEY_PATTERNS_REWORKTableAdapter = Nothing
|
Me.TableAdapterManager.TBHOTKEY_PATTERNS_REWORKTableAdapter = Nothing
|
||||||
Me.TableAdapterManager.TBHOTKEY_PATTERNSTableAdapter = Nothing
|
Me.TableAdapterManager.TBHOTKEY_PATTERNSTableAdapter = Nothing
|
||||||
Me.TableAdapterManager.TBHOTKEY_PROFILETableAdapter = Nothing
|
Me.TableAdapterManager.TBHOTKEY_PROFILETableAdapter = Nothing
|
||||||
@@ -307,7 +300,6 @@ Partial Class frmNamenkonvention
|
|||||||
Friend WithEvents Label2 As System.Windows.Forms.Label
|
Friend WithEvents Label2 As System.Windows.Forms.Label
|
||||||
Friend WithEvents btnAddIndexA As System.Windows.Forms.Button
|
Friend WithEvents btnAddIndexA As System.Windows.Forms.Button
|
||||||
Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
|
Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
|
||||||
Friend WithEvents btnVersion As System.Windows.Forms.Button
|
|
||||||
Friend WithEvents btndelete As System.Windows.Forms.Button
|
Friend WithEvents btndelete As System.Windows.Forms.Button
|
||||||
Friend WithEvents btnOK As System.Windows.Forms.Button
|
Friend WithEvents btnOK As System.Windows.Forms.Button
|
||||||
Friend WithEvents btnclose As System.Windows.Forms.Button
|
Friend WithEvents btnclose As System.Windows.Forms.Button
|
||||||
|
|||||||
@@ -125,6 +125,9 @@
|
|||||||
<value>Define the Nameconvention for the selected Documenttype.
|
<value>Define the Nameconvention for the selected Documenttype.
|
||||||
You can assemble the filename from the Indicies and Textpatterns below.</value>
|
You can assemble the filename from the Indicies and Textpatterns below.</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="GroupBox1.Text" xml:space="preserve">
|
||||||
|
<value>Indicies:</value>
|
||||||
|
</data>
|
||||||
<data name="btnAddIndexA.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="btnAddIndexA.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
||||||
@@ -153,8 +156,8 @@ You can assemble the filename from the Indicies and Textpatterns below.</value>
|
|||||||
<data name="Label2.Text" xml:space="preserve">
|
<data name="Label2.Text" xml:space="preserve">
|
||||||
<value>Manual Index:</value>
|
<value>Manual Index:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="GroupBox1.Text" xml:space="preserve">
|
<data name="GroupBox2.Text" xml:space="preserve">
|
||||||
<value>Indicies:</value>
|
<value>Variables:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Button2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="Button2.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
@@ -165,7 +168,7 @@ You can assemble the filename from the Indicies and Textpatterns below.</value>
|
|||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Button2.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="Button2.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>6, 139</value>
|
<value>6, 107</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="Button2.Text" xml:space="preserve">
|
<data name="Button2.Text" xml:space="preserve">
|
||||||
<value>Add original filename</value>
|
<value>Add original filename</value>
|
||||||
@@ -179,10 +182,10 @@ You can assemble the filename from the Indicies and Textpatterns below.</value>
|
|||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnVersionTZ.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="btnVersionTZ.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>6, 91</value>
|
<value>6, 59</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnVersionTZ.Text" xml:space="preserve">
|
<data name="btnVersionTZ.Text" xml:space="preserve">
|
||||||
<value>Add Versionseperator:</value>
|
<value>Add Versionseparator:</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnTrennzeichen.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="btnTrennzeichen.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
@@ -192,25 +195,14 @@ You can assemble the filename from the Indicies and Textpatterns below.</value>
|
|||||||
TkSuQmCC
|
TkSuQmCC
|
||||||
</value>
|
</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="btnTrennzeichen.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>6, 24</value>
|
||||||
|
</data>
|
||||||
<data name="btnTrennzeichen.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="btnTrennzeichen.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>163, 29</value>
|
<value>163, 29</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="btnTrennzeichen.Text" xml:space="preserve">
|
<data name="btnTrennzeichen.Text" xml:space="preserve">
|
||||||
<value>Add Fileseperator:</value>
|
<value>Add Fileseparator:</value>
|
||||||
</data>
|
|
||||||
<data name="btnVersion.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
|
||||||
<value>
|
|
||||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO
|
|
||||||
xAAADsQBlSsOGwAAAFxJREFUOE/NjFEKgDAMQ3e23v88/Y1YOslqhE1hGHgfS5fXAHxCliuMD4q7o5Kn
|
|
||||||
yJTAzC72CM5PTBUwfXMT8OiJnwuYOmL6ZhBwlCBPkT2CSp4iUvAGWa4gy3nQDiNEflNl/3oXAAAAAElF
|
|
||||||
TkSuQmCC
|
|
||||||
</value>
|
|
||||||
</data>
|
|
||||||
<data name="btnVersion.Text" xml:space="preserve">
|
|
||||||
<value>Add Version:</value>
|
|
||||||
</data>
|
|
||||||
<data name="GroupBox2.Text" xml:space="preserve">
|
|
||||||
<value>Variables:</value>
|
|
||||||
</data>
|
</data>
|
||||||
<data name="btnOK.Text" xml:space="preserve">
|
<data name="btnOK.Text" xml:space="preserve">
|
||||||
<value>Save</value>
|
<value>Save</value>
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -47,7 +47,7 @@
|
|||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub btnVersion_Click(sender As Object, e As EventArgs) Handles btnVersion.Click
|
Private Sub btnVersion_Click(sender As Object, e As EventArgs)
|
||||||
If txtnamenKonv.Text.Contains("[%Version]") Then
|
If txtnamenKonv.Text.Contains("[%Version]") Then
|
||||||
If USER_LANGUAGE = "de-DE" Then
|
If USER_LANGUAGE = "de-DE" Then
|
||||||
MsgBox("Versionstag ist bereits enthalten!", MsgBoxStyle.Exclamation)
|
MsgBox("Versionstag ist bereits enthalten!", MsgBoxStyle.Exclamation)
|
||||||
|
|||||||
10
Global_Indexer/frmStart.Designer.vb
generated
10
Global_Indexer/frmStart.Designer.vb
generated
@@ -1,9 +1,9 @@
|
|||||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
||||||
Partial Class frmStart
|
Partial Class frmStart
|
||||||
Inherits DevExpress.XtraEditors.XtraForm
|
Inherits DevExpress.XtraEditors.XtraForm
|
||||||
|
|
||||||
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
||||||
<System.Diagnostics.DebuggerNonUserCode()> _
|
<System.Diagnostics.DebuggerNonUserCode()>
|
||||||
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
Try
|
Try
|
||||||
If disposing AndAlso components IsNot Nothing Then
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
@@ -20,7 +20,7 @@ Partial Class frmStart
|
|||||||
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
|
'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich.
|
||||||
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
|
'Das Bearbeiten ist mit dem Windows Form-Designer möglich.
|
||||||
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
'Das Bearbeiten mit dem Code-Editor ist nicht möglich.
|
||||||
<System.Diagnostics.DebuggerStepThrough()> _
|
<System.Diagnostics.DebuggerStepThrough()>
|
||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
Me.components = New System.ComponentModel.Container()
|
Me.components = New System.ComponentModel.Container()
|
||||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmStart))
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmStart))
|
||||||
@@ -223,18 +223,18 @@ Partial Class frmStart
|
|||||||
'frmStart
|
'frmStart
|
||||||
'
|
'
|
||||||
Me.AllowDrop = True
|
Me.AllowDrop = True
|
||||||
|
Me.Appearance.Options.UseFont = True
|
||||||
resources.ApplyResources(Me, "$this")
|
resources.ApplyResources(Me, "$this")
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.BackColor = System.Drawing.SystemColors.ControlLight
|
|
||||||
Me.Controls.Add(Me.btnChoosefiles)
|
Me.Controls.Add(Me.btnChoosefiles)
|
||||||
Me.Controls.Add(Me.LabelControl1)
|
Me.Controls.Add(Me.LabelControl1)
|
||||||
Me.Controls.Add(Me.StatusStrip1)
|
Me.Controls.Add(Me.StatusStrip1)
|
||||||
Me.Controls.Add(Me.MenuStrip1)
|
Me.Controls.Add(Me.MenuStrip1)
|
||||||
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle
|
||||||
|
Me.IconOptions.Icon = CType(resources.GetObject("frmStart.IconOptions.Icon"), System.Drawing.Icon)
|
||||||
Me.MaximizeBox = False
|
Me.MaximizeBox = False
|
||||||
Me.Name = "frmStart"
|
Me.Name = "frmStart"
|
||||||
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
|
Me.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide
|
||||||
Me.TopMost = True
|
|
||||||
Me.MenuStrip1.ResumeLayout(False)
|
Me.MenuStrip1.ResumeLayout(False)
|
||||||
Me.MenuStrip1.PerformLayout()
|
Me.MenuStrip1.PerformLayout()
|
||||||
Me.StatusStrip1.ResumeLayout(False)
|
Me.StatusStrip1.ResumeLayout(False)
|
||||||
|
|||||||
@@ -121,43 +121,6 @@
|
|||||||
<value>400, 17</value>
|
<value>400, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<data name="MenuStrip1.Location" type="System.Drawing.Point, System.Drawing">
|
|
||||||
<value>0, 0</value>
|
|
||||||
</data>
|
|
||||||
<data name="MenuStrip1.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>295, 24</value>
|
|
||||||
</data>
|
|
||||||
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
|
||||||
<data name="MenuStrip1.TabIndex" type="System.Int32, mscorlib">
|
|
||||||
<value>5</value>
|
|
||||||
</data>
|
|
||||||
<data name="MenuStrip1.Text" xml:space="preserve">
|
|
||||||
<value>MenuStrip1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>MenuStrip1.Name" xml:space="preserve">
|
|
||||||
<value>MenuStrip1</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>MenuStrip1.Type" xml:space="preserve">
|
|
||||||
<value>System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>MenuStrip1.Parent" xml:space="preserve">
|
|
||||||
<value>$this</value>
|
|
||||||
</data>
|
|
||||||
<data name=">>MenuStrip1.ZOrder" xml:space="preserve">
|
|
||||||
<value>3</value>
|
|
||||||
</data>
|
|
||||||
<data name="KonfigurationToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>108, 20</value>
|
|
||||||
</data>
|
|
||||||
<data name="KonfigurationToolStripMenuItem.Text" xml:space="preserve">
|
|
||||||
<value>Konfiguration</value>
|
|
||||||
</data>
|
|
||||||
<data name="AdministrationToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>221, 22</value>
|
|
||||||
</data>
|
|
||||||
<data name="AdministrationToolStripMenuItem.Text" xml:space="preserve">
|
|
||||||
<value>Administration</value>
|
|
||||||
</data>
|
|
||||||
<data name="GlobalIndexerEinstellungenToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="GlobalIndexerEinstellungenToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>232, 22</value>
|
<value>232, 22</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -170,6 +133,12 @@
|
|||||||
<data name="HotkeyEisntellungenToolStripMenuItem.Text" xml:space="preserve">
|
<data name="HotkeyEisntellungenToolStripMenuItem.Text" xml:space="preserve">
|
||||||
<value>Hotkey - Einstellungen</value>
|
<value>Hotkey - Einstellungen</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="AdministrationToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>221, 22</value>
|
||||||
|
</data>
|
||||||
|
<data name="AdministrationToolStripMenuItem.Text" xml:space="preserve">
|
||||||
|
<value>Administration</value>
|
||||||
|
</data>
|
||||||
<data name="ToolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
|
<data name="ToolStripSeparator1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
<value>218, 6</value>
|
<value>218, 6</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -197,9 +166,49 @@
|
|||||||
<data name="InfoToolStripMenuItem.Text" xml:space="preserve">
|
<data name="InfoToolStripMenuItem.Text" xml:space="preserve">
|
||||||
<value>Info</value>
|
<value>Info</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="KonfigurationToolStripMenuItem.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>108, 20</value>
|
||||||
|
</data>
|
||||||
|
<data name="KonfigurationToolStripMenuItem.Text" xml:space="preserve">
|
||||||
|
<value>Konfiguration</value>
|
||||||
|
</data>
|
||||||
|
<data name="MenuStrip1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
|
<value>0, 0</value>
|
||||||
|
</data>
|
||||||
|
<data name="MenuStrip1.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>295, 24</value>
|
||||||
|
</data>
|
||||||
|
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
|
||||||
|
<data name="MenuStrip1.TabIndex" type="System.Int32, mscorlib">
|
||||||
|
<value>5</value>
|
||||||
|
</data>
|
||||||
|
<data name="MenuStrip1.Text" xml:space="preserve">
|
||||||
|
<value>MenuStrip1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>MenuStrip1.Name" xml:space="preserve">
|
||||||
|
<value>MenuStrip1</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>MenuStrip1.Type" xml:space="preserve">
|
||||||
|
<value>System.Windows.Forms.MenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>MenuStrip1.Parent" xml:space="preserve">
|
||||||
|
<value>$this</value>
|
||||||
|
</data>
|
||||||
|
<data name=">>MenuStrip1.ZOrder" xml:space="preserve">
|
||||||
|
<value>3</value>
|
||||||
|
</data>
|
||||||
<metadata name="StatusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="StatusStrip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>515, 17</value>
|
<value>515, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
|
<data name="tslblFW.Size" type="System.Drawing.Size, System.Drawing">
|
||||||
|
<value>133, 17</value>
|
||||||
|
</data>
|
||||||
|
<data name="tslblFW.Text" xml:space="preserve">
|
||||||
|
<value>FolderWatch ist aktiv</value>
|
||||||
|
</data>
|
||||||
|
<data name="tslblFW.Visible" type="System.Boolean, mscorlib">
|
||||||
|
<value>False</value>
|
||||||
|
</data>
|
||||||
<data name="StatusStrip1.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="StatusStrip1.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>0, 137</value>
|
<value>0, 137</value>
|
||||||
</data>
|
</data>
|
||||||
@@ -224,15 +233,6 @@
|
|||||||
<data name=">>StatusStrip1.ZOrder" xml:space="preserve">
|
<data name=">>StatusStrip1.ZOrder" xml:space="preserve">
|
||||||
<value>2</value>
|
<value>2</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="tslblFW.Size" type="System.Drawing.Size, System.Drawing">
|
|
||||||
<value>133, 17</value>
|
|
||||||
</data>
|
|
||||||
<data name="tslblFW.Text" xml:space="preserve">
|
|
||||||
<value>FolderWatch ist aktiv</value>
|
|
||||||
</data>
|
|
||||||
<data name="tslblFW.Visible" type="System.Boolean, mscorlib">
|
|
||||||
<value>False</value>
|
|
||||||
</data>
|
|
||||||
<metadata name="TimerFolderWatch.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
<metadata name="TimerFolderWatch.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
<value>1072, 17</value>
|
<value>1072, 17</value>
|
||||||
</metadata>
|
</metadata>
|
||||||
@@ -639,7 +639,7 @@ auf dieses Fenster oder...</value>
|
|||||||
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
<data name="$this.Font" type="System.Drawing.Font, System.Drawing">
|
||||||
<value>Segoe UI, 8.25pt</value>
|
<value>Segoe UI, 8.25pt</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="frmStart.IconOptions.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
AAABAAEAgIUAAAEAGAD4zwAAFgAAACgAAACAAAAACgEAAAEAGAAAAAAAAAAAAEgAAABIAAAAAAAAAAAA
|
AAABAAEAgIUAAAEAGAD4zwAAFgAAACgAAACAAAAACgEAAAEAGAAAAAAAAAAAAEgAAABIAAAAAAAAAAAA
|
||||||
AAAAAABGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqoA
|
AAAAAABGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqpGHqoA
|
||||||
@@ -1682,6 +1682,6 @@ auf dieses Fenster oder...</value>
|
|||||||
<value>frmStart</value>
|
<value>frmStart</value>
|
||||||
</data>
|
</data>
|
||||||
<data name=">>$this.Type" xml:space="preserve">
|
<data name=">>$this.Type" xml:space="preserve">
|
||||||
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
<value>DevExpress.XtraEditors.XtraForm, DevExpress.Utils.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a</value>
|
||||||
</data>
|
</data>
|
||||||
</root>
|
</root>
|
||||||
@@ -252,9 +252,7 @@ Public Class frmStart
|
|||||||
Next
|
Next
|
||||||
Show()
|
Show()
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
If Not ex.Message.StartsWith("Die Auflistung wurde geändert") Then
|
MsgBox("Unexpected Error in Check_Dropped_Files:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
|
||||||
MsgBox("Unexpected Error in Check_Dropped_Files:" & vbNewLine & ex.Message, MsgBoxStyle.Critical)
|
|
||||||
End If
|
|
||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@@ -262,15 +260,11 @@ Public Class frmStart
|
|||||||
Try
|
Try
|
||||||
Hide()
|
Hide()
|
||||||
IndexForm.ShowDialog()
|
IndexForm.ShowDialog()
|
||||||
|
|
||||||
'AddHandler frmIndex.FormClosed, Sub()
|
|
||||||
' Show()
|
|
||||||
' BringToFront()
|
|
||||||
' End Sub
|
|
||||||
|
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
LOGGER.Error(ex)
|
LOGGER.Error(ex)
|
||||||
MsgBox(ex.Message, MsgBoxStyle.Critical)
|
MsgBox(ex.Message, MsgBoxStyle.Critical)
|
||||||
|
Finally
|
||||||
|
Show()
|
||||||
End Try
|
End Try
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user