MS Release FillIDNexe
This commit is contained in:
parent
d3ef49ed83
commit
1b539bce13
@ -230,7 +230,8 @@ Public Class ClassParamRefresh
|
|||||||
ElseIf oMode.StartsWith("PM.ButtonExport2Folder_RootFolder") Then
|
ElseIf oMode.StartsWith("PM.ButtonExport2Folder_RootFolder") Then
|
||||||
Dim oAfterReplace = oMode.Replace("PM.ButtonExport2Folder_RootFolder=", "")
|
Dim oAfterReplace = oMode.Replace("PM.ButtonExport2Folder_RootFolder=", "")
|
||||||
ButtonExport2Folder_RootFolder = oAfterReplace
|
ButtonExport2Folder_RootFolder = oAfterReplace
|
||||||
|
ElseIf oMode = "MAINFORM_ALLOW_LOGFILES" Then
|
||||||
|
MAINFORM_CREATE_LOG_FILES = True
|
||||||
Else
|
Else
|
||||||
LOGGER.Info($"Wrong oMode: {oMode}")
|
LOGGER.Info($"Wrong oMode: {oMode}")
|
||||||
End If
|
End If
|
||||||
|
|||||||
@ -24,4 +24,5 @@
|
|||||||
Public Property WMSESSION_STARTSTOP_STARTUP As Boolean = False
|
Public Property WMSESSION_STARTSTOP_STARTUP As Boolean = False
|
||||||
|
|
||||||
Public Property SYS_LOCKED_MAINTENANCE As Boolean = False
|
Public Property SYS_LOCKED_MAINTENANCE As Boolean = False
|
||||||
|
Public Property MAINFORM_CREATE_LOG_FILES As Boolean = False
|
||||||
End Module
|
End Module
|
||||||
|
|||||||
@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("2.5.0.3")>
|
<Assembly: AssemblyVersion("2.5.1.0")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
<Assembly: NeutralResourcesLanguage("")>
|
<Assembly: NeutralResourcesLanguage("")>
|
||||||
|
|||||||
@ -372,6 +372,12 @@
|
|||||||
<Compile Include="frmColumn_Detail.vb">
|
<Compile Include="frmColumn_Detail.vb">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="frmDashboard1.Designer.vb">
|
||||||
|
<DependentUpon>frmDashboard1.vb</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="frmDashboard1.vb">
|
||||||
|
<SubType>Form</SubType>
|
||||||
|
</Compile>
|
||||||
<Compile Include="frmDesignerLayout.Designer.vb">
|
<Compile Include="frmDesignerLayout.Designer.vb">
|
||||||
<DependentUpon>frmDesignerLayout.vb</DependentUpon>
|
<DependentUpon>frmDesignerLayout.vb</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
@ -628,6 +634,9 @@
|
|||||||
<EmbeddedResource Include="frmColumn_Detail.resx">
|
<EmbeddedResource Include="frmColumn_Detail.resx">
|
||||||
<DependentUpon>frmColumn_Detail.vb</DependentUpon>
|
<DependentUpon>frmColumn_Detail.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
<EmbeddedResource Include="frmDashboard1.resx">
|
||||||
|
<DependentUpon>frmDashboard1.vb</DependentUpon>
|
||||||
|
</EmbeddedResource>
|
||||||
<EmbeddedResource Include="frmDesignerLayout.resx">
|
<EmbeddedResource Include="frmDesignerLayout.resx">
|
||||||
<DependentUpon>frmDesignerLayout.vb</DependentUpon>
|
<DependentUpon>frmDesignerLayout.vb</DependentUpon>
|
||||||
</EmbeddedResource>
|
</EmbeddedResource>
|
||||||
|
|||||||
@ -79,13 +79,16 @@ Public Class clsPatterns
|
|||||||
|
|
||||||
LOGGER.Debug($"input BEFORE replacing: [{result}]")
|
LOGGER.Debug($"input BEFORE replacing: [{result}]")
|
||||||
result = ReplaceInternalValues(result)
|
result = ReplaceInternalValues(result)
|
||||||
result = ReplaceControlValues(result, panel, is_SQL)
|
|
||||||
If Not IsNothing(CURRENT_WMFILE) Then
|
If Not IsNothing(CURRENT_WMFILE) Then
|
||||||
result = ReplaceWindreamIndicies(result, CURRENT_WMFILE, is_SQL)
|
result = ReplaceWindreamIndicies(result, CURRENT_WMFILE, is_SQL)
|
||||||
End If
|
End If
|
||||||
If IDB_ACTIVE = True Then
|
If IDB_ACTIVE = True Then
|
||||||
result = ReplaceIDBAttributes(result, is_SQL)
|
result = ReplaceIDBAttributes(result, is_SQL)
|
||||||
End If
|
End If
|
||||||
|
'vorher hinter result = ReplaceInternalValues(result)
|
||||||
|
result = ReplaceControlValues(result, panel, is_SQL)
|
||||||
|
|
||||||
If Not IsNothing(result) Then
|
If Not IsNothing(result) Then
|
||||||
result = ReplaceUserValues(result)
|
result = ReplaceUserValues(result)
|
||||||
LOGGER.Debug($"input AFTER replacing: [{result}]")
|
LOGGER.Debug($"input AFTER replacing: [{result}]")
|
||||||
|
|||||||
231
app/TaskFlow/frmDashboard1.Designer.vb
generated
Normal file
231
app/TaskFlow/frmDashboard1.Designer.vb
generated
Normal file
@ -0,0 +1,231 @@
|
|||||||
|
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
||||||
|
Partial Class frmDashboard1
|
||||||
|
Inherits DevExpress.XtraEditors.XtraForm
|
||||||
|
|
||||||
|
'Form overrides dispose to clean up the component list.
|
||||||
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
||||||
|
Protected Overrides Sub Dispose(ByVal disposing As Boolean)
|
||||||
|
If disposing AndAlso components IsNot Nothing Then
|
||||||
|
components.Dispose()
|
||||||
|
End If
|
||||||
|
MyBase.Dispose(disposing)
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
'Required by the Windows Form Designer
|
||||||
|
Private components As System.ComponentModel.IContainer
|
||||||
|
|
||||||
|
'NOTE: The following procedure is required by the Windows Form Designer
|
||||||
|
'It can be modified using the Windows Form Designer.
|
||||||
|
'Do not modify it using the code editor.
|
||||||
|
<System.Diagnostics.DebuggerStepThrough()> _
|
||||||
|
Private Sub InitializeComponent()
|
||||||
|
Me.components = New System.ComponentModel.Container()
|
||||||
|
Dim TileItemElement1 As DevExpress.XtraEditors.TileItemElement = New DevExpress.XtraEditors.TileItemElement()
|
||||||
|
Dim TileItemElement2 As DevExpress.XtraEditors.TileItemElement = New DevExpress.XtraEditors.TileItemElement()
|
||||||
|
Dim TileItemElement3 As DevExpress.XtraEditors.TileItemElement = New DevExpress.XtraEditors.TileItemElement()
|
||||||
|
Me.TileBar1 = New DevExpress.XtraBars.Navigation.TileBar()
|
||||||
|
Me.TileBarGroup2 = New DevExpress.XtraBars.Navigation.TileBarGroup()
|
||||||
|
Me.TileBarItem1 = New DevExpress.XtraBars.Navigation.TileBarItem()
|
||||||
|
Me.TileBarItem2 = New DevExpress.XtraBars.Navigation.TileBarItem()
|
||||||
|
Me.TileBarGroup3 = New DevExpress.XtraBars.Navigation.TileBarGroup()
|
||||||
|
Me.TileBarItem3 = New DevExpress.XtraBars.Navigation.TileBarItem()
|
||||||
|
Me.NavigationPane1 = New DevExpress.XtraBars.Navigation.NavigationPane()
|
||||||
|
Me.NavigationPage1 = New DevExpress.XtraBars.Navigation.NavigationPage()
|
||||||
|
Me.NavigationPage2 = New DevExpress.XtraBars.Navigation.NavigationPage()
|
||||||
|
Me.RadialMenu1 = New DevExpress.XtraBars.Ribbon.RadialMenu(Me.components)
|
||||||
|
Me.BarManager1 = New DevExpress.XtraBars.BarManager(Me.components)
|
||||||
|
Me.barDockControlTop = New DevExpress.XtraBars.BarDockControl()
|
||||||
|
Me.barDockControlBottom = New DevExpress.XtraBars.BarDockControl()
|
||||||
|
Me.barDockControlLeft = New DevExpress.XtraBars.BarDockControl()
|
||||||
|
Me.barDockControlRight = New DevExpress.XtraBars.BarDockControl()
|
||||||
|
Me.BarButtonItem1 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
|
Me.BarButtonItem2 = New DevExpress.XtraBars.BarButtonItem()
|
||||||
|
CType(Me.NavigationPane1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.NavigationPane1.SuspendLayout()
|
||||||
|
CType(Me.RadialMenu1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.BarManager1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.SuspendLayout()
|
||||||
|
'
|
||||||
|
'TileBar1
|
||||||
|
'
|
||||||
|
Me.TileBar1.Dock = System.Windows.Forms.DockStyle.Top
|
||||||
|
Me.TileBar1.DropDownOptions.BeakColor = System.Drawing.Color.Empty
|
||||||
|
Me.TileBar1.Groups.Add(Me.TileBarGroup2)
|
||||||
|
Me.TileBar1.Groups.Add(Me.TileBarGroup3)
|
||||||
|
Me.TileBar1.Location = New System.Drawing.Point(0, 0)
|
||||||
|
Me.TileBar1.MaxId = 3
|
||||||
|
Me.TileBar1.Name = "TileBar1"
|
||||||
|
Me.TileBar1.ScrollMode = DevExpress.XtraEditors.TileControlScrollMode.ScrollButtons
|
||||||
|
Me.TileBar1.Size = New System.Drawing.Size(796, 133)
|
||||||
|
Me.TileBar1.TabIndex = 0
|
||||||
|
Me.TileBar1.Text = "TileBar1"
|
||||||
|
'
|
||||||
|
'TileBarGroup2
|
||||||
|
'
|
||||||
|
Me.TileBarGroup2.Items.Add(Me.TileBarItem1)
|
||||||
|
Me.TileBarGroup2.Items.Add(Me.TileBarItem2)
|
||||||
|
Me.TileBarGroup2.Name = "TileBarGroup2"
|
||||||
|
Me.TileBarGroup2.Text = "Gruppe 1"
|
||||||
|
'
|
||||||
|
'TileBarItem1
|
||||||
|
'
|
||||||
|
Me.TileBarItem1.DropDownOptions.BeakColor = System.Drawing.Color.Empty
|
||||||
|
TileItemElement1.Text = "TileBarItem1"
|
||||||
|
Me.TileBarItem1.Elements.Add(TileItemElement1)
|
||||||
|
Me.TileBarItem1.Id = 0
|
||||||
|
Me.TileBarItem1.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Medium
|
||||||
|
Me.TileBarItem1.Name = "TileBarItem1"
|
||||||
|
'
|
||||||
|
'TileBarItem2
|
||||||
|
'
|
||||||
|
Me.TileBarItem2.DropDownOptions.BeakColor = System.Drawing.Color.Empty
|
||||||
|
TileItemElement2.Text = "TileBarItem2"
|
||||||
|
Me.TileBarItem2.Elements.Add(TileItemElement2)
|
||||||
|
Me.TileBarItem2.Id = 1
|
||||||
|
Me.TileBarItem2.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Wide
|
||||||
|
Me.TileBarItem2.Name = "TileBarItem2"
|
||||||
|
'
|
||||||
|
'TileBarGroup3
|
||||||
|
'
|
||||||
|
Me.TileBarGroup3.Items.Add(Me.TileBarItem3)
|
||||||
|
Me.TileBarGroup3.Name = "TileBarGroup3"
|
||||||
|
Me.TileBarGroup3.Text = "Gruppe 2"
|
||||||
|
'
|
||||||
|
'TileBarItem3
|
||||||
|
'
|
||||||
|
Me.TileBarItem3.AppearanceItem.Normal.BackColor = System.Drawing.Color.DarkTurquoise
|
||||||
|
Me.TileBarItem3.AppearanceItem.Normal.Options.UseBackColor = True
|
||||||
|
Me.TileBarItem3.DropDownOptions.BeakColor = System.Drawing.Color.Empty
|
||||||
|
TileItemElement3.Text = "TileBarItem3"
|
||||||
|
Me.TileBarItem3.Elements.Add(TileItemElement3)
|
||||||
|
Me.TileBarItem3.Id = 2
|
||||||
|
Me.TileBarItem3.ItemSize = DevExpress.XtraBars.Navigation.TileBarItemSize.Medium
|
||||||
|
Me.TileBarItem3.Name = "TileBarItem3"
|
||||||
|
'
|
||||||
|
'NavigationPane1
|
||||||
|
'
|
||||||
|
Me.NavigationPane1.Controls.Add(Me.NavigationPage1)
|
||||||
|
Me.NavigationPane1.Controls.Add(Me.NavigationPage2)
|
||||||
|
Me.NavigationPane1.Dock = System.Windows.Forms.DockStyle.Bottom
|
||||||
|
Me.NavigationPane1.Location = New System.Drawing.Point(0, 343)
|
||||||
|
Me.NavigationPane1.Name = "NavigationPane1"
|
||||||
|
Me.NavigationPane1.Pages.AddRange(New DevExpress.XtraBars.Navigation.NavigationPageBase() {Me.NavigationPage1, Me.NavigationPage2})
|
||||||
|
Me.NavigationPane1.RegularSize = New System.Drawing.Size(796, 150)
|
||||||
|
Me.NavigationPane1.SelectedPage = Me.NavigationPage1
|
||||||
|
Me.NavigationPane1.Size = New System.Drawing.Size(796, 150)
|
||||||
|
Me.NavigationPane1.TabIndex = 1
|
||||||
|
Me.NavigationPane1.Text = "NavigationPane1"
|
||||||
|
'
|
||||||
|
'NavigationPage1
|
||||||
|
'
|
||||||
|
Me.NavigationPage1.Caption = "NavigationPage1"
|
||||||
|
Me.NavigationPage1.Name = "NavigationPage1"
|
||||||
|
Me.NavigationPage1.Size = New System.Drawing.Size(660, 77)
|
||||||
|
'
|
||||||
|
'NavigationPage2
|
||||||
|
'
|
||||||
|
Me.NavigationPage2.Caption = "NavigationPage2"
|
||||||
|
Me.NavigationPage2.Name = "NavigationPage2"
|
||||||
|
Me.NavigationPage2.PageText = "sdsdsd"
|
||||||
|
Me.NavigationPage2.Size = New System.Drawing.Size(660, 77)
|
||||||
|
'
|
||||||
|
'RadialMenu1
|
||||||
|
'
|
||||||
|
Me.RadialMenu1.LinksPersistInfo.AddRange(New DevExpress.XtraBars.LinkPersistInfo() {New DevExpress.XtraBars.LinkPersistInfo(Me.BarButtonItem1), New DevExpress.XtraBars.LinkPersistInfo(Me.BarButtonItem2)})
|
||||||
|
Me.RadialMenu1.Manager = Me.BarManager1
|
||||||
|
Me.RadialMenu1.Name = "RadialMenu1"
|
||||||
|
'
|
||||||
|
'BarManager1
|
||||||
|
'
|
||||||
|
Me.BarManager1.DockControls.Add(Me.barDockControlTop)
|
||||||
|
Me.BarManager1.DockControls.Add(Me.barDockControlBottom)
|
||||||
|
Me.BarManager1.DockControls.Add(Me.barDockControlLeft)
|
||||||
|
Me.BarManager1.DockControls.Add(Me.barDockControlRight)
|
||||||
|
Me.BarManager1.Form = Me
|
||||||
|
Me.BarManager1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.BarButtonItem1, Me.BarButtonItem2})
|
||||||
|
Me.BarManager1.MaxItemId = 2
|
||||||
|
'
|
||||||
|
'barDockControlTop
|
||||||
|
'
|
||||||
|
Me.barDockControlTop.CausesValidation = False
|
||||||
|
Me.barDockControlTop.Dock = System.Windows.Forms.DockStyle.Top
|
||||||
|
Me.barDockControlTop.Location = New System.Drawing.Point(0, 0)
|
||||||
|
Me.barDockControlTop.Manager = Me.BarManager1
|
||||||
|
Me.barDockControlTop.Size = New System.Drawing.Size(796, 0)
|
||||||
|
'
|
||||||
|
'barDockControlBottom
|
||||||
|
'
|
||||||
|
Me.barDockControlBottom.CausesValidation = False
|
||||||
|
Me.barDockControlBottom.Dock = System.Windows.Forms.DockStyle.Bottom
|
||||||
|
Me.barDockControlBottom.Location = New System.Drawing.Point(0, 493)
|
||||||
|
Me.barDockControlBottom.Manager = Me.BarManager1
|
||||||
|
Me.barDockControlBottom.Size = New System.Drawing.Size(796, 0)
|
||||||
|
'
|
||||||
|
'barDockControlLeft
|
||||||
|
'
|
||||||
|
Me.barDockControlLeft.CausesValidation = False
|
||||||
|
Me.barDockControlLeft.Dock = System.Windows.Forms.DockStyle.Left
|
||||||
|
Me.barDockControlLeft.Location = New System.Drawing.Point(0, 0)
|
||||||
|
Me.barDockControlLeft.Manager = Me.BarManager1
|
||||||
|
Me.barDockControlLeft.Size = New System.Drawing.Size(0, 493)
|
||||||
|
'
|
||||||
|
'barDockControlRight
|
||||||
|
'
|
||||||
|
Me.barDockControlRight.CausesValidation = False
|
||||||
|
Me.barDockControlRight.Dock = System.Windows.Forms.DockStyle.Right
|
||||||
|
Me.barDockControlRight.Location = New System.Drawing.Point(796, 0)
|
||||||
|
Me.barDockControlRight.Manager = Me.BarManager1
|
||||||
|
Me.barDockControlRight.Size = New System.Drawing.Size(0, 493)
|
||||||
|
'
|
||||||
|
'BarButtonItem1
|
||||||
|
'
|
||||||
|
Me.BarButtonItem1.Caption = "BarButtonItem1"
|
||||||
|
Me.BarButtonItem1.Id = 0
|
||||||
|
Me.BarButtonItem1.Name = "BarButtonItem1"
|
||||||
|
'
|
||||||
|
'BarButtonItem2
|
||||||
|
'
|
||||||
|
Me.BarButtonItem2.Caption = "BarButtonItem2"
|
||||||
|
Me.BarButtonItem2.Id = 1
|
||||||
|
Me.BarButtonItem2.Name = "BarButtonItem2"
|
||||||
|
'
|
||||||
|
'frmDashboard1
|
||||||
|
'
|
||||||
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
|
||||||
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
|
Me.ClientSize = New System.Drawing.Size(796, 493)
|
||||||
|
Me.Controls.Add(Me.NavigationPane1)
|
||||||
|
Me.Controls.Add(Me.TileBar1)
|
||||||
|
Me.Controls.Add(Me.barDockControlLeft)
|
||||||
|
Me.Controls.Add(Me.barDockControlRight)
|
||||||
|
Me.Controls.Add(Me.barDockControlBottom)
|
||||||
|
Me.Controls.Add(Me.barDockControlTop)
|
||||||
|
Me.Name = "frmDashboard1"
|
||||||
|
Me.Text = "frmDashboard1"
|
||||||
|
CType(Me.NavigationPane1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.NavigationPane1.ResumeLayout(False)
|
||||||
|
CType(Me.RadialMenu1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.BarManager1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.ResumeLayout(False)
|
||||||
|
Me.PerformLayout()
|
||||||
|
|
||||||
|
End Sub
|
||||||
|
|
||||||
|
Friend WithEvents TileBar1 As DevExpress.XtraBars.Navigation.TileBar
|
||||||
|
Friend WithEvents TileBarGroup2 As DevExpress.XtraBars.Navigation.TileBarGroup
|
||||||
|
Friend WithEvents TileBarItem1 As DevExpress.XtraBars.Navigation.TileBarItem
|
||||||
|
Friend WithEvents TileBarItem2 As DevExpress.XtraBars.Navigation.TileBarItem
|
||||||
|
Friend WithEvents TileBarGroup3 As DevExpress.XtraBars.Navigation.TileBarGroup
|
||||||
|
Friend WithEvents TileBarItem3 As DevExpress.XtraBars.Navigation.TileBarItem
|
||||||
|
Friend WithEvents NavigationPane1 As DevExpress.XtraBars.Navigation.NavigationPane
|
||||||
|
Friend WithEvents NavigationPage1 As DevExpress.XtraBars.Navigation.NavigationPage
|
||||||
|
Friend WithEvents NavigationPage2 As DevExpress.XtraBars.Navigation.NavigationPage
|
||||||
|
Friend WithEvents RadialMenu1 As DevExpress.XtraBars.Ribbon.RadialMenu
|
||||||
|
Friend WithEvents BarButtonItem1 As DevExpress.XtraBars.BarButtonItem
|
||||||
|
Friend WithEvents BarButtonItem2 As DevExpress.XtraBars.BarButtonItem
|
||||||
|
Friend WithEvents BarManager1 As DevExpress.XtraBars.BarManager
|
||||||
|
Friend WithEvents barDockControlTop As DevExpress.XtraBars.BarDockControl
|
||||||
|
Friend WithEvents barDockControlBottom As DevExpress.XtraBars.BarDockControl
|
||||||
|
Friend WithEvents barDockControlLeft As DevExpress.XtraBars.BarDockControl
|
||||||
|
Friend WithEvents barDockControlRight As DevExpress.XtraBars.BarDockControl
|
||||||
|
End Class
|
||||||
126
app/TaskFlow/frmDashboard1.resx
Normal file
126
app/TaskFlow/frmDashboard1.resx
Normal file
@ -0,0 +1,126 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<metadata name="RadialMenu1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>17, 17</value>
|
||||||
|
</metadata>
|
||||||
|
<metadata name="BarManager1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||||
|
<value>140, 17</value>
|
||||||
|
</metadata>
|
||||||
|
</root>
|
||||||
3
app/TaskFlow/frmDashboard1.vb
Normal file
3
app/TaskFlow/frmDashboard1.vb
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
Public Class frmDashboard1
|
||||||
|
|
||||||
|
End Class
|
||||||
@ -125,7 +125,7 @@
|
|||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
|
||||||
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
|
||||||
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADw
|
ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADw
|
||||||
CAAAAk1TRnQBSQFMAgEBAgEAAQgBCwEIAQsBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
CAAAAk1TRnQBSQFMAgEBAgEAARABCwEQAQsBEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
|
||||||
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
|
||||||
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
|
||||||
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
|
||||||
@ -1278,7 +1278,7 @@
|
|||||||
<data name="bbtnitmLanguage_Change.Caption" xml:space="preserve">
|
<data name="bbtnitmLanguage_Change.Caption" xml:space="preserve">
|
||||||
<value>Sprache ändern</value>
|
<value>Sprache ändern</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="bbtnitmLanguage.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="bbtnitmLanguage_Change.ImageOptions.SvgImage" type="DevExpress.Utils.Svg.SvgImage, DevExpress.Data.v21.2" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
<value>
|
<value>
|
||||||
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
AAEAAAD/////AQAAAAAAAAAMAgAAAFlEZXZFeHByZXNzLkRhdGEudjIxLjIsIFZlcnNpb249MjEuMi40
|
||||||
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
LjAsIEN1bHR1cmU9bmV1dHJhbCwgUHVibGljS2V5VG9rZW49Yjg4ZDE3NTRkNzAwZTQ5YQUBAAAAHURl
|
||||||
|
|||||||
@ -478,6 +478,9 @@ Public Class frmMain
|
|||||||
Else
|
Else
|
||||||
RibbonPageGroupBasicConf.Visible = True
|
RibbonPageGroupBasicConf.Visible = True
|
||||||
End If
|
End If
|
||||||
|
If MAINFORM_CREATE_LOG_FILES = True Then
|
||||||
|
barbtnitmsaveLogfiles.Visibility = DevExpress.XtraBars.BarItemVisibility.Always
|
||||||
|
End If
|
||||||
If EXCEL_OVERVIEW = True Then
|
If EXCEL_OVERVIEW = True Then
|
||||||
BarButtonItemExportExcel.Visibility = DevExpress.XtraBars.BarItemVisibility.Always
|
BarButtonItemExportExcel.Visibility = DevExpress.XtraBars.BarItemVisibility.Always
|
||||||
Else
|
Else
|
||||||
@ -1939,7 +1942,7 @@ Public Class frmMain
|
|||||||
End If
|
End If
|
||||||
If oSQLOverview.ToString.Contains("GROUP_TEXT") = False Then
|
If oSQLOverview.ToString.Contains("GROUP_TEXT") = False Then
|
||||||
LOGGER.Info($"SQL SO FAR: {oSQLOverview} ")
|
LOGGER.Info($"SQL SO FAR: {oSQLOverview} ")
|
||||||
FormHelper.ShowInfoMessage("Incomplete Overview-Source (No Group-Columns). Please reload manually!", omsgTitleWarning)
|
FormHelper.ShowInfoMessage("Incomplete Overview-Source (No Group-Columns). Column", omsgTitleWarning)
|
||||||
|
|
||||||
NO_WORKFLOWITEMS = True
|
NO_WORKFLOWITEMS = True
|
||||||
GridControlWorkflows.Visible = False
|
GridControlWorkflows.Visible = False
|
||||||
@ -2452,6 +2455,10 @@ FROM VWPM_PROFILE_ACTIVE T WHERE T.GUID IN (SELECT PROFILE_ID FROM [dbo].[FNPM_G
|
|||||||
oStopWatch.Done()
|
oStopWatch.Done()
|
||||||
End Sub
|
End Sub
|
||||||
Private Async Sub frmMain_Shown(sender As Object, e As EventArgs) Handles Me.Shown
|
Private Async Sub frmMain_Shown(sender As Object, e As EventArgs) Handles Me.Shown
|
||||||
|
If USER_USERNAME = "SchreiberM" Then
|
||||||
|
frmDashboard1.Show()
|
||||||
|
End If '
|
||||||
|
|
||||||
If RIBBON_COLOR_SCHEME <> "" Then
|
If RIBBON_COLOR_SCHEME <> "" Then
|
||||||
Me.LookAndFeel.UseDefaultLookAndFeel = False
|
Me.LookAndFeel.UseDefaultLookAndFeel = False
|
||||||
If RIBBON_COLOR_SCHEME = "Blue".ToUpper Then
|
If RIBBON_COLOR_SCHEME = "Blue".ToUpper Then
|
||||||
|
|||||||
@ -690,7 +690,7 @@ Public Class frmValidator
|
|||||||
Dim name As String = row.Item("NAME")
|
Dim name As String = row.Item("NAME")
|
||||||
Dim oGUID As String = row.Item("GUID")
|
Dim oGUID As String = row.Item("GUID")
|
||||||
Dim oReadOnly As Boolean = row.Item("READ_ONLY")
|
Dim oReadOnly As Boolean = row.Item("READ_ONLY")
|
||||||
|
Logger.Debug($"LoadSQLData for Control [{name}] with GUID [{oGUID}] ...")
|
||||||
'If clsPatterns.HasComplexPatterns(row.Item("SQL_UEBERPRUEFUNG")) Then
|
'If clsPatterns.HasComplexPatterns(row.Item("SQL_UEBERPRUEFUNG")) Then
|
||||||
' Logger.Debug($"SQL [{row.Item("SQL_UEBERPRUEFUNG")}] has complex patterns - GUID: {oGUID}")
|
' Logger.Debug($"SQL [{row.Item("SQL_UEBERPRUEFUNG")}] has complex patterns - GUID: {oGUID}")
|
||||||
' Continue For
|
' Continue For
|
||||||
@ -2674,12 +2674,12 @@ Public Class frmValidator
|
|||||||
End If
|
End If
|
||||||
End If
|
End If
|
||||||
|
|
||||||
'FillIndexValues(first)
|
FillIndexValues(first)
|
||||||
|
|
||||||
For Each oControl As Control In PanelValidatorControl.Controls
|
For Each oControl As Control In PanelValidatorControl.Controls
|
||||||
LoadSQLData(oControl, DirectCast(oControl.Tag, ClassControlCreator.ControlMetadata).Guid)
|
LoadSQLData(oControl, DirectCast(oControl.Tag, ClassControlCreator.ControlMetadata).Guid)
|
||||||
Next
|
Next
|
||||||
FillIndexValues(first)
|
|
||||||
Logger.Debug("Indexmask loaded")
|
Logger.Debug("Indexmask loaded")
|
||||||
|
|
||||||
'Nun loggen das das Profil geladen wurde
|
'Nun loggen das das Profil geladen wurde
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user