diff --git a/.vs/Vertragsverwaltung/v16/.suo b/.vs/Vertragsverwaltung/v16/.suo index 865350cc..2ea2a95a 100644 Binary files a/.vs/Vertragsverwaltung/v16/.suo and b/.vs/Vertragsverwaltung/v16/.suo differ diff --git a/20210621_Anpassungen/itsm.txt b/20210621_Anpassungen/itsm.txt new file mode 100644 index 00000000..b96dc002 --- /dev/null +++ b/20210621_Anpassungen/itsm.txt @@ -0,0 +1,10 @@ +ApplikationKategorie Anpassung Kat-Bezeichnung + 01 Kernapplikation -> A Kern + ... + 04 - Infrastruktur -> D Infrastruktur + +Rollen Neue Rolle: Systemverantwortlicher BA - Was für Funktionen/Rechte müsste diese Rolle haben +Kontakt Neue Kontakttyp - Systemverantwortlicher BA +View_Applikationslisten_Kontakte - neuer Key von Systemverantwortlicher BA in where hinzufügen +View_Applikationslisten +sp_rpt_applikationslisten diff --git a/Reporting/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Reporting/obj/Debug/DesignTimeResolveAssemblyReferences.cache index 47a4cbb2..1eeac75b 100644 Binary files a/Reporting/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/Reporting/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Reporting/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Reporting/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 790687ac..2bd66a47 100644 Binary files a/Reporting/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Reporting/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Reporting/obj/Debug/Reporting20.vbproj.AssemblyReference.cache b/Reporting/obj/Debug/Reporting20.vbproj.AssemblyReference.cache new file mode 100644 index 00000000..dd0acb4c Binary files /dev/null and b/Reporting/obj/Debug/Reporting20.vbproj.AssemblyReference.cache differ diff --git a/Vertragsverwaltung/Applikation/Applikation/clsApplikation.vb b/Vertragsverwaltung/Applikation/Applikation/clsApplikation.vb index 6619d7f6..17bada9b 100644 --- a/Vertragsverwaltung/Applikation/Applikation/clsApplikation.vb +++ b/Vertragsverwaltung/Applikation/Applikation/clsApplikation.vb @@ -85,6 +85,9 @@ Namespace TKB.VV.Applikation Public SDDaten As New DataTable + Public dtab1 As New DataTable + Public dtab2 As New DataTable + Dim mMutierer As String @@ -156,6 +159,29 @@ Namespace TKB.VV.Applikation SDDaten = Stammdaten.Get_Stammdaten("SDDaten", "Bezeichnung") End Sub +#Region "Applikationsabhaengigkeiten" + Public Function Abhaengigkeiten(ByVal fnkt As Integer, param1 As String, param2 As String, param3 As String) As DataTable + Dim scmCmdToExecute As SqlCommand = New SqlCommand() + Dim dtToReturn As DataTable = New DataTable() + Dim sdaAdapter As SqlDataAdapter = New SqlDataAdapter(scmCmdToExecute) + scmCmdToExecute.CommandText = "dbo.sp_applikationsabhaengigkeiten" + scmCmdToExecute.CommandType = CommandType.StoredProcedure + scmCmdToExecute.Connection = conn.scoDBConnection + Try + scmCmdToExecute.Parameters.Add(New SqlParameter("@fnkt", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, fnkt)) + scmCmdToExecute.Parameters.Add(New SqlParameter("@param1", SqlDbType.VarChar, 2048, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, param1)) + scmCmdToExecute.Parameters.Add(New SqlParameter("@param2", SqlDbType.VarChar, 2048, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, param2)) + scmCmdToExecute.Parameters.Add(New SqlParameter("@param3", SqlDbType.VarChar, 2048, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, param3)) + sdaAdapter.Fill(dtToReturn) + Return dtToReturn + Catch ex As Exception + Throw New Exception("clsApplikationsuebersicht::" & scmCmdToExecute.CommandText & "::Error occured." & ex.Message, ex) + Finally + scmCmdToExecute.Dispose() + sdaAdapter.Dispose() + End Try + End Function +#End Region Public Overloads Sub dispose() MyBase.Dispose() Try diff --git a/Vertragsverwaltung/Applikation/Applikation/frmApplikation.designer.vb b/Vertragsverwaltung/Applikation/Applikation/frmApplikation.designer.vb index 63f1237e..58c12c05 100644 --- a/Vertragsverwaltung/Applikation/Applikation/frmApplikation.designer.vb +++ b/Vertragsverwaltung/Applikation/Applikation/frmApplikation.designer.vb @@ -1,9 +1,9 @@ - _ + Partial Class frmApplikation Inherits System.Windows.Forms.Form 'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen. - _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then @@ -20,7 +20,7 @@ Partial Class frmApplikation '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. - _ + Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmApplikation)) @@ -155,9 +155,11 @@ Partial Class frmApplikation Me.GrpAllgemeineAngaben = New System.Windows.Forms.GroupBox() Me.dtPickerInaktivSeit = New System.Windows.Forms.DateTimePicker() Me.cbLizenzerfassung = New System.Windows.Forms.CheckBox() + Me.lblRfcBoard = New System.Windows.Forms.Label() Me.txtPrioWiederanlauf = New System.Windows.Forms.TextBox() Me.lblPrioWiederanlauf = New System.Windows.Forms.Label() Me.cboxSecurityLevel = New System.Windows.Forms.ComboBox() + Me.cboxRFCBoard = New System.Windows.Forms.ComboBox() Me.lblAktiv = New System.Windows.Forms.Label() Me.txtInaktivseit = New System.Windows.Forms.MaskedTextBox() Me.lblSecurityLebel = New System.Windows.Forms.Label() @@ -166,10 +168,8 @@ Partial Class frmApplikation Me.GrpFachlicheVerantwortung = New System.Windows.Forms.GroupBox() Me.lblGemDokumentPflichtenheft = New System.Windows.Forms.Label() Me.cbboxVerantwortung = New System.Windows.Forms.ComboBox() - Me.lblRfcBoard = New System.Windows.Forms.Label() Me.lblVerantwortung = New System.Windows.Forms.Label() Me.cbboxTeam = New System.Windows.Forms.ComboBox() - Me.cboxRFCBoard = New System.Windows.Forms.ComboBox() Me.lblTeam = New System.Windows.Forms.Label() Me.cbboxFachlicheOE = New System.Windows.Forms.ComboBox() Me.lblKeyUserAufgabenErbringt = New System.Windows.Forms.Label() @@ -314,6 +314,32 @@ Partial Class frmApplikation Me.C1IKVTests = New C1.Win.C1TrueDBGrid.C1TrueDBGrid() Me.TabServerInventar = New System.Windows.Forms.TabPage() Me.CtrlServerInventar1 = New Vertragsverwaltung.CtrlServerInventar() + Me.TabAbhaengigkeiten = New System.Windows.Forms.TabPage() + Me.GroupBox2 = New System.Windows.Forms.GroupBox() + Me.C1ApplikationAbhaengigVon = New C1.Win.C1TrueDBGrid.C1TrueDBGrid() + Me.ctxMenuAppAbhaengigVon = New System.Windows.Forms.ContextMenuStrip(Me.components) + Me.ApplikationsdetailsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.GrpApplAbhaengigkeit = New System.Windows.Forms.GroupBox() + Me.C1Applikationsabhaengigkeiten = New C1.Win.C1TrueDBGrid.C1TrueDBGrid() + Me.ctxmenuAbhaengigkeiten = New System.Windows.Forms.ContextMenuStrip(Me.components) + Me.NeuerEintragToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.EintragLöschenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.BemerkungToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.ToolStripMenuItem5 = New System.Windows.Forms.ToolStripSeparator() + Me.ApplikatioinsdetailsToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.grpAppselect = New System.Windows.Forms.GroupBox() + Me.AppTreeSelect = New System.Windows.Forms.TreeView() + Me.ctxmenuabhaengigkeitenTree = New System.Windows.Forms.ContextMenuStrip(Me.components) + Me.AbhängigkeitHinzufügenToolStripMenuItem = New System.Windows.Forms.ToolStripMenuItem() + Me.tsAppTreeSearch = New System.Windows.Forms.ToolStrip() + Me.tsAppTreeSelectClose = New System.Windows.Forms.ToolStripButton() + Me.tsAppSearchString = New System.Windows.Forms.ToolStripTextBox() + Me.tsAppTreeSearchSearch = New System.Windows.Forms.ToolStripButton() + Me.tsAppTreeSearchPrev = New System.Windows.Forms.ToolStripButton() + Me.tsbtnappabhaengigkeit_neu = New System.Windows.Forms.ToolStrip() + Me.tsAppAbhaengigkeit_Export = New System.Windows.Forms.ToolStripButton() + Me.tsappabhaengigkeitneu = New System.Windows.Forms.ToolStripButton() + Me.ToolStripButton1 = New System.Windows.Forms.ToolStripButton() Me.ToolStrip1.SuspendLayout() Me.MenuStrip1.SuspendLayout() Me.TreeApplikationenContextMenuStrip.SuspendLayout() @@ -399,6 +425,17 @@ Partial Class frmApplikation Me.TabIKVTests.SuspendLayout() CType(Me.C1IKVTests, System.ComponentModel.ISupportInitialize).BeginInit() Me.TabServerInventar.SuspendLayout() + Me.TabAbhaengigkeiten.SuspendLayout() + Me.GroupBox2.SuspendLayout() + CType(Me.C1ApplikationAbhaengigVon, System.ComponentModel.ISupportInitialize).BeginInit() + Me.ctxMenuAppAbhaengigVon.SuspendLayout() + Me.GrpApplAbhaengigkeit.SuspendLayout() + CType(Me.C1Applikationsabhaengigkeiten, System.ComponentModel.ISupportInitialize).BeginInit() + Me.ctxmenuAbhaengigkeiten.SuspendLayout() + Me.grpAppselect.SuspendLayout() + Me.ctxmenuabhaengigkeitenTree.SuspendLayout() + Me.tsAppTreeSearch.SuspendLayout() + Me.tsbtnappabhaengigkeit_neu.SuspendLayout() Me.SuspendLayout() ' 'ToolStrip1 @@ -604,40 +641,40 @@ Partial Class frmApplikation ' Me.TreeApplikationenContextMenuStrip.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.TreeAppAlleKnotenSchliessenToolStripMenuItem, Me.TreeApplalleKnotenÖffnenToolStripMenuItem, Me.ToolStripMenuItem4, Me.Struktur2XMLToolStripMenuItem, Me.ToolStripMenuItem3, Me.InNeuemFensterÖffnenToolStripMenuItem}) Me.TreeApplikationenContextMenuStrip.Name = "TreeApplikationenContextMenuStrip" - Me.TreeApplikationenContextMenuStrip.Size = New System.Drawing.Size(237, 104) + Me.TreeApplikationenContextMenuStrip.Size = New System.Drawing.Size(239, 104) ' 'TreeAppAlleKnotenSchliessenToolStripMenuItem ' Me.TreeAppAlleKnotenSchliessenToolStripMenuItem.Name = "TreeAppAlleKnotenSchliessenToolStripMenuItem" - Me.TreeAppAlleKnotenSchliessenToolStripMenuItem.Size = New System.Drawing.Size(236, 22) + Me.TreeAppAlleKnotenSchliessenToolStripMenuItem.Size = New System.Drawing.Size(238, 22) Me.TreeAppAlleKnotenSchliessenToolStripMenuItem.Text = "Alle Knoten schliessen" ' 'TreeApplalleKnotenÖffnenToolStripMenuItem ' Me.TreeApplalleKnotenÖffnenToolStripMenuItem.Name = "TreeApplalleKnotenÖffnenToolStripMenuItem" - Me.TreeApplalleKnotenÖffnenToolStripMenuItem.Size = New System.Drawing.Size(236, 22) + Me.TreeApplalleKnotenÖffnenToolStripMenuItem.Size = New System.Drawing.Size(238, 22) Me.TreeApplalleKnotenÖffnenToolStripMenuItem.Text = "Alle Knoten öffnen" ' 'ToolStripMenuItem4 ' Me.ToolStripMenuItem4.Name = "ToolStripMenuItem4" - Me.ToolStripMenuItem4.Size = New System.Drawing.Size(233, 6) + Me.ToolStripMenuItem4.Size = New System.Drawing.Size(235, 6) ' 'Struktur2XMLToolStripMenuItem ' Me.Struktur2XMLToolStripMenuItem.Name = "Struktur2XMLToolStripMenuItem" - Me.Struktur2XMLToolStripMenuItem.Size = New System.Drawing.Size(236, 22) + Me.Struktur2XMLToolStripMenuItem.Size = New System.Drawing.Size(238, 22) Me.Struktur2XMLToolStripMenuItem.Text = "Struktur nach Excel exportieren" ' 'ToolStripMenuItem3 ' Me.ToolStripMenuItem3.Name = "ToolStripMenuItem3" - Me.ToolStripMenuItem3.Size = New System.Drawing.Size(233, 6) + Me.ToolStripMenuItem3.Size = New System.Drawing.Size(235, 6) ' 'InNeuemFensterÖffnenToolStripMenuItem ' Me.InNeuemFensterÖffnenToolStripMenuItem.Name = "InNeuemFensterÖffnenToolStripMenuItem" - Me.InNeuemFensterÖffnenToolStripMenuItem.Size = New System.Drawing.Size(236, 22) + Me.InNeuemFensterÖffnenToolStripMenuItem.Size = New System.Drawing.Size(238, 22) Me.InNeuemFensterÖffnenToolStripMenuItem.Text = "In neuem Fenster öffnen" ' 'ImgListApplikationTree @@ -1323,6 +1360,7 @@ Partial Class frmApplikation Me.TabControlApplikation.Controls.Add(Me.TabRisiko) Me.TabControlApplikation.Controls.Add(Me.TabIKV) Me.TabControlApplikation.Controls.Add(Me.TabServerInventar) + Me.TabControlApplikation.Controls.Add(Me.TabAbhaengigkeiten) Me.TabControlApplikation.Dock = System.Windows.Forms.DockStyle.Fill Me.TabControlApplikation.Location = New System.Drawing.Point(0, 0) Me.TabControlApplikation.Name = "TabControlApplikation" @@ -1522,6 +1560,15 @@ Partial Class frmApplikation Me.cbLizenzerfassung.TextAlign = System.Drawing.ContentAlignment.TopRight Me.cbLizenzerfassung.UseVisualStyleBackColor = True ' + 'lblRfcBoard + ' + Me.lblRfcBoard.AutoSize = True + Me.lblRfcBoard.Location = New System.Drawing.Point(12, 19) + Me.lblRfcBoard.Name = "lblRfcBoard" + Me.lblRfcBoard.Size = New System.Drawing.Size(59, 13) + Me.lblRfcBoard.TabIndex = 128 + Me.lblRfcBoard.Text = "RFC-Board" + ' 'txtPrioWiederanlauf ' Me.txtPrioWiederanlauf.Location = New System.Drawing.Point(155, 69) @@ -1546,6 +1593,14 @@ Partial Class frmApplikation Me.cboxSecurityLevel.Size = New System.Drawing.Size(129, 21) Me.cboxSecurityLevel.TabIndex = 4 ' + 'cboxRFCBoard + ' + Me.cboxRFCBoard.FormattingEnabled = True + Me.cboxRFCBoard.Location = New System.Drawing.Point(155, 16) + Me.cboxRFCBoard.Name = "cboxRFCBoard" + Me.cboxRFCBoard.Size = New System.Drawing.Size(138, 21) + Me.cboxRFCBoard.TabIndex = 2 + ' 'lblAktiv ' Me.lblAktiv.AutoSize = True @@ -1629,15 +1684,6 @@ Partial Class frmApplikation Me.cbboxVerantwortung.Size = New System.Drawing.Size(203, 21) Me.cbboxVerantwortung.TabIndex = 0 ' - 'lblRfcBoard - ' - Me.lblRfcBoard.AutoSize = True - Me.lblRfcBoard.Location = New System.Drawing.Point(12, 19) - Me.lblRfcBoard.Name = "lblRfcBoard" - Me.lblRfcBoard.Size = New System.Drawing.Size(59, 13) - Me.lblRfcBoard.TabIndex = 128 - Me.lblRfcBoard.Text = "RFC-Board" - ' 'lblVerantwortung ' Me.lblVerantwortung.AutoSize = True @@ -1655,14 +1701,6 @@ Partial Class frmApplikation Me.cbboxTeam.Size = New System.Drawing.Size(204, 21) Me.cbboxTeam.TabIndex = 1 ' - 'cboxRFCBoard - ' - Me.cboxRFCBoard.FormattingEnabled = True - Me.cboxRFCBoard.Location = New System.Drawing.Point(155, 16) - Me.cboxRFCBoard.Name = "cboxRFCBoard" - Me.cboxRFCBoard.Size = New System.Drawing.Size(138, 21) - Me.cboxRFCBoard.TabIndex = 2 - ' 'lblTeam ' Me.lblTeam.AutoSize = True @@ -3235,6 +3273,255 @@ Partial Class frmApplikation Me.CtrlServerInventar1.Size = New System.Drawing.Size(657, 490) Me.CtrlServerInventar1.TabIndex = 0 ' + 'TabAbhaengigkeiten + ' + Me.TabAbhaengigkeiten.Controls.Add(Me.GroupBox2) + Me.TabAbhaengigkeiten.Controls.Add(Me.GrpApplAbhaengigkeit) + Me.TabAbhaengigkeiten.Controls.Add(Me.grpAppselect) + Me.TabAbhaengigkeiten.Controls.Add(Me.tsbtnappabhaengigkeit_neu) + Me.TabAbhaengigkeiten.Location = New System.Drawing.Point(4, 22) + Me.TabAbhaengigkeiten.Name = "TabAbhaengigkeiten" + Me.TabAbhaengigkeiten.Size = New System.Drawing.Size(657, 490) + Me.TabAbhaengigkeiten.TabIndex = 15 + Me.TabAbhaengigkeiten.Text = "Abhängigkeiten" + Me.TabAbhaengigkeiten.UseVisualStyleBackColor = True + ' + 'GroupBox2 + ' + Me.GroupBox2.Controls.Add(Me.C1ApplikationAbhaengigVon) + Me.GroupBox2.Dock = System.Windows.Forms.DockStyle.Fill + Me.GroupBox2.Location = New System.Drawing.Point(228, 248) + Me.GroupBox2.Name = "GroupBox2" + Me.GroupBox2.Size = New System.Drawing.Size(429, 242) + Me.GroupBox2.TabIndex = 16 + Me.GroupBox2.TabStop = False + Me.GroupBox2.Text = "Ist Abhängig von" + ' + 'C1ApplikationAbhaengigVon + ' + Me.C1ApplikationAbhaengigVon.AlternatingRows = True + Me.C1ApplikationAbhaengigVon.ContextMenuStrip = Me.ctxMenuAppAbhaengigVon + Me.C1ApplikationAbhaengigVon.Dock = System.Windows.Forms.DockStyle.Fill + Me.C1ApplikationAbhaengigVon.FetchRowStyles = True + Me.C1ApplikationAbhaengigVon.FilterBar = True + Me.C1ApplikationAbhaengigVon.GroupByCaption = "Drag a column header here to group by that column" + Me.C1ApplikationAbhaengigVon.Images.Add(CType(resources.GetObject("C1ApplikationAbhaengigVon.Images"), System.Drawing.Image)) + Me.C1ApplikationAbhaengigVon.Location = New System.Drawing.Point(3, 16) + Me.C1ApplikationAbhaengigVon.Name = "C1ApplikationAbhaengigVon" + Me.C1ApplikationAbhaengigVon.PreviewInfo.Location = New System.Drawing.Point(0, 0) + Me.C1ApplikationAbhaengigVon.PreviewInfo.Size = New System.Drawing.Size(0, 0) + Me.C1ApplikationAbhaengigVon.PreviewInfo.ZoomFactor = 75.0R + Me.C1ApplikationAbhaengigVon.PrintInfo.PageSettings = CType(resources.GetObject("C1ApplikationAbhaengigVon.PrintInfo.PageSettings"), System.Drawing.Printing.PageSettings) + Me.C1ApplikationAbhaengigVon.RecordSelectorWidth = 16 + Me.C1ApplikationAbhaengigVon.Size = New System.Drawing.Size(423, 223) + Me.C1ApplikationAbhaengigVon.TabAction = C1.Win.C1TrueDBGrid.TabActionEnum.ColumnNavigation + Me.C1ApplikationAbhaengigVon.TabIndex = 14 + Me.C1ApplikationAbhaengigVon.Text = "C1TrueDBGrid1" + Me.C1ApplikationAbhaengigVon.PropBag = resources.GetString("C1ApplikationAbhaengigVon.PropBag") + ' + 'ctxMenuAppAbhaengigVon + ' + Me.ctxMenuAppAbhaengigVon.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ApplikationsdetailsToolStripMenuItem}) + Me.ctxMenuAppAbhaengigVon.Name = "ctxMenuAppAbhaengigVon" + Me.ctxMenuAppAbhaengigVon.Size = New System.Drawing.Size(175, 26) + ' + 'ApplikationsdetailsToolStripMenuItem + ' + Me.ApplikationsdetailsToolStripMenuItem.Name = "ApplikationsdetailsToolStripMenuItem" + Me.ApplikationsdetailsToolStripMenuItem.Size = New System.Drawing.Size(174, 22) + Me.ApplikationsdetailsToolStripMenuItem.Text = "Applikationsdetails" + ' + 'GrpApplAbhaengigkeit + ' + Me.GrpApplAbhaengigkeit.Controls.Add(Me.C1Applikationsabhaengigkeiten) + Me.GrpApplAbhaengigkeit.Dock = System.Windows.Forms.DockStyle.Top + Me.GrpApplAbhaengigkeit.Location = New System.Drawing.Point(228, 25) + Me.GrpApplAbhaengigkeit.Name = "GrpApplAbhaengigkeit" + Me.GrpApplAbhaengigkeit.Size = New System.Drawing.Size(429, 223) + Me.GrpApplAbhaengigkeit.TabIndex = 15 + Me.GrpApplAbhaengigkeit.TabStop = False + Me.GrpApplAbhaengigkeit.Text = "Abhängige Applikationen" + ' + 'C1Applikationsabhaengigkeiten + ' + Me.C1Applikationsabhaengigkeiten.AlternatingRows = True + Me.C1Applikationsabhaengigkeiten.ContextMenuStrip = Me.ctxmenuAbhaengigkeiten + Me.C1Applikationsabhaengigkeiten.Dock = System.Windows.Forms.DockStyle.Fill + Me.C1Applikationsabhaengigkeiten.FetchRowStyles = True + Me.C1Applikationsabhaengigkeiten.FilterBar = True + Me.C1Applikationsabhaengigkeiten.GroupByCaption = "Drag a column header here to group by that column" + Me.C1Applikationsabhaengigkeiten.Images.Add(CType(resources.GetObject("C1Applikationsabhaengigkeiten.Images"), System.Drawing.Image)) + Me.C1Applikationsabhaengigkeiten.Location = New System.Drawing.Point(3, 16) + Me.C1Applikationsabhaengigkeiten.Name = "C1Applikationsabhaengigkeiten" + Me.C1Applikationsabhaengigkeiten.PreviewInfo.Location = New System.Drawing.Point(0, 0) + Me.C1Applikationsabhaengigkeiten.PreviewInfo.Size = New System.Drawing.Size(0, 0) + Me.C1Applikationsabhaengigkeiten.PreviewInfo.ZoomFactor = 75.0R + Me.C1Applikationsabhaengigkeiten.PrintInfo.PageSettings = CType(resources.GetObject("C1Applikationsabhaengigkeiten.PrintInfo.PageSettings"), System.Drawing.Printing.PageSettings) + Me.C1Applikationsabhaengigkeiten.RecordSelectorWidth = 16 + Me.C1Applikationsabhaengigkeiten.Size = New System.Drawing.Size(423, 204) + Me.C1Applikationsabhaengigkeiten.TabAction = C1.Win.C1TrueDBGrid.TabActionEnum.ColumnNavigation + Me.C1Applikationsabhaengigkeiten.TabIndex = 13 + Me.C1Applikationsabhaengigkeiten.Text = "C1TrueDBGrid1" + Me.C1Applikationsabhaengigkeiten.PropBag = resources.GetString("C1Applikationsabhaengigkeiten.PropBag") + ' + 'ctxmenuAbhaengigkeiten + ' + Me.ctxmenuAbhaengigkeiten.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.NeuerEintragToolStripMenuItem, Me.EintragLöschenToolStripMenuItem, Me.BemerkungToolStripMenuItem, Me.ToolStripMenuItem5, Me.ApplikatioinsdetailsToolStripMenuItem}) + Me.ctxmenuAbhaengigkeiten.Name = "ctxmenuAbhaengigkeiten" + Me.ctxmenuAbhaengigkeiten.Size = New System.Drawing.Size(178, 98) + ' + 'NeuerEintragToolStripMenuItem + ' + Me.NeuerEintragToolStripMenuItem.Name = "NeuerEintragToolStripMenuItem" + Me.NeuerEintragToolStripMenuItem.Size = New System.Drawing.Size(177, 22) + Me.NeuerEintragToolStripMenuItem.Text = "Neuer Eintrag" + ' + 'EintragLöschenToolStripMenuItem + ' + Me.EintragLöschenToolStripMenuItem.Name = "EintragLöschenToolStripMenuItem" + Me.EintragLöschenToolStripMenuItem.Size = New System.Drawing.Size(177, 22) + Me.EintragLöschenToolStripMenuItem.Text = "Eintrag löschen" + ' + 'BemerkungToolStripMenuItem + ' + Me.BemerkungToolStripMenuItem.Name = "BemerkungToolStripMenuItem" + Me.BemerkungToolStripMenuItem.Size = New System.Drawing.Size(177, 22) + Me.BemerkungToolStripMenuItem.Text = "Bemerkung" + ' + 'ToolStripMenuItem5 + ' + Me.ToolStripMenuItem5.Name = "ToolStripMenuItem5" + Me.ToolStripMenuItem5.Size = New System.Drawing.Size(174, 6) + ' + 'ApplikatioinsdetailsToolStripMenuItem + ' + Me.ApplikatioinsdetailsToolStripMenuItem.Name = "ApplikatioinsdetailsToolStripMenuItem" + Me.ApplikatioinsdetailsToolStripMenuItem.Size = New System.Drawing.Size(177, 22) + Me.ApplikatioinsdetailsToolStripMenuItem.Text = "Applikatioinsdetails" + ' + 'grpAppselect + ' + Me.grpAppselect.Controls.Add(Me.AppTreeSelect) + Me.grpAppselect.Controls.Add(Me.tsAppTreeSearch) + Me.grpAppselect.Dock = System.Windows.Forms.DockStyle.Left + Me.grpAppselect.Location = New System.Drawing.Point(0, 25) + Me.grpAppselect.Name = "grpAppselect" + Me.grpAppselect.Size = New System.Drawing.Size(228, 465) + Me.grpAppselect.TabIndex = 18 + Me.grpAppselect.TabStop = False + Me.grpAppselect.Text = "Applikation auswählen" + Me.grpAppselect.Visible = False + ' + 'AppTreeSelect + ' + Me.AppTreeSelect.ContextMenuStrip = Me.ctxmenuabhaengigkeitenTree + Me.AppTreeSelect.Dock = System.Windows.Forms.DockStyle.Fill + Me.AppTreeSelect.FullRowSelect = True + Me.AppTreeSelect.HideSelection = False + Me.AppTreeSelect.ImageIndex = 0 + Me.AppTreeSelect.ImageList = Me.ImgListApplikationTree + Me.AppTreeSelect.Location = New System.Drawing.Point(3, 41) + Me.AppTreeSelect.Name = "AppTreeSelect" + Me.AppTreeSelect.SelectedImageIndex = 0 + Me.AppTreeSelect.Size = New System.Drawing.Size(222, 421) + Me.AppTreeSelect.TabIndex = 3 + ' + 'ctxmenuabhaengigkeitenTree + ' + Me.ctxmenuabhaengigkeitenTree.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.AbhängigkeitHinzufügenToolStripMenuItem}) + Me.ctxmenuabhaengigkeitenTree.Name = "ctxmenuabhaengigkeitenTree" + Me.ctxmenuabhaengigkeitenTree.Size = New System.Drawing.Size(209, 26) + ' + 'AbhängigkeitHinzufügenToolStripMenuItem + ' + Me.AbhängigkeitHinzufügenToolStripMenuItem.Name = "AbhängigkeitHinzufügenToolStripMenuItem" + Me.AbhängigkeitHinzufügenToolStripMenuItem.Size = New System.Drawing.Size(208, 22) + Me.AbhängigkeitHinzufügenToolStripMenuItem.Text = "Abhängigkeit hinzufügen" + ' + 'tsAppTreeSearch + ' + Me.tsAppTreeSearch.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsAppTreeSelectClose, Me.tsAppSearchString, Me.tsAppTreeSearchSearch, Me.tsAppTreeSearchPrev}) + Me.tsAppTreeSearch.Location = New System.Drawing.Point(3, 16) + Me.tsAppTreeSearch.Name = "tsAppTreeSearch" + Me.tsAppTreeSearch.Size = New System.Drawing.Size(222, 25) + Me.tsAppTreeSearch.TabIndex = 4 + Me.tsAppTreeSearch.Text = "ToolStrip4" + ' + 'tsAppTreeSelectClose + ' + Me.tsAppTreeSelectClose.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + Me.tsAppTreeSelectClose.Image = CType(resources.GetObject("tsAppTreeSelectClose.Image"), System.Drawing.Image) + Me.tsAppTreeSelectClose.ImageTransparentColor = System.Drawing.Color.Magenta + Me.tsAppTreeSelectClose.Name = "tsAppTreeSelectClose" + Me.tsAppTreeSelectClose.Size = New System.Drawing.Size(23, 22) + Me.tsAppTreeSelectClose.Text = "Baumstruktur schliessen" + Me.tsAppTreeSelectClose.ToolTipText = "Struktur schliessen" + ' + 'tsAppSearchString + ' + Me.tsAppSearchString.Font = New System.Drawing.Font("Segoe UI", 9.0!) + Me.tsAppSearchString.Name = "tsAppSearchString" + Me.tsAppSearchString.Size = New System.Drawing.Size(100, 25) + ' + 'tsAppTreeSearchSearch + ' + Me.tsAppTreeSearchSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + Me.tsAppTreeSearchSearch.Image = CType(resources.GetObject("tsAppTreeSearchSearch.Image"), System.Drawing.Image) + Me.tsAppTreeSearchSearch.ImageTransparentColor = System.Drawing.Color.Magenta + Me.tsAppTreeSearchSearch.Name = "tsAppTreeSearchSearch" + Me.tsAppTreeSearchSearch.Size = New System.Drawing.Size(23, 22) + Me.tsAppTreeSearchSearch.Text = "ToolStripButton1" + Me.tsAppTreeSearchSearch.ToolTipText = "Suchen" + ' + 'tsAppTreeSearchPrev + ' + Me.tsAppTreeSearchPrev.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + Me.tsAppTreeSearchPrev.Image = CType(resources.GetObject("tsAppTreeSearchPrev.Image"), System.Drawing.Image) + Me.tsAppTreeSearchPrev.ImageTransparentColor = System.Drawing.Color.Magenta + Me.tsAppTreeSearchPrev.Name = "tsAppTreeSearchPrev" + Me.tsAppTreeSearchPrev.Size = New System.Drawing.Size(23, 22) + Me.tsAppTreeSearchPrev.Text = "ToolStripButton3" + Me.tsAppTreeSearchPrev.ToolTipText = "Suche löschen" + ' + 'tsbtnappabhaengigkeit_neu + ' + Me.tsbtnappabhaengigkeit_neu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripButton1, Me.tsAppAbhaengigkeit_Export, Me.tsappabhaengigkeitneu}) + Me.tsbtnappabhaengigkeit_neu.Location = New System.Drawing.Point(0, 0) + Me.tsbtnappabhaengigkeit_neu.Name = "tsbtnappabhaengigkeit_neu" + Me.tsbtnappabhaengigkeit_neu.Size = New System.Drawing.Size(657, 25) + Me.tsbtnappabhaengigkeit_neu.TabIndex = 17 + Me.tsbtnappabhaengigkeit_neu.Text = "ToolStrip3" + ' + 'tsAppAbhaengigkeit_Export + ' + Me.tsAppAbhaengigkeit_Export.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + Me.tsAppAbhaengigkeit_Export.Image = CType(resources.GetObject("tsAppAbhaengigkeit_Export.Image"), System.Drawing.Image) + Me.tsAppAbhaengigkeit_Export.ImageTransparentColor = System.Drawing.Color.Magenta + Me.tsAppAbhaengigkeit_Export.Name = "tsAppAbhaengigkeit_Export" + Me.tsAppAbhaengigkeit_Export.Size = New System.Drawing.Size(23, 22) + Me.tsAppAbhaengigkeit_Export.Text = "Baumstruktur schliessen" + Me.tsAppAbhaengigkeit_Export.ToolTipText = "Excel-Export" + ' + 'tsappabhaengigkeitneu + ' + Me.tsappabhaengigkeitneu.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + Me.tsappabhaengigkeitneu.Image = CType(resources.GetObject("tsappabhaengigkeitneu.Image"), System.Drawing.Image) + Me.tsappabhaengigkeitneu.ImageTransparentColor = System.Drawing.Color.Magenta + Me.tsappabhaengigkeitneu.Name = "tsappabhaengigkeitneu" + Me.tsappabhaengigkeitneu.Size = New System.Drawing.Size(23, 22) + Me.tsappabhaengigkeitneu.Text = "ToolStripButton1" + Me.tsappabhaengigkeitneu.ToolTipText = "Neuer Eintrag" + ' + 'ToolStripButton1 + ' + Me.ToolStripButton1.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image + Me.ToolStripButton1.Image = CType(resources.GetObject("ToolStripButton1.Image"), System.Drawing.Image) + Me.ToolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta + Me.ToolStripButton1.Name = "ToolStripButton1" + Me.ToolStripButton1.Size = New System.Drawing.Size(23, 22) + Me.ToolStripButton1.Text = "ToolStripButton1" + Me.ToolStripButton1.Visible = False + ' 'frmApplikation ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) @@ -3356,6 +3643,21 @@ Partial Class frmApplikation Me.TabIKVTests.ResumeLayout(False) CType(Me.C1IKVTests, System.ComponentModel.ISupportInitialize).EndInit() Me.TabServerInventar.ResumeLayout(False) + Me.TabAbhaengigkeiten.ResumeLayout(False) + Me.TabAbhaengigkeiten.PerformLayout() + Me.GroupBox2.ResumeLayout(False) + CType(Me.C1ApplikationAbhaengigVon, System.ComponentModel.ISupportInitialize).EndInit() + Me.ctxMenuAppAbhaengigVon.ResumeLayout(False) + Me.GrpApplAbhaengigkeit.ResumeLayout(False) + CType(Me.C1Applikationsabhaengigkeiten, System.ComponentModel.ISupportInitialize).EndInit() + Me.ctxmenuAbhaengigkeiten.ResumeLayout(False) + Me.grpAppselect.ResumeLayout(False) + Me.grpAppselect.PerformLayout() + Me.ctxmenuabhaengigkeitenTree.ResumeLayout(False) + Me.tsAppTreeSearch.ResumeLayout(False) + Me.tsAppTreeSearch.PerformLayout() + Me.tsbtnappabhaengigkeit_neu.ResumeLayout(False) + Me.tsbtnappabhaengigkeit_neu.PerformLayout() Me.ResumeLayout(False) Me.PerformLayout() @@ -3651,4 +3953,30 @@ Partial Class frmApplikation Friend WithEvents lblArtderDaten As System.Windows.Forms.Label Friend WithEvents lblArtdesSchutzes As System.Windows.Forms.Label Friend WithEvents txtArtdesSchutzes As System.Windows.Forms.TextBox + Friend WithEvents TabAbhaengigkeiten As TabPage + Friend WithEvents C1Applikationsabhaengigkeiten As C1.Win.C1TrueDBGrid.C1TrueDBGrid + Friend WithEvents GroupBox2 As GroupBox + Friend WithEvents C1ApplikationAbhaengigVon As C1.Win.C1TrueDBGrid.C1TrueDBGrid + Friend WithEvents GrpApplAbhaengigkeit As GroupBox + Friend WithEvents tsbtnappabhaengigkeit_neu As ToolStrip + Friend WithEvents ctxmenuAbhaengigkeiten As ContextMenuStrip + Friend WithEvents NeuerEintragToolStripMenuItem As ToolStripMenuItem + Friend WithEvents EintragLöschenToolStripMenuItem As ToolStripMenuItem + Friend WithEvents ToolStripMenuItem5 As ToolStripSeparator + Friend WithEvents ApplikatioinsdetailsToolStripMenuItem As ToolStripMenuItem + Friend WithEvents ctxMenuAppAbhaengigVon As ContextMenuStrip + Friend WithEvents ApplikationsdetailsToolStripMenuItem As ToolStripMenuItem + Friend WithEvents grpAppselect As GroupBox + Friend WithEvents AppTreeSelect As TreeView + Friend WithEvents tsAppTreeSearch As ToolStrip + Friend WithEvents ctxmenuabhaengigkeitenTree As ContextMenuStrip + Friend WithEvents AbhängigkeitHinzufügenToolStripMenuItem As ToolStripMenuItem + Friend WithEvents tsAppSearchString As ToolStripTextBox + Friend WithEvents tsAppTreeSearchSearch As ToolStripButton + Friend WithEvents tsAppTreeSearchPrev As ToolStripButton + Friend WithEvents tsAppTreeSelectClose As ToolStripButton + Friend WithEvents tsAppAbhaengigkeit_Export As ToolStripButton + Friend WithEvents tsappabhaengigkeitneu As ToolStripButton + Friend WithEvents BemerkungToolStripMenuItem As ToolStripMenuItem + Friend WithEvents ToolStripButton1 As ToolStripButton End Class diff --git a/Vertragsverwaltung/Applikation/Applikation/frmApplikation.resx b/Vertragsverwaltung/Applikation/Applikation/frmApplikation.resx index 0d39909e..4613f10f 100644 --- a/Vertragsverwaltung/Applikation/Applikation/frmApplikation.resx +++ b/Vertragsverwaltung/Applikation/Applikation/frmApplikation.resx @@ -296,7 +296,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADg - CwAAAk1TRnQBSQFMAgEBBQEAAZQBCQGUAQkBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + CwAAAk1TRnQBSQFMAgEBBQEAAfwBCgH8AQoBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -360,7 +360,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAACM - DwAAAk1TRnQBSQFMAgEBBwEAAZQBCQGUAQkBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + DwAAAk1TRnQBSQFMAgEBBwEAAfwBCgH8AQoBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -467,7 +467,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAAw - CQAAAk1TRnQBSQFMAgEBAgEAARgBAQEYAQEBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + CQAAAk1TRnQBSQFMAgEBAgEAAYABAgGAAQIBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -546,7 +546,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:Aqua;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{AlignHorz:Center;}Style6{}FilterBar{}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 714, 238</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 714, 238</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:Aqua;}Normal{}RecordSelector{AlignImage:Center;}OddRow{}Style3{}Footer{}Style14{}FilterBar{}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 714, 238</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 714, 238</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -585,7 +585,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:Aqua;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{AlignHorz:Center;}Style6{}FilterBar{}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 714, 130</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 714, 130</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:Aqua;}Normal{}RecordSelector{AlignImage:Center;}OddRow{}Style3{}Footer{}Style14{}FilterBar{}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 714, 130</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 714, 130</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -624,7 +624,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 650, 178</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 650, 178</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 650, 178</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 650, 178</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> 408, 56 @@ -634,7 +634,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj0yLjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAA6 - DQAAAk1TRnQBSQFMAgEBBwEAAZQBCQGUAQkBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo + DQAAAk1TRnQBSQFMAgEBBwEAAfwBCgH8AQoBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo AwABQAMAASADAAEBAQABCAYAAQgYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5 AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA @@ -718,6 +718,47 @@ 563, 95 + + 1288, 95 + + + 1181, 95 + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACkSURBVDhPlZALDsMwCEM5OkfLzbIaMGH5dJkligL2a1o5 + qP9RW3VVXYpzqLV2D+CZQVU/Y27uIg4OQQAJXz+hDsyEDtVQ7dib+1GH1fpUDljD6OF5HgjvKgHvN+iC + A0O1EvB+A8ghPvgqB4j9xPlHhidVB2lwwICfbkBxMAFGqHbszb1RGhywhtGxN/dGXAbgGD4CqACMMGZR + VwrA/Rtn/QiKfADckGXYsnwKqAAAAABJRU5ErkJggg== + + + + + iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACpSURBVFhH7ZLhCoQwDIP36Hu0vdl5DU7GbFx6KtyPfhBQ + 26aBWpIkEfhMYqh9YVRjtS+Maqz2hVGN1T6Z2RCqtULfZzC8M/0GMx2+d45QZCYMjFprzPCkvnwxIwMT + Qw1g6iG82i4ZKYCwcJYMjFcneDXAS5Lxhp+QzOoEDNQvTiMDg4ufkIG6BSfhZf4jwJ0T3A5gIstNjKMn + GPyENzyK4fWOSpIkcShlA/2ShGAugX0dAAAAAElFTkSuQmCC + + + + + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAETSURBVDhPrVPLccIwEN0C4Oxw8wUacAPqggOugFQALdAA + M8kx1+Bj7umBAzRAERkQ761XshzZA5nJm3mj1duPpJUk/4aryMGL+JtIbVIP0Gf0/4icMU5M7hACrMjM + 5IiwAFiZlANOx6BPNTus20QWfjVpHG9dsB4FdsX5t5oPUJalx+G0gLG6TKdqv7QFyGE453zTNBrk2uTI + r7r2LE6fMUdagGQfYIR+/OYgYsAchBHJeeoHc6Q7YMNgsJFbjpx/7PfpMXKEApskmTruf8f5cbXyjIE0 + XADwy6LQ5PTKYExOGKjjBVGPvh4YyCASqy9MVkDTtzD6jIkn/oL2IxytBybRiSLvJmXgyrYD7nL8P/wN + InfTOb1kQ+hzeQAAAABJRU5ErkJggg== + + + + 1074, 95 + + + 563, 95 + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 @@ -781,7 +822,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 655, 488</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 655, 488</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 655, 488</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 655, 488</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -820,7 +861,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 655, 488</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 655, 488</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 655, 488</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 655, 488</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -859,7 +900,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 372, 124</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 372, 124</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 372, 124</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 372, 124</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -898,7 +939,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;Wrap:True;BackColor:Control;ForeColor:ControlText;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 263, 124</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 263, 124</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 263, 124</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 263, 124</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -937,7 +978,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;Wrap:True;BackColor:Control;ForeColor:ControlText;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 649, 482</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 649, 482</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 649, 482</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 649, 482</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -976,7 +1017,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;Wrap:True;BackColor:Control;ForeColor:ControlText;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:WindowText;BackColor:239, 239, 247;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Trimming:Character;GradientMode:None;Alpha:255;ForegroundImagePos:LeftOfText;AlignImage:Stretch;BackColor:ControlDark;AlignVert:Center;AlignHorz:Center;Border:None,,0, 0, 0, 0;Wrap:True;}Style1{}Caption{AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 649, 199</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 649, 199</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:WindowText;BackColor:239, 239, 247;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Trimming:Character;GradientMode:None;Alpha:255;ForegroundImagePos:LeftOfText;AlignImage:Stretch;AlignVert:Center;Border:None,,0, 0, 0, 0;AlignHorz:Center;BackColor:ControlDark;Wrap:True;}Style6{}Style1{}Caption{AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 649, 199</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 649, 199</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -1015,7 +1056,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:WindowText;BackColor:239, 239, 247;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Trimming:Character;GradientMode:None;Alpha:255;ForegroundImagePos:LeftOfText;AlignImage:Stretch;AlignVert:Center;Border:None,,0, 0, 0, 0;AlignHorz:Center;BackColor:ControlDark;Wrap:True;}Style1{}Caption{AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 649, 245</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 649, 245</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:WindowText;BackColor:239, 239, 247;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Trimming:Character;GradientMode:None;Alpha:255;ForegroundImagePos:LeftOfText;AlignImage:Stretch;BackColor:ControlDark;AlignVert:Center;AlignHorz:Center;Border:None,,0, 0, 0, 0;Wrap:True;}Style6{}Style1{}Caption{AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 649, 245</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 649, 245</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -1054,7 +1095,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;Wrap:True;BackColor:Control;ForeColor:ControlText;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 655, 488</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 655, 488</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 655, 488</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 655, 488</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -1093,7 +1134,7 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 655, 488</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 655, 488</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 655, 488</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 655, 488</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> @@ -1132,10 +1173,194 @@ - <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 641, 456</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 641, 456</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;ForeColor:ControlText;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{Wrap:True;Trimming:Character;AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 641, 456</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 641, 456</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + + + 1181, 3 + + + + iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA0SURBVChTdYkBCgAgDAL9/6eLIsd0eSCKhw/r9aCLtC88 + vAdHMEIXKUIUhMK76EfagglgA6CqHOQpL6GyAAAAAElFTkSuQmCC + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj0yLjAuMC4wLCBDdWx0 + dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACRTeXN0ZW0uRHJh + d2luZy5QcmludGluZy5QYWdlU2V0dGluZ3MHAAAAD3ByaW50ZXJTZXR0aW5ncwVjb2xvcglwYXBlclNp + emULcGFwZXJTb3VyY2URcHJpbnRlclJlc29sdXRpb24JbGFuZHNjYXBlB21hcmdpbnMEBAQEBAQEJ1N5 + c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50ZXJTZXR0aW5ncwIAAAAgU3lzdGVtLkRyYXdpbmcuUHJp + bnRpbmcuVHJpU3RhdGUCAAAAIVN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlBhcGVyU2l6ZQIAAAAjU3lz + dGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJTb3VyY2UCAAAAKVN5c3RlbS5EcmF3aW5nLlByaW50aW5n + LlByaW50ZXJSZXNvbHV0aW9uAgAAACBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5UcmlTdGF0ZQIAAAAf + U3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuTWFyZ2lucwIAAAACAAAACQMAAAAF/P///yBTeXN0ZW0uRHJh + d2luZy5QcmludGluZy5UcmlTdGF0ZQEAAAAFdmFsdWUAAgIAAAAACgoKAfv////8////AAkGAAAABQMA + AAAnU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRlclNldHRpbmdzEgAAAAtwcmludGVyTmFtZQpk + cml2ZXJOYW1lCm91dHB1dFBvcnQLcHJpbnRUb0ZpbGUUcHJpbnREaWFsb2dEaXNwbGF5ZWQKZXh0cmFi + eXRlcwlleHRyYWluZm8GY29waWVzBmR1cGxleAdjb2xsYXRlE2RlZmF1bHRQYWdlU2V0dGluZ3MIZnJv + bVBhZ2UGdG9QYWdlB21heFBhZ2UHbWluUGFnZQpwcmludFJhbmdlDGRldm1vZGVieXRlcw1jYWNoZWRE + ZXZtb2RlAQEBAAAABwAEBAQAAAAABAAHAQEHAgceU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuRHVwbGV4 + AgAAACBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5UcmlTdGF0ZQIAAAAkU3lzdGVtLkRyYXdpbmcuUHJp + bnRpbmcuUGFnZVNldHRpbmdzAgAAAAgICAgiU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRSYW5n + ZQIAAAAHAgIAAAAKBgcAAAAACQcAAAAAAAAACv//Bfj///8eU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcu + RHVwbGV4AQAAAAd2YWx1ZV9fAAgCAAAA/////wH3/////P///wAJCgAAAAAAAAAAAAAADycAAAAAAAAF + 9f///yJTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QcmludFJhbmdlAQAAAAd2YWx1ZV9fAAgCAAAAAAAA + AAAACgUGAAAAH1N5c3RlbS5EcmF3aW5nLlByaW50aW5nLk1hcmdpbnMIAAAABGxlZnQFcmlnaHQDdG9w + BmJvdHRvbQpkb3VibGVMZWZ0C2RvdWJsZVJpZ2h0CWRvdWJsZVRvcAxkb3VibGVCb3R0b20AAAAAAAAA + AAgICAgGBgYGAgAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAABZQAAAAAAAAFlAAAAAAAAAWUAAAAAAAABZ + QAEKAAAAAQAAAAkDAAAAAfP////8////AAoKCgHy/////P///wAJDwAAAAEPAAAABgAAAGQAAABkAAAA + ZAAAAGQAAAAAAAAAAABZQAAAAAAAAFlAAAAAAAAAWUAAAAAAAABZQAs= + + + + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}Style2{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}Heading{ForeColor:ControlText;Border:Flat,ControlDark,0, 1, 0, 1;AlignVert:Center;BackColor:Control;Wrap:True;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style1{}Caption{AlignHorz:Center;}Style6{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 421, 221</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 421, 221</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + + + 1181, 3 + + + + iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAYAAADgkQYQAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAA0SURBVChTdYkBCgAgDAL9/6eLIsd0eSCKhw/r9aCLtC88 + vAdHMEIXKUIUhMK76EfagglgA6CqHOQpL6GyAAAAAElFTkSuQmCC + + + + + AAEAAAD/////AQAAAAAAAAAMAgAAAFFTeXN0ZW0uRHJhd2luZywgVmVyc2lvbj0yLjAuMC4wLCBDdWx0 + dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWIwM2Y1ZjdmMTFkNTBhM2EFAQAAACRTeXN0ZW0uRHJh + d2luZy5QcmludGluZy5QYWdlU2V0dGluZ3MHAAAAD3ByaW50ZXJTZXR0aW5ncwVjb2xvcglwYXBlclNp + emULcGFwZXJTb3VyY2URcHJpbnRlclJlc29sdXRpb24JbGFuZHNjYXBlB21hcmdpbnMEBAQEBAQEJ1N5 + c3RlbS5EcmF3aW5nLlByaW50aW5nLlByaW50ZXJTZXR0aW5ncwIAAAAgU3lzdGVtLkRyYXdpbmcuUHJp + bnRpbmcuVHJpU3RhdGUCAAAAIVN5c3RlbS5EcmF3aW5nLlByaW50aW5nLlBhcGVyU2l6ZQIAAAAjU3lz + dGVtLkRyYXdpbmcuUHJpbnRpbmcuUGFwZXJTb3VyY2UCAAAAKVN5c3RlbS5EcmF3aW5nLlByaW50aW5n + LlByaW50ZXJSZXNvbHV0aW9uAgAAACBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5UcmlTdGF0ZQIAAAAf + U3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuTWFyZ2lucwIAAAACAAAACQMAAAAF/P///yBTeXN0ZW0uRHJh + d2luZy5QcmludGluZy5UcmlTdGF0ZQEAAAAFdmFsdWUAAgIAAAAACgoKAfv////8////AAkGAAAABQMA + AAAnU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRlclNldHRpbmdzEgAAAAtwcmludGVyTmFtZQpk + cml2ZXJOYW1lCm91dHB1dFBvcnQLcHJpbnRUb0ZpbGUUcHJpbnREaWFsb2dEaXNwbGF5ZWQKZXh0cmFi + eXRlcwlleHRyYWluZm8GY29waWVzBmR1cGxleAdjb2xsYXRlE2RlZmF1bHRQYWdlU2V0dGluZ3MIZnJv + bVBhZ2UGdG9QYWdlB21heFBhZ2UHbWluUGFnZQpwcmludFJhbmdlDGRldm1vZGVieXRlcw1jYWNoZWRE + ZXZtb2RlAQEBAAAABwAEBAQAAAAABAAHAQEHAgceU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuRHVwbGV4 + AgAAACBTeXN0ZW0uRHJhd2luZy5QcmludGluZy5UcmlTdGF0ZQIAAAAkU3lzdGVtLkRyYXdpbmcuUHJp + bnRpbmcuUGFnZVNldHRpbmdzAgAAAAgICAgiU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcuUHJpbnRSYW5n + ZQIAAAAHAgIAAAAKBgcAAAAACQcAAAAAAAAACv//Bfj///8eU3lzdGVtLkRyYXdpbmcuUHJpbnRpbmcu + RHVwbGV4AQAAAAd2YWx1ZV9fAAgCAAAA/////wH3/////P///wAJCgAAAAAAAAAAAAAADycAAAAAAAAF + 9f///yJTeXN0ZW0uRHJhd2luZy5QcmludGluZy5QcmludFJhbmdlAQAAAAd2YWx1ZV9fAAgCAAAAAAAA + AAAACgUGAAAAH1N5c3RlbS5EcmF3aW5nLlByaW50aW5nLk1hcmdpbnMIAAAABGxlZnQFcmlnaHQDdG9w + BmJvdHRvbQpkb3VibGVMZWZ0C2RvdWJsZVJpZ2h0CWRvdWJsZVRvcAxkb3VibGVCb3R0b20AAAAAAAAA + AAgICAgGBgYGAgAAAGQAAABkAAAAZAAAAGQAAAAAAAAAAABZQAAAAAAAAFlAAAAAAAAAWUAAAAAAAABZ + QAEKAAAAAQAAAAkDAAAAAfP////8////AAoKCgHy/////P///wAJDwAAAAEPAAAABgAAAGQAAABkAAAA + ZAAAAGQAAAAAAAAAAABZQAAAAAAAAFlAAAAAAAAAWUAAAAAAAABZQAs= + + + + <?xml version="1.0"?><Blob><Styles type="C1.Win.C1TrueDBGrid.Design.ContextWrapper"><Data>HighlightRow{ForeColor:HighlightText;BackColor:Highlight;}Style8{}Style7{}EvenRow{BackColor:White;}Normal{}RecordSelector{AlignImage:Center;}OddRow{BackColor:224, 224, 224;}Style3{}Footer{}Style14{}FilterBar{ForeColor:Black;BackColor:255, 255, 192;}Heading{AlignVert:Center;Border:Flat,ControlDark,0, 1, 0, 1;Wrap:True;BackColor:Control;ForeColor:ControlText;}Style5{}Editor{}Style10{AlignHorz:Near;}FilterWatermark{ForeColor:InfoText;BackColor:Info;}Style16{}Selected{ForeColor:HighlightText;BackColor:Highlight;}Style15{}Style13{}Style12{}Style11{}Style4{}Style9{}Group{Border:None,,0, 0, 0, 0;AlignVert:Center;BackColor:ControlDark;}Style6{}Style1{}Caption{AlignHorz:Center;}Style2{}Inactive{ForeColor:InactiveCaptionText;BackColor:InactiveCaption;}</Data></Styles><Splits><C1.Win.C1TrueDBGrid.MergeView HBarHeight="16" VBarHeight="16" Name="" AlternatingRowStyle="True" CaptionHeight="17" ColumnCaptionHeight="17" ColumnFooterHeight="17" FetchRowStyles="True" FilterBar="True" MarqueeStyle="DottedCellBorder" RecordSelectorWidth="16" DefRecSelWidth="17" VerticalScrollGroup="1" HorizontalScrollGroup="1"><CaptionStyle parent="Style2" me="Style10" /><EditorStyle parent="Editor" me="Style5" /><EvenRowStyle parent="EvenRow" me="Style8" /><FilterBarStyle parent="FilterBar" me="Style13" /><FilterWatermarkStyle parent="FilterWatermark" me="Style14" /><FooterStyle parent="Footer" me="Style3" /><GroupStyle parent="Group" me="Style12" /><HeadingStyle parent="Heading" me="Style2" /><HighLightRowStyle parent="HighlightRow" me="Style7" /><InactiveStyle parent="Inactive" me="Style4" /><OddRowStyle parent="OddRow" me="Style9" /><RecordSelectorStyle parent="RecordSelector" me="Style11" /><SelectedStyle parent="Selected" me="Style6" /><Style parent="Normal" me="Style1" /><ClientRect>0, 0, 421, 202</ClientRect><BorderSide>0</BorderSide></C1.Win.C1TrueDBGrid.MergeView></Splits><NamedStyles><Style parent="" me="Normal" /><Style parent="Normal" me="Heading" /><Style parent="Heading" me="Footer" /><Style parent="Heading" me="Caption" /><Style parent="Heading" me="Inactive" /><Style parent="Normal" me="Selected" /><Style parent="Normal" me="Editor" /><Style parent="Normal" me="HighlightRow" /><Style parent="Normal" me="EvenRow" /><Style parent="Normal" me="OddRow" /><Style parent="Heading" me="RecordSelector" /><Style parent="Normal" me="FilterBar" /><Style parent="FilterBar" me="FilterWatermark" /><Style parent="Caption" me="Group" /></NamedStyles><vertSplits>1</vertSplits><horzSplits>1</horzSplits><Layout>None</Layout><DefaultRecSelWidth>17</DefaultRecSelWidth><ClientArea>0, 0, 421, 202</ClientArea><PrintPageHeaderStyle parent="" me="Style15" /><PrintPageFooterStyle parent="" me="Style16" /></Blob> + + + + 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 + TgDQASA1MVpwzwAAAABJRU5ErkJggg== + - 194 + 183 diff --git a/Vertragsverwaltung/Applikation/Applikation/frmApplikation.vb b/Vertragsverwaltung/Applikation/Applikation/frmApplikation.vb index e9c535d8..a21c5d64 100644 --- a/Vertragsverwaltung/Applikation/Applikation/frmApplikation.vb +++ b/Vertragsverwaltung/Applikation/Applikation/frmApplikation.vb @@ -263,7 +263,7 @@ Public Class frmApplikation 'Me.DiagramControl1.FormReadOnly = True Me.TscbboxTyp.SelectedIndex = 2 - + Me.OnLoad = False End Sub @@ -384,7 +384,7 @@ Public Class frmApplikation ''' ''' Private Sub TSBtnNew_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TSBtnNew.Click - + If Me.TreeApplikationen.SelectedNode.Tag < 1 Then msg.show_standardmessage(896, MsgBoxStyle.Critical) Exit Sub @@ -1052,7 +1052,7 @@ Public Class frmApplikation ' First show the index and check state of all selected items. For Each indexChecked In lboxInstalliertals.CheckedIndices ' The indexChecked variable contains the index of the item. - MessageBox.Show("Index#: " + indexChecked.ToString() + ", is checked. Checked state is:" + _ + MessageBox.Show("Index#: " + indexChecked.ToString() + ", is checked. Checked state is:" + lboxInstalliertals.GetItemCheckState(indexChecked).ToString() + ".") Next @@ -1060,8 +1060,8 @@ Public Class frmApplikation For Each itemChecked In lboxInstalliertals.CheckedItems ' Use the IndexOf method to get the index of an item. - MessageBox.Show("Item with title: " + quote + itemChecked.ToString() + quote + _ - ", is checked. Checked state is: " + _ + MessageBox.Show("Item with title: " + quote + itemChecked.ToString() + quote + + ", is checked. Checked state is: " + lboxInstalliertals.GetItemCheckState(lboxInstalliertals.Items.IndexOf(itemChecked)).ToString() + ".") Next @@ -1128,6 +1128,8 @@ Public Class frmApplikation Refresh_IKV_Tests() Case "Serverinventar" refresh_Backup() + Case "Abhängigkeiten" + refresh_Applikationsabhaengigkeiten() End Select End Sub @@ -1192,7 +1194,7 @@ Public Class frmApplikation End Try End Sub - + ''' ''' Rowstyle von inaktiven Kündigungsfristen ''' @@ -1247,7 +1249,7 @@ Public Class frmApplikation End Try End Sub - + ''' @@ -2060,8 +2062,8 @@ Public Class frmApplikation Private Sub ToolStripButton1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TSBtnApplReport.Click Me.DiagramControl1.Check_Changes() - Dim rep As New Reporting20.VV_ABA_Reporting(Globals.clsapplication.iApplikationsnr.Value, _ - Globals.clsmitarbeiter.iMitarbeiternr.Value, Globals.sConnectionString, _ + Dim rep As New Reporting20.VV_ABA_Reporting(Globals.clsapplication.iApplikationsnr.Value, + Globals.clsmitarbeiter.iMitarbeiternr.Value, Globals.sConnectionString, Globals.SecurityDaten, Globals.Spaltendaten, Globals.ToolTipDaten) rep.ShowApplikationsReport(999, Me.Applikation.iApplikationNr.Value, Me.MdiParent) @@ -2425,7 +2427,7 @@ Public Class frmApplikation rbsortalpha_CheckedChanged(sender, e) End Sub - + Private Sub rbsortalpha_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles rbsortalpha.CheckedChanged Treeviewdata.Load_Tree(Me.TreeApplikationen, False, "", Me.cboxNurAktive.CheckState, , Me.rbsortalpha.Checked) Me.TSBtnSuche_Click(sender, e) @@ -2686,7 +2688,7 @@ Public Class frmApplikation Private Sub tsbtnAlphasort_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tsbtnAlphasort.Click - + End Sub Private Sub tsbtnStruktursort_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tsbtnAlphasort.Click @@ -2929,7 +2931,22 @@ Public Class frmApplikation + #End Region +#Region "Applikationsabhängigkeiten" + + Sub refresh_Applikationsabhaengigkeiten() + Me.Applikation.dtab1 = Applikation.Abhaengigkeiten(1, Me.Aktuelle_Applikation, "", "") + Me.Applikation.dtab2 = Applikation.Abhaengigkeiten(2, Me.Aktuelle_Applikation, "", "") + Me.C1Applikationsabhaengigkeiten.DataSource = Me.Applikation.dtab1 + Me.SpaltenTitel.Spaltentitel_aktualisieren(Me.C1Applikationsabhaengigkeiten, "appdependency", Me.Applikation.dtab1) + Me.C1ApplikationAbhaengigVon.DataSource = Me.Applikation.dtab2 + Me.SpaltenTitel.Spaltentitel_aktualisieren(Me.C1ApplikationAbhaengigVon, "appdependency", Me.Applikation.dtab2) + GrpApplAbhaengigkeit.Dock = DockStyle.None + GrpApplAbhaengigkeit.Dock = DockStyle.Top + + End Sub + Private Sub evh_ServerInventarChanged(ApplicationNr As Integer) Handles evh.ServerInventarChanged @@ -2943,4 +2960,251 @@ Public Class frmApplikation enterenabled = True entertimer.Enabled = False End Sub + + + Private Sub ApplikatioinsdetailsToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles ApplikatioinsdetailsToolStripMenuItem.Click + Dim f As New frmApplikation(Me.C1Applikationsabhaengigkeiten.Columns("ApplikationAbhaengigID").Value, False) + f.MdiParent = Me.MdiParent + f.Show() + End Sub + + Private Sub ApplikationsdetailsToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles ApplikationsdetailsToolStripMenuItem.Click + Dim f As New frmApplikation(Me.C1ApplikationAbhaengigVon.Columns("ApplikationAbhaengigID").Value, False) + f.MdiParent = Me.MdiParent + f.Show() + End Sub + + + + Private Sub NeuerEintragToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles NeuerEintragToolStripMenuItem.Click + + 'Dim originalNode As TreeNode + 'For Each originalNode In Me.TreeApplikationen.Nodes + ' Dim NewNode As TreeNode = New TreeNode(originalNode.Text) + ' NewNode.Tag = originalNode.Tag + ' NewNode.ImageIndex = originalNode.ImageIndex + ' NewNode.SelectedImageIndex = originalNode.SelectedImageIndex + ' NewNode.StateImageIndex = originalNode.StateImageIndex + ' Me.AppTreeSelect.Nodes.Add(NewNode) + ' IterateTreeNodes(originalNode, NewNode) + + 'Next + Treeviewdata.Load_Tree(Me.AppTreeSelect, False, "", 1) + Me.AppTreeSelect.ImageList = ImgListApplikationTree + Me.AppTreeSelect.ExpandAll() + Me.AppTreeSelect.SelectedNode = Me.AppTreeSelect.Nodes(0) + Me.grpAppselect.Visible = True + End Sub + Private Sub IterateTreeNodes(ByVal originalNode As TreeNode, ByVal rootNode As TreeNode) + Dim childNode As TreeNode + For Each childNode In originalNode.Nodes + + Dim NewNode As TreeNode = New TreeNode(childNode.Text) + NewNode.Tag = childNode.Tag + NewNode.ImageIndex = childNode.ImageIndex + NewNode.SelectedImageIndex = childNode.SelectedImageIndex + NewNode.StateImageIndex = childNode.StateImageIndex + Me.AppTreeSelect.SelectedNode = rootNode + Me.AppTreeSelect.SelectedNode.Nodes.Add(NewNode) + + + IterateTreeNodes(childNode, NewNode) + Next + End Sub + + Private Sub AbhängigkeitHinzufügenToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles AbhängigkeitHinzufügenToolStripMenuItem.Click + + Applikation.Abhaengigkeiten(3, Me.Aktuelle_Applikation, Me.AppTreeSelect.SelectedNode.Tag, Globals.clsmitarbeiter.iMitarbeiternr.Value) + refresh_Applikationsabhaengigkeiten() + End Sub + + Private Sub ToolStripButton2_Click_1(sender As Object, e As EventArgs) + grpAppselect.Visible = False + End Sub + + Private Sub EintragLöschenToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles EintragLöschenToolStripMenuItem.Click + If MsgBox("Eintrag wirklich löschen?", vbYesNo) = vbYes Then + Me.Applikation.Abhaengigkeiten(4, Me.C1Applikationsabhaengigkeiten.Columns("ID").Value, Globals.clsmitarbeiter.iMitarbeiternr.Value, "") + refresh_Applikationsabhaengigkeiten() + End If + + End Sub + + Private Sub AppTreeSelect_DoubleClick(sender As Object, e As EventArgs) Handles AppTreeSelect.DoubleClick + AbhängigkeitHinzufügenToolStripMenuItem_Click(sender, e) + End Sub + + Private Sub tsAppTreeSelectClose_Click(sender As Object, e As EventArgs) Handles tsAppTreeSelectClose.Click + grpAppselect.Visible = False + End Sub + + Private Sub tsAppTreeSearchSearch_Click(sender As Object, e As EventArgs) Handles tsAppTreeSearchSearch.Click + ClearBackColor() + Dim nodes As TreeNodeCollection = AppTreeSelect.Nodes + Dim n As TreeNode + For Each n In nodes + FindRecursive(n) + Next + End Sub + Private Sub FindRecursive(ByVal tNode As TreeNode) + If tsAppSearchString.Text = "" Then + AppTreeSelect.CollapseAll() + ' AppTreeSelect.BackColor = Color.White + Else + Dim tn As TreeNode + For Each tn In tNode.Nodes + ' if the text properties match, color the item + If UCase(tn.Text).Contains(UCase(tsAppSearchString.Text)) Then + tn.BackColor = Color.Yellow + tn.EnsureVisible() 'Scroll the control to the item + End If + FindRecursive(tn) + Next + End If + End Sub + Private Sub ClearBackColor() + Dim nodes As TreeNodeCollection + nodes = AppTreeSelect.Nodes + Dim n As TreeNode + For Each n In nodes + ClearRecursive(n) + Next + End Sub + + Private Sub ClearRecursive(ByVal treeNode As TreeNode) + Dim tn As TreeNode + For Each tn In treeNode.Nodes + tn.BackColor = Color.White + ClearRecursive(tn) + Next + End Sub + + Private Sub tsAppTreeSearchPrev_Click(sender As Object, e As EventArgs) Handles tsAppTreeSearchPrev.Click + tsAppSearchString.Text = "" + ClearBackColor() + End Sub + + Private Sub tsAppSearchString_KeyDown(sender As Object, e As KeyEventArgs) Handles tsAppSearchString.KeyDown + If e.KeyCode = Keys.Enter Then + tsAppTreeSearchSearch_Click(sender, e) + End If + End Sub + + Private Sub ToolStripButton1_Click_2(sender As Object, e As EventArgs) Handles tsappabhaengigkeitneu.Click + NeuerEintragToolStripMenuItem_Click(sender, e) + End Sub + + Private Sub tsAppAbhaengigkeit_Export_Click(sender As Object, e As EventArgs) Handles tsAppAbhaengigkeit_Export.Click + 'Dim xls As New XLSLib.clsXLSLib + 'xls.Write_Excel(Applikation.dtab1, True) + Dim tdt As New DataTable + tdt = Me.Applikation.dtab1.Copy + + tdt = Applikation.Abhaengigkeiten(5, Me.Aktuelle_Applikation, "", "") + Cursor = Cursors.WaitCursor + Dim fn As String = System.IO.Path.GetRandomFileName + fn = fn.Substring(0, Len(fn) - 4) + fn = Globals.clsapplication.sTmp_filepath + "" + fn + "" + Dim fnn As String = fn + ".xlsx" + Me.DatatableToExcel(tdt, fnn) + Cursor = Cursors.Default + End Sub + Public Shared Function DatatableToExcel(ByVal aDataTable As DataTable, ByVal aOutputFilename As String) As Boolean + Application.DoEvents() + 'Dim f As New FrmFortschritt + Dim app As New Object + Dim wb As New Object + Dim ws As New Object + Try + ' f.Show() + Application.DoEvents() + ' f.ProgressBar1.Minimum = 0 + ' f.ProgressBar1.Maximum = aDataTable.Rows.Count + app = CreateObject("Excel.application") + 'Dim wb As Object + 'Dim ws As Object + ' Dim app As New Excel.ApplicationClass + ' Dim wb As Excel.Workbook + ' Dim ws As Excel.Worksheet + wb = app.Workbooks.add() + 'wb = app.Workbooks.Add() + ws = wb.ActiveSheet() + Dim dc As DataColumn + Dim dr As DataRow + Dim colIndex As Integer + Dim rowIndex As Integer + ' Columns erstellen + For Each dc In aDataTable.Columns + colIndex += 1 + app.Cells(1, colIndex) = dc.ColumnName + Next + ' Rows hinzufügen + For Each dr In aDataTable.Rows + ' f.ProgressBar1.Value = rowIndex + rowIndex += 1 + colIndex = 0 + For Each dc In aDataTable.Columns + colIndex += 1 + Try + app.Cells(rowIndex + 1, colIndex) = dr(dc.ColumnName) + Catch ex As Exception + Dim s As String = dr(dc.ColumnName) + s = "'" + s + Try + app.Cells(rowIndex + 1, colIndex) = s + Catch ex1 As Exception + app.Cells(rowIndex + 1, colIndex) = "'* Text beim Export entfernt" + End Try + End Try + Next + Next + ws.Columns.AutoFit() + wb.SaveAs(aOutputFilename) + app.Workbooks.Open(aOutputFilename) + ' Excel anzeigen wenn fertig exportiert + app.Visible = True + ws = Nothing + wb = Nothing + app = Nothing + + 'f.Close() + Return True + Catch ex As Exception + 'f.Close() + MsgBox(ex.Message) + End Try + + + End Function + + Private Sub BemerkungToolStripMenuItem_Click(sender As Object, e As EventArgs) Handles BemerkungToolStripMenuItem.Click + Dim s As String + s = Me.C1Applikationsabhaengigkeiten.Columns("Bemerkung").Value + Dim f As New frmBemerkung + f.TextBox1.Text = s + f.ShowDialog() + If f.DialogResult = DialogResult.OK Then + Me.Applikation.Abhaengigkeiten(6, f.TextBox1.Text, Me.C1Applikationsabhaengigkeiten.Columns("ID").Value, Globals.clsmitarbeiter.iMitarbeiternr.Value) + Me.refresh_Applikationsabhaengigkeiten() + End If + End Sub + + Private Sub ctxMenuAppAbhaengigVon_Opening(sender As Object, e As System.ComponentModel.CancelEventArgs) Handles ctxMenuAppAbhaengigVon.Opening + If Me.C1ApplikationAbhaengigVon.Splits(0).Rows.Count < 1 Then ApplikationsdetailsToolStripMenuItem.Enabled = False Else ApplikationsdetailsToolStripMenuItem.Enabled = True + End Sub + + Private Sub ctxmenuAbhaengigkeiten_Opening(sender As Object, e As System.ComponentModel.CancelEventArgs) Handles ctxmenuAbhaengigkeiten.Opening + If Me.C1Applikationsabhaengigkeiten.Splits(0).Rows.Count < 1 Then + 'NeuerEintragToolStripMenuItem.Enabled = False + EintragLöschenToolStripMenuItem.Enabled = False + BemerkungToolStripMenuItem.Enabled = False + ApplikatioinsdetailsToolStripMenuItem.Enabled = False + Else + 'NeuerEintragToolStripMenuItem.Enabled = True + EintragLöschenToolStripMenuItem.Enabled = True + BemerkungToolStripMenuItem.Enabled = True + ApplikatioinsdetailsToolStripMenuItem.Enabled = True + End If + End Sub +#End Region End Class \ No newline at end of file diff --git a/Vertragsverwaltung/Diverse Formulare/frmBemerkung.Designer.vb b/Vertragsverwaltung/Diverse Formulare/frmBemerkung.Designer.vb new file mode 100644 index 00000000..500fc708 --- /dev/null +++ b/Vertragsverwaltung/Diverse Formulare/frmBemerkung.Designer.vb @@ -0,0 +1,77 @@ + _ +Partial Class frmBemerkung + Inherits System.Windows.Forms.Form + + 'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen. + _ + 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. + _ + Private Sub InitializeComponent() + Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmBemerkung)) + Me.TextBox1 = New System.Windows.Forms.TextBox() + Me.Button1 = New System.Windows.Forms.Button() + Me.Button2 = New System.Windows.Forms.Button() + Me.SuspendLayout() + ' + 'TextBox1 + ' + Me.TextBox1.Dock = System.Windows.Forms.DockStyle.Top + Me.TextBox1.Location = New System.Drawing.Point(0, 0) + Me.TextBox1.Multiline = True + Me.TextBox1.Name = "TextBox1" + Me.TextBox1.Size = New System.Drawing.Size(466, 124) + Me.TextBox1.TabIndex = 0 + ' + 'Button1 + ' + Me.Button1.Location = New System.Drawing.Point(12, 130) + Me.Button1.Name = "Button1" + Me.Button1.Size = New System.Drawing.Size(75, 23) + Me.Button1.TabIndex = 1 + Me.Button1.Text = "Speichern" + Me.Button1.UseVisualStyleBackColor = True + ' + 'Button2 + ' + Me.Button2.Location = New System.Drawing.Point(379, 130) + Me.Button2.Name = "Button2" + Me.Button2.Size = New System.Drawing.Size(75, 23) + Me.Button2.TabIndex = 2 + Me.Button2.Text = "Abbruch" + Me.Button2.UseVisualStyleBackColor = True + ' + 'frmBemerkung + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(466, 163) + Me.Controls.Add(Me.Button2) + Me.Controls.Add(Me.Button1) + Me.Controls.Add(Me.TextBox1) + Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) + Me.Name = "frmBemerkung" + Me.Text = "Bemerkung" + Me.ResumeLayout(False) + Me.PerformLayout() + + End Sub + + Friend WithEvents TextBox1 As TextBox + Friend WithEvents Button1 As Button + Friend WithEvents Button2 As Button +End Class diff --git a/Vertragsverwaltung/Diverse Formulare/frmBemerkung.resx b/Vertragsverwaltung/Diverse Formulare/frmBemerkung.resx new file mode 100644 index 00000000..d993fcb4 --- /dev/null +++ b/Vertragsverwaltung/Diverse Formulare/frmBemerkung.resx @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + + AAABAAEAICAEAAAAAADoAgAAFgAAACgAAAAgAAAAQAAAAAEABAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDAwAAAAP8AAP8AAAD//wD/AAAA/wD/AP// + AAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAA + AAAAAAAAAAAAAAB/iIiIiIiIiIiIiIiIhAAAj////2////////+IiIYAAI////9v////////+IiGAACP + //////+I+H93d3d4hgAAj////2//////////iIYAAI////9v/4iId39/f3iGAACP////b//////////4 + hgAAj///////j4j3d3d3f4YAAI////9v//////////+GAACP////b/+I+Hd3f39/hgAAj////2////// + /////4YAAI///////4iId/f393+GAACP////b///////////hgAAj////2///////////4YAAI////9v + //////////+GAACP////////////////hgAAhm9mb2ZvZm9mb2ZvZoYAAI///////4iIiIiIiIiGAACP + //////+IiIiIiIiIhgAAj///////iIiIiIiIiIYAAIiIiHd3d3dmZmZmZmZmAACIiIiIiIiIiIiId3d3 + dgAAiIiIh3d3d3ZmZmZmZmYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD////////////////AAAADwAAAA8AA + AAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AA + AAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAP//////////////////////////w== + + + \ No newline at end of file diff --git a/Vertragsverwaltung/Diverse Formulare/frmBemerkung.vb b/Vertragsverwaltung/Diverse Formulare/frmBemerkung.vb new file mode 100644 index 00000000..cb0685f2 --- /dev/null +++ b/Vertragsverwaltung/Diverse Formulare/frmBemerkung.vb @@ -0,0 +1,11 @@ +Public Class frmBemerkung + Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click + DialogResult = DialogResult.OK + Me.Close() + End Sub + + Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click + DialogResult = DialogResult.Cancel + Me.Close() + End Sub +End Class \ No newline at end of file diff --git a/Vertragsverwaltung/Vertragsverwaltung.vbproj b/Vertragsverwaltung/Vertragsverwaltung.vbproj index 3d0c4307..b534ea5c 100644 --- a/Vertragsverwaltung/Vertragsverwaltung.vbproj +++ b/Vertragsverwaltung/Vertragsverwaltung.vbproj @@ -318,6 +318,12 @@ Form + + frmBemerkung.vb + + + Form + FrmExcelExport.vb @@ -868,6 +874,9 @@ Designer frmAbout.vb + + frmBemerkung.vb + FrmExcelExport.vb diff --git a/Vertragsverwaltung/bin/Debug/20211120_itsm.zip b/Vertragsverwaltung/bin/Debug/20211120_itsm.zip new file mode 100644 index 00000000..7fc6f8ad Binary files /dev/null and b/Vertragsverwaltung/bin/Debug/20211120_itsm.zip differ diff --git a/Vertragsverwaltung/bin/Debug/IT-Service-Management.exe b/Vertragsverwaltung/bin/Debug/IT-Service-Management.exe index d5e29f80..65048fac 100644 Binary files a/Vertragsverwaltung/bin/Debug/IT-Service-Management.exe and b/Vertragsverwaltung/bin/Debug/IT-Service-Management.exe differ diff --git a/Vertragsverwaltung/bin/Debug/IT-Service-Management.pdb b/Vertragsverwaltung/bin/Debug/IT-Service-Management.pdb index c168acc7..b75b32fe 100644 Binary files a/Vertragsverwaltung/bin/Debug/IT-Service-Management.pdb and b/Vertragsverwaltung/bin/Debug/IT-Service-Management.pdb differ diff --git a/Vertragsverwaltung/bin/Debug/LCDokumente.dll b/Vertragsverwaltung/bin/Debug/LCDokumente.dll index 6e45c7b7..65a72805 100644 Binary files a/Vertragsverwaltung/bin/Debug/LCDokumente.dll and b/Vertragsverwaltung/bin/Debug/LCDokumente.dll differ diff --git a/Vertragsverwaltung/bin/Debug/LCDokumente.pdb b/Vertragsverwaltung/bin/Debug/LCDokumente.pdb index cbefb204..7facae6c 100644 Binary files a/Vertragsverwaltung/bin/Debug/LCDokumente.pdb and b/Vertragsverwaltung/bin/Debug/LCDokumente.pdb differ diff --git a/Vertragsverwaltung/bin/Debug/System.Web.Services.dll b/Vertragsverwaltung/bin/Debug/System.Web.Services.dll index afb6418a..f3a6a8c1 100644 Binary files a/Vertragsverwaltung/bin/Debug/System.Web.Services.dll and b/Vertragsverwaltung/bin/Debug/System.Web.Services.dll differ diff --git a/Vertragsverwaltung/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Vertragsverwaltung/obj/Debug/DesignTimeResolveAssemblyReferences.cache index f35c699b..45112c90 100644 Binary files a/Vertragsverwaltung/obj/Debug/DesignTimeResolveAssemblyReferences.cache and b/Vertragsverwaltung/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Vertragsverwaltung/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Vertragsverwaltung/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 197104a2..fabcb77b 100644 Binary files a/Vertragsverwaltung/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/Vertragsverwaltung/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Vertragsverwaltung/obj/Debug/IT-Service-Management.exe b/Vertragsverwaltung/obj/Debug/IT-Service-Management.exe index d5e29f80..65048fac 100644 Binary files a/Vertragsverwaltung/obj/Debug/IT-Service-Management.exe and b/Vertragsverwaltung/obj/Debug/IT-Service-Management.exe differ diff --git a/Vertragsverwaltung/obj/Debug/IT-Service-Management.pdb b/Vertragsverwaltung/obj/Debug/IT-Service-Management.pdb index c168acc7..b75b32fe 100644 Binary files a/Vertragsverwaltung/obj/Debug/IT-Service-Management.pdb and b/Vertragsverwaltung/obj/Debug/IT-Service-Management.pdb differ diff --git a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.frmApplikation.resources b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.frmApplikation.resources index 4e8faa7a..2fe7d33e 100644 Binary files a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.frmApplikation.resources and b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.frmApplikation.resources differ diff --git a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.frmBemerkung.resources b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.frmBemerkung.resources new file mode 100644 index 00000000..c38b8f24 Binary files /dev/null and b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.frmBemerkung.resources differ diff --git a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.AssemblyReference.cache b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.AssemblyReference.cache new file mode 100644 index 00000000..e73e35f9 Binary files /dev/null and b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.AssemblyReference.cache differ diff --git a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.CoreCompileInputs.cache b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.CoreCompileInputs.cache index 4a456be0..b8d7d744 100644 --- a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.CoreCompileInputs.cache +++ b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.CoreCompileInputs.cache @@ -1 +1 @@ -e8105ed43925afa572b6ce7f4f0a147ada49bab8 +feb8aa713661dcc053d9612c86001e36ac203565 diff --git a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.FileListAbsolute.txt b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.FileListAbsolute.txt index b89dad7b..64ed0331 100644 --- a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.FileListAbsolute.txt +++ b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.FileListAbsolute.txt @@ -344,5 +344,6 @@ E:\Software-Projekte\ITSM\Vertragsverwaltung\bin\Debug\CrystalDecisions.Shared.d E:\Software-Projekte\ITSM\Vertragsverwaltung\bin\Debug\CrystalDecisions.ReportSource.dll E:\Software-Projekte\ITSM\Vertragsverwaltung\bin\Debug\Reporting20.dll.config E:\Software-Projekte\ITSM\Vertragsverwaltung\obj\Debug\Vertragsverwaltung.vbproj.CopyComplete -E:\Software-Projekte\ITSM\Vertragsverwaltung\obj\Debug\Vertragsverwaltung.vbprojAssemblyReference.cache E:\Software-Projekte\ITSM\Vertragsverwaltung\obj\Debug\Vertragsverwaltung.vbproj.CoreCompileInputs.cache +E:\Software-Projekte\ITSM\Vertragsverwaltung\obj\Debug\Vertragsverwaltung.vbproj.AssemblyReference.cache +E:\Software-Projekte\ITSM\Vertragsverwaltung\obj\Debug\Vertragsverwaltung.frmBemerkung.resources diff --git a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.GenerateResource.cache b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.GenerateResource.cache index ea3f518a..9d55c29c 100644 Binary files a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.GenerateResource.cache and b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbproj.GenerateResource.cache differ diff --git a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbprojAssemblyReference.cache b/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbprojAssemblyReference.cache deleted file mode 100644 index 326db6b9..00000000 Binary files a/Vertragsverwaltung/obj/Debug/Vertragsverwaltung.vbprojAssemblyReference.cache and /dev/null differ diff --git a/Vertragsverwaltung/obj/Debug/it-service-management.exe.licenses b/Vertragsverwaltung/obj/Debug/it-service-management.exe.licenses index 6f7b00ed..3c745c89 100644 Binary files a/Vertragsverwaltung/obj/Debug/it-service-management.exe.licenses and b/Vertragsverwaltung/obj/Debug/it-service-management.exe.licenses differ diff --git a/_KPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/_KPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index d9fd967f..d5ad6824 100644 Binary files a/_KPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/_KPI/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/_KPI/obj/Debug/_KPI.vbproj.AssemblyReference.cache b/_KPI/obj/Debug/_KPI.vbproj.AssemblyReference.cache new file mode 100644 index 00000000..474c36d2 Binary files /dev/null and b/_KPI/obj/Debug/_KPI.vbproj.AssemblyReference.cache differ diff --git a/_LCDokumente/bin/Debug/LCDokumente.dll b/_LCDokumente/bin/Debug/LCDokumente.dll index 6e45c7b7..65a72805 100644 Binary files a/_LCDokumente/bin/Debug/LCDokumente.dll and b/_LCDokumente/bin/Debug/LCDokumente.dll differ diff --git a/_LCDokumente/bin/Debug/LCDokumente.pdb b/_LCDokumente/bin/Debug/LCDokumente.pdb index cbefb204..7facae6c 100644 Binary files a/_LCDokumente/bin/Debug/LCDokumente.pdb and b/_LCDokumente/bin/Debug/LCDokumente.pdb differ diff --git a/_LCDokumente/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/_LCDokumente/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache index 37978b64..10d4aec4 100644 Binary files a/_LCDokumente/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and b/_LCDokumente/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/_LCDokumente/obj/Debug/LCDokumente.dll b/_LCDokumente/obj/Debug/LCDokumente.dll index 6e45c7b7..65a72805 100644 Binary files a/_LCDokumente/obj/Debug/LCDokumente.dll and b/_LCDokumente/obj/Debug/LCDokumente.dll differ diff --git a/_LCDokumente/obj/Debug/LCDokumente.pdb b/_LCDokumente/obj/Debug/LCDokumente.pdb index cbefb204..7facae6c 100644 Binary files a/_LCDokumente/obj/Debug/LCDokumente.pdb and b/_LCDokumente/obj/Debug/LCDokumente.pdb differ diff --git a/_LCDokumente/obj/Debug/LCDokumente.vbproj.AssemblyReference.cache b/_LCDokumente/obj/Debug/LCDokumente.vbproj.AssemblyReference.cache new file mode 100644 index 00000000..67593538 Binary files /dev/null and b/_LCDokumente/obj/Debug/LCDokumente.vbproj.AssemblyReference.cache differ diff --git a/_LCDokumente/obj/Debug/LCDokumente.vbproj.FileListAbsolute.txt b/_LCDokumente/obj/Debug/LCDokumente.vbproj.FileListAbsolute.txt index 5889a191..63d1e09d 100644 --- a/_LCDokumente/obj/Debug/LCDokumente.vbproj.FileListAbsolute.txt +++ b/_LCDokumente/obj/Debug/LCDokumente.vbproj.FileListAbsolute.txt @@ -10,5 +10,5 @@ E:\Software-Projekte\ITSM\_LCDokumente\obj\Debug\LCDokumente.dll E:\Software-Projekte\ITSM\_LCDokumente\obj\Debug\LCDokumente.xml E:\Software-Projekte\ITSM\_LCDokumente\obj\Debug\LCDokumente.pdb E:\Software-Projekte\ITSM\_LCDokumente\obj\Debug\LCDokumente.vbproj.CopyComplete -E:\Software-Projekte\ITSM\_LCDokumente\obj\Debug\LCDokumente.vbprojAssemblyReference.cache E:\Software-Projekte\ITSM\_LCDokumente\obj\Debug\LCDokumente.vbproj.CoreCompileInputs.cache +E:\Software-Projekte\ITSM\_LCDokumente\obj\Debug\LCDokumente.vbproj.AssemblyReference.cache diff --git a/_LCDokumente/obj/Debug/LCDokumente.vbprojAssemblyReference.cache b/_LCDokumente/obj/Debug/LCDokumente.vbprojAssemblyReference.cache deleted file mode 100644 index f32c8ef0..00000000 Binary files a/_LCDokumente/obj/Debug/LCDokumente.vbprojAssemblyReference.cache and /dev/null differ diff --git a/_LCDokumente/obj/Debug/lcdokumente.dll.licenses b/_LCDokumente/obj/Debug/lcdokumente.dll.licenses index c7cf5fb8..30054c83 100644 Binary files a/_LCDokumente/obj/Debug/lcdokumente.dll.licenses and b/_LCDokumente/obj/Debug/lcdokumente.dll.licenses differ