Merge branch 'master' of http://dd-vmp07-com04:3000/AppStd/ProcessManager_Client
This commit is contained in:
commit
7cc15a1349
@ -5,8 +5,6 @@ VisualStudioVersion = 16.0.29728.190
|
|||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "DD_PM_WINDREAM", "DD_PM_WINDREAM\DD_PM_WINDREAM.vbproj", "{6ACA1432-09A2-47EF-A704-C0AA73905756}"
|
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "DD_PM_WINDREAM", "DD_PM_WINDREAM\DD_PM_WINDREAM.vbproj", "{6ACA1432-09A2-47EF-A704-C0AA73905756}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "Setup", "Setup\Setup.wixproj", "{E714688A-5E3D-4229-9645-9FB650139B47}"
|
|
||||||
EndProject
|
|
||||||
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "SetupVS19", "SetupVS19\SetupVS19.wixproj", "{11F40F86-5DF6-4279-BDF3-17AD8B93AE7C}"
|
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "SetupVS19", "SetupVS19\SetupVS19.wixproj", "{11F40F86-5DF6-4279-BDF3-17AD8B93AE7C}"
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
@ -28,16 +26,6 @@ Global
|
|||||||
{6ACA1432-09A2-47EF-A704-C0AA73905756}.Release|x86.Build.0 = Release|x86
|
{6ACA1432-09A2-47EF-A704-C0AA73905756}.Release|x86.Build.0 = Release|x86
|
||||||
{6ACA1432-09A2-47EF-A704-C0AA73905756}.SingleImage|x86.ActiveCfg = Release|x86
|
{6ACA1432-09A2-47EF-A704-C0AA73905756}.SingleImage|x86.ActiveCfg = Release|x86
|
||||||
{6ACA1432-09A2-47EF-A704-C0AA73905756}.SingleImage|x86.Build.0 = Release|x86
|
{6ACA1432-09A2-47EF-A704-C0AA73905756}.SingleImage|x86.Build.0 = Release|x86
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.CD_ROM|x86.ActiveCfg = Release|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.CD_ROM|x86.Build.0 = Release|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.Debug|x86.ActiveCfg = Debug|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.Debug|x86.Build.0 = Debug|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.DVD-5|x86.ActiveCfg = Debug|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.DVD-5|x86.Build.0 = Debug|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.Release|x86.ActiveCfg = Release|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.Release|x86.Build.0 = Release|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.SingleImage|x86.ActiveCfg = Release|x86
|
|
||||||
{E714688A-5E3D-4229-9645-9FB650139B47}.SingleImage|x86.Build.0 = Release|x86
|
|
||||||
{11F40F86-5DF6-4279-BDF3-17AD8B93AE7C}.CD_ROM|x86.ActiveCfg = Release|x86
|
{11F40F86-5DF6-4279-BDF3-17AD8B93AE7C}.CD_ROM|x86.ActiveCfg = Release|x86
|
||||||
{11F40F86-5DF6-4279-BDF3-17AD8B93AE7C}.CD_ROM|x86.Build.0 = Release|x86
|
{11F40F86-5DF6-4279-BDF3-17AD8B93AE7C}.CD_ROM|x86.Build.0 = Release|x86
|
||||||
{11F40F86-5DF6-4279-BDF3-17AD8B93AE7C}.Debug|x86.ActiveCfg = Debug|x86
|
{11F40F86-5DF6-4279-BDF3-17AD8B93AE7C}.Debug|x86.ActiveCfg = Debug|x86
|
||||||
|
|||||||
@ -489,12 +489,19 @@ Public Class ClassControlCreator
|
|||||||
|
|
||||||
Next
|
Next
|
||||||
|
|
||||||
|
oView.PopulateColumns(oDatatable)
|
||||||
oView.PopulateColumns()
|
|
||||||
oControl.DataSource = oDatatable
|
oControl.DataSource = oDatatable
|
||||||
oControl.RefreshDataSource()
|
oControl.RefreshDataSource()
|
||||||
oControl.ForceInitialize()
|
oControl.ForceInitialize()
|
||||||
|
|
||||||
|
For Each oCol As GridColumn In oView.Columns
|
||||||
|
Dim oColumnData As DataRow = DT_MY_COLUMNS.Select($"SPALTENNAME = '{oCol.FieldName}'").FirstOrDefault()
|
||||||
|
If oColumnData Is Nothing Then
|
||||||
|
Dim oSequence As Integer = oColumnData.Item("SEQUENCE")
|
||||||
|
oCol.VisibleIndex = oSequence
|
||||||
|
End If
|
||||||
|
Next
|
||||||
|
|
||||||
AddHandler oView.CustomRowCellEdit, Sub(sender As Object, e As CustomRowCellEditEventArgs)
|
AddHandler oView.CustomRowCellEdit, Sub(sender As Object, e As CustomRowCellEditEventArgs)
|
||||||
For Each oRow As DataRow In DT_MY_COLUMNS.Rows
|
For Each oRow As DataRow In DT_MY_COLUMNS.Rows
|
||||||
If oRow.Item("SPALTENNAME") = e.Column.FieldName Then
|
If oRow.Item("SPALTENNAME") = e.Column.FieldName Then
|
||||||
@ -540,36 +547,36 @@ Public Class ClassControlCreator
|
|||||||
Next
|
Next
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
AddHandler oView.CellValueChanged, Sub(ByVal sender As Object, ByVal e As DevExpress.XtraGrid.Views.Base.CellValueChangedEventArgs)
|
|
||||||
Console.WriteLine("")
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
AddHandler oView.ValidateRow, Sub(sender As Object, e As ValidateRowEventArgs)
|
AddHandler oView.ValidateRow, Sub(sender As Object, e As ValidateRowEventArgs)
|
||||||
Console.WriteLine("")
|
Dim oRow As DataRowView = oView.GetRow(oView.FocusedRowHandle)
|
||||||
|
|
||||||
|
For Each oCol As DataColumn In oRow.DataView.Table.Columns
|
||||||
|
Dim oColumn As DataRow = (From r As DataRow In DT_MY_COLUMNS.Rows
|
||||||
|
Where r.Item("SPALTENNAME") = oCol.ColumnName
|
||||||
|
Select r).FirstOrDefault()
|
||||||
|
|
||||||
|
Dim oIsRequired = oColumn.Item("VALIDATION")
|
||||||
|
Dim oValue = NotNull(oView.GetRowCellValue(e.RowHandle, oCol.ColumnName), "")
|
||||||
|
|
||||||
|
If oIsRequired And oValue = "" Then
|
||||||
|
e.Valid = False
|
||||||
|
e.ErrorText = $"Spalte {oColumn.Item("SPALTEN_HEADER")} muss ausgefüllt werden!"
|
||||||
|
Exit For
|
||||||
|
End If
|
||||||
|
Next
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
AddHandler oView.InvalidRowException, Sub(sender As Object, e As InvalidRowExceptionEventArgs)
|
||||||
|
e.ExceptionMode = ExceptionMode.DisplayError
|
||||||
|
End Sub
|
||||||
|
|
||||||
AddHandler oView.ValidatingEditor, Sub(sender As Object, e As BaseContainerValidateEditorEventArgs)
|
AddHandler oView.ValidatingEditor, Sub(sender As Object, e As BaseContainerValidateEditorEventArgs)
|
||||||
Dim oRow As DataRowView = oView.GetRow(oView.FocusedRowHandle)
|
Dim oValue As String = NotNull(e.Value, "")
|
||||||
|
|
||||||
For Each oCol As DataColumn In oRow.DataView.Table.Columns
|
If oValue.Contains(" | ") Then
|
||||||
Dim oColumn As DataRow = (From r As DataRow In DT_MY_COLUMNS.Rows
|
oValue = oValue.Split(" | ").ToList().First()
|
||||||
Where r.Item("SPALTENNAME") = oCol.ColumnName
|
e.Value = oValue
|
||||||
Select r).FirstOrDefault()
|
End If
|
||||||
|
|
||||||
Dim oIsRequired = oColumn.Item("VALIDATION")
|
|
||||||
Dim oValue As String = NotNull(e.Value, "")
|
|
||||||
|
|
||||||
If oValue.contains(" | ") Then
|
|
||||||
oValue = oValue.Split(" | ").ToList().First()
|
|
||||||
e.Value = oValue
|
|
||||||
End If
|
|
||||||
|
|
||||||
If oIsRequired And oValue = "" Then
|
|
||||||
e.Valid = False
|
|
||||||
e.ErrorText = $"Spalte {oColumn.Item("SPALTEN_HEADER")} muss ausgefüllt werden!"
|
|
||||||
Exit For
|
|
||||||
End If
|
|
||||||
Next
|
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Return oControl
|
Return oControl
|
||||||
|
|||||||
@ -1,56 +0,0 @@
|
|||||||
Public Class ClassSnapPanelNew
|
|
||||||
Inherits System.Windows.Forms.Panel
|
|
||||||
|
|
||||||
Private _ShowGrid As Boolean = True
|
|
||||||
Private _GridSize As Integer = 16
|
|
||||||
|
|
||||||
Private Property AutoScaleMode As AutoScaleMode
|
|
||||||
|
|
||||||
Public Property GridSize As Integer
|
|
||||||
Get
|
|
||||||
Return _GridSize
|
|
||||||
End Get
|
|
||||||
Set(value As Integer)
|
|
||||||
_GridSize = value
|
|
||||||
Refresh()
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Public Property ShowGrid As Boolean
|
|
||||||
Get
|
|
||||||
Return _ShowGrid
|
|
||||||
End Get
|
|
||||||
Set(value As Boolean)
|
|
||||||
_ShowGrid = value
|
|
||||||
Refresh()
|
|
||||||
End Set
|
|
||||||
End Property
|
|
||||||
|
|
||||||
Protected Overrides Sub OnControlAdded(e As System.Windows.Forms.ControlEventArgs)
|
|
||||||
AddHandler e.Control.LocationChanged, AddressOf AlignToGrid
|
|
||||||
AddHandler e.Control.DragDrop, AddressOf AlignToGrid
|
|
||||||
MyBase.OnControlAdded(e)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Protected Overrides Sub OnControlRemoved(e As System.Windows.Forms.ControlEventArgs)
|
|
||||||
RemoveHandler e.Control.LocationChanged, AddressOf AlignToGrid
|
|
||||||
RemoveHandler e.Control.DragDrop, AddressOf AlignToGrid
|
|
||||||
MyBase.OnControlRemoved(e)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Protected Overrides Sub OnPaint(e As System.Windows.Forms.PaintEventArgs)
|
|
||||||
If _ShowGrid Then
|
|
||||||
ControlPaint.DrawGrid(e.Graphics, ClientRectangle, New Size(_GridSize, _GridSize), BackColor)
|
|
||||||
End If
|
|
||||||
MyBase.OnPaint(e)
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Private Sub AlignToGrid(sender As Object, e As EventArgs)
|
|
||||||
If _ShowGrid Then
|
|
||||||
Dim item As Control = CType(sender, Control)
|
|
||||||
Dim x As Integer = Math.Round(item.Left / _GridSize) * _GridSize
|
|
||||||
Dim y As Integer = Math.Round(item.Top / _GridSize) * _GridSize
|
|
||||||
item.Location = New Point(x, y)
|
|
||||||
End If
|
|
||||||
End Sub
|
|
||||||
End Class
|
|
||||||
@ -156,6 +156,9 @@
|
|||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>..\..\..\DDMonorepo\Controls.LookupGrid\bin\Debug\DigitalData.Controls.LookupGrid.dll</HintPath>
|
<HintPath>..\..\..\DDMonorepo\Controls.LookupGrid\bin\Debug\DigitalData.Controls.LookupGrid.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="DigitalData.Controls.SnapPanel">
|
||||||
|
<HintPath>..\..\..\DDMonorepo\Controls.SnapPanel\bin\Debug\DigitalData.Controls.SnapPanel.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="DigitalData.Modules.Config">
|
<Reference Include="DigitalData.Modules.Config">
|
||||||
<HintPath>..\..\..\DDMonorepo\Modules.Config\bin\Debug\DigitalData.Modules.Config.dll</HintPath>
|
<HintPath>..\..\..\DDMonorepo\Modules.Config\bin\Debug\DigitalData.Modules.Config.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
@ -263,9 +266,6 @@
|
|||||||
<Compile Include="ClassSnapPanel.vb">
|
<Compile Include="ClassSnapPanel.vb">
|
||||||
<SubType>Component</SubType>
|
<SubType>Component</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="ClassSnapPanelNew.vb">
|
|
||||||
<SubType>Component</SubType>
|
|
||||||
</Compile>
|
|
||||||
<Compile Include="ClassSQLEditor.vb" />
|
<Compile Include="ClassSQLEditor.vb" />
|
||||||
<Compile Include="ClassSQLTypeConverter.vb" />
|
<Compile Include="ClassSQLTypeConverter.vb" />
|
||||||
<Compile Include="ClassSQLValue.vb" />
|
<Compile Include="ClassSQLValue.vb" />
|
||||||
|
|||||||
@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
|
|||||||
<Assembly: AssemblyCompany("Digital Data")>
|
<Assembly: AssemblyCompany("Digital Data")>
|
||||||
<Assembly: AssemblyProduct("Process Manager")>
|
<Assembly: AssemblyProduct("Process Manager")>
|
||||||
<Assembly: AssemblyCopyright("Copyright © Digital Data 2021")>
|
<Assembly: AssemblyCopyright("Copyright © Digital Data 2021")>
|
||||||
<Assembly: AssemblyTrademark("2170")>
|
<Assembly: AssemblyTrademark("2190")>
|
||||||
|
|
||||||
<Assembly: ComVisible(False)>
|
<Assembly: ComVisible(False)>
|
||||||
|
|
||||||
@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("2.1.8.0")>
|
<Assembly: AssemblyVersion("2.1.9.0")>
|
||||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||||
|
|||||||
@ -1,16 +1,18 @@
|
|||||||
DevExpress.XtraEditors.CheckEdit, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraVerticalGrid.PropertyGridControl, DevExpress.XtraVerticalGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraCharts.ChartControl, DevExpress.XtraCharts.v19.2.UI, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraEditors.ComboBoxEdit, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
DevExpress.XtraEditors.ComboBoxEdit, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
DevExpress.XtraBars.BarManager, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraEditors.TextEdit, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraDataLayout.DataLayoutControl, DevExpress.XtraLayout.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraNavBar.NavBarControl, DevExpress.XtraNavBar.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraEditors.Repository.RepositoryItemComboBox, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraPrinting.Preview.DocumentViewer, DevExpress.XtraPrinting.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraEditors.DateEdit, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
|
||||||
DevExpress.XtraLayout.LayoutControl, DevExpress.XtraLayout.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
DevExpress.XtraLayout.LayoutControl, DevExpress.XtraLayout.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraEditors.TextEdit, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraBars.BarManager, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraEditors.CheckEdit, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraCharts.ChartControl, DevExpress.XtraCharts.v19.2.UI, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraNavBar.NavBarControl, DevExpress.XtraNavBar.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.Snap.Extensions.SnapDockManager, DevExpress.Snap.v19.2.Extensions, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
DevExpress.XtraEditors.Repository.RepositoryItemProgressBar, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
DevExpress.XtraEditors.Repository.RepositoryItemProgressBar, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.Snap.SnapControl, DevExpress.Snap.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
DevExpress.XtraBars.Ribbon.RibbonControl, DevExpress.XtraBars.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraVerticalGrid.PropertyGridControl, DevExpress.XtraVerticalGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraEditors.Repository.RepositoryItemComboBox, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraEditors.DateEdit, DevExpress.XtraEditors.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
DevExpress.XtraGrid.GridControl, DevExpress.XtraGrid.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraDataLayout.DataLayoutControl, DevExpress.XtraLayout.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraReports.UI.XtraReport, DevExpress.XtraReports.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
DevExpress.XtraPrinting.Preview.DocumentViewer, DevExpress.XtraPrinting.v19.2, Version=19.2.3.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a
|
||||||
|
|||||||
@ -577,6 +577,9 @@
|
|||||||
<data name=">>ADVANCED_LOOKUPCheckbox.ZOrder" xml:space="preserve">
|
<data name=">>ADVANCED_LOOKUPCheckbox.ZOrder" xml:space="preserve">
|
||||||
<value>20</value>
|
<value>20</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="DEFAULTVALUETextBox.Enabled" type="System.Boolean, mscorlib">
|
||||||
|
<value>False</value>
|
||||||
|
</data>
|
||||||
<data name="DEFAULTVALUETextBox.Location" type="System.Drawing.Point, System.Drawing">
|
<data name="DEFAULTVALUETextBox.Location" type="System.Drawing.Point, System.Drawing">
|
||||||
<value>126, 312</value>
|
<value>126, 312</value>
|
||||||
</data>
|
</data>
|
||||||
|
|||||||
269
app/DD_PM_WINDREAM/frmFormDesigner.Designer.vb
generated
269
app/DD_PM_WINDREAM/frmFormDesigner.Designer.vb
generated
@ -24,6 +24,9 @@ Partial Class frmFormDesigner
|
|||||||
Private Sub InitializeComponent()
|
Private Sub InitializeComponent()
|
||||||
Me.components = New System.ComponentModel.Container()
|
Me.components = New System.ComponentModel.Container()
|
||||||
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmFormDesigner))
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmFormDesigner))
|
||||||
|
Me.SplitContainerDesigner = New System.Windows.Forms.SplitContainer()
|
||||||
|
Me.pnldesigner = New DigitalData.Controls.SnapPanel.ClassSnapPanel()
|
||||||
|
Me.Panel1 = New System.Windows.Forms.Panel()
|
||||||
Me.pgControls = New System.Windows.Forms.PropertyGrid()
|
Me.pgControls = New System.Windows.Forms.PropertyGrid()
|
||||||
Me.TBPM_PROFILE_CONTROLSBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
Me.TBPM_PROFILE_CONTROLSBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||||
Me.DD_DMSLiteDataSet = New DD_ProcessManager.DD_DMSLiteDataSet()
|
Me.DD_DMSLiteDataSet = New DD_ProcessManager.DD_DMSLiteDataSet()
|
||||||
@ -31,18 +34,8 @@ Partial Class frmFormDesigner
|
|||||||
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
|
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
|
||||||
Me.tslblAenderungen = New System.Windows.Forms.ToolStripStatusLabel()
|
Me.tslblAenderungen = New System.Windows.Forms.ToolStripStatusLabel()
|
||||||
Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
|
Me.ToolTip1 = New System.Windows.Forms.ToolTip(Me.components)
|
||||||
Me.TBPM_PROFILE_CONTROLSTableAdapter = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBPM_PROFILE_CONTROLSTableAdapter()
|
|
||||||
Me.TableAdapterManager = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TableAdapterManager()
|
|
||||||
Me.TBDD_CONNECTIONTableAdapter = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBDD_CONNECTIONTableAdapter()
|
|
||||||
Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
|
||||||
Me.TBWH_CHECK_PROFILE_CONTROLSTableAdapter = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBWH_CHECK_PROFILE_CONTROLSTableAdapter()
|
|
||||||
Me.TBPM_CONTROL_TABLEBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
|
||||||
Me.TBPM_CONTROL_TABLETableAdapter = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBPM_CONTROL_TABLETableAdapter()
|
|
||||||
Me.GridControlContextMenu = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
Me.GridControlContextMenu = New System.Windows.Forms.ContextMenuStrip(Me.components)
|
||||||
Me.MenuItemAddColumn = New System.Windows.Forms.ToolStripMenuItem()
|
Me.MenuItemAddColumn = New System.Windows.Forms.ToolStripMenuItem()
|
||||||
Me.SplitContainerDesigner = New System.Windows.Forms.SplitContainer()
|
|
||||||
Me.pnldesigner = New DD_ProcessManager.ClassSnapPanel()
|
|
||||||
Me.Panel1 = New System.Windows.Forms.Panel()
|
|
||||||
Me.RibbonStatusBar1 = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
|
Me.RibbonStatusBar1 = New DevExpress.XtraBars.Ribbon.RibbonStatusBar()
|
||||||
Me.RibbonControl1 = New DevExpress.XtraBars.Ribbon.RibbonControl()
|
Me.RibbonControl1 = New DevExpress.XtraBars.Ribbon.RibbonControl()
|
||||||
Me.bbtnItemFinishSQL = New DevExpress.XtraBars.BarButtonItem()
|
Me.bbtnItemFinishSQL = New DevExpress.XtraBars.BarButtonItem()
|
||||||
@ -71,30 +64,62 @@ Partial Class frmFormDesigner
|
|||||||
Me.rpggrp_controls = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.rpggrp_controls = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibPGCtrlWidth = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibPGCtrlWidth = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibPGCtrlheight = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibPGCtrlheight = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
|
Me.TBPM_PROFILE_CONTROLSTableAdapter = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBPM_PROFILE_CONTROLSTableAdapter()
|
||||||
|
Me.TableAdapterManager = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TableAdapterManager()
|
||||||
|
Me.TBDD_CONNECTIONTableAdapter = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBDD_CONNECTIONTableAdapter()
|
||||||
|
Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||||
|
Me.TBWH_CHECK_PROFILE_CONTROLSTableAdapter = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBWH_CHECK_PROFILE_CONTROLSTableAdapter()
|
||||||
|
Me.TBPM_CONTROL_TABLEBindingSource = New System.Windows.Forms.BindingSource(Me.components)
|
||||||
|
Me.TBPM_CONTROL_TABLETableAdapter = New DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBPM_CONTROL_TABLETableAdapter()
|
||||||
Me.RibbonPage2 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
Me.RibbonPage2 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||||
Me.RPGControlFunction = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RPGControlFunction = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
Me.RibbonPage3 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
Me.RibbonPage3 = New DevExpress.XtraBars.Ribbon.RibbonPage()
|
||||||
Me.RibbonPageGroup4 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
Me.RibbonPageGroup4 = New DevExpress.XtraBars.Ribbon.RibbonPageGroup()
|
||||||
CType(Me.TBPM_PROFILE_CONTROLSBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
CType(Me.DD_DMSLiteDataSet, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
Me.StatusStrip1.SuspendLayout()
|
|
||||||
CType(Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
CType(Me.TBPM_CONTROL_TABLEBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
|
||||||
Me.GridControlContextMenu.SuspendLayout()
|
|
||||||
CType(Me.SplitContainerDesigner, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.SplitContainerDesigner, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.SplitContainerDesigner.Panel1.SuspendLayout()
|
Me.SplitContainerDesigner.Panel1.SuspendLayout()
|
||||||
Me.SplitContainerDesigner.Panel2.SuspendLayout()
|
Me.SplitContainerDesigner.Panel2.SuspendLayout()
|
||||||
Me.SplitContainerDesigner.SuspendLayout()
|
Me.SplitContainerDesigner.SuspendLayout()
|
||||||
Me.Panel1.SuspendLayout()
|
Me.Panel1.SuspendLayout()
|
||||||
|
CType(Me.TBPM_PROFILE_CONTROLSBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.DD_DMSLiteDataSet, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
Me.StatusStrip1.SuspendLayout()
|
||||||
|
Me.GridControlContextMenu.SuspendLayout()
|
||||||
CType(Me.RibbonControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
CType(Me.RibbonControl1, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
|
CType(Me.TBPM_CONTROL_TABLEBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
|
||||||
Me.SuspendLayout()
|
Me.SuspendLayout()
|
||||||
'
|
'
|
||||||
|
'SplitContainerDesigner
|
||||||
|
'
|
||||||
|
resources.ApplyResources(Me.SplitContainerDesigner, "SplitContainerDesigner")
|
||||||
|
Me.SplitContainerDesigner.Name = "SplitContainerDesigner"
|
||||||
|
'
|
||||||
|
'SplitContainerDesigner.Panel1
|
||||||
|
'
|
||||||
|
Me.SplitContainerDesigner.Panel1.Controls.Add(Me.pnldesigner)
|
||||||
|
'
|
||||||
|
'SplitContainerDesigner.Panel2
|
||||||
|
'
|
||||||
|
Me.SplitContainerDesigner.Panel2.Controls.Add(Me.Panel1)
|
||||||
|
'
|
||||||
|
'pnldesigner
|
||||||
|
'
|
||||||
|
resources.ApplyResources(Me.pnldesigner, "pnldesigner")
|
||||||
|
Me.pnldesigner.GridSize = 10
|
||||||
|
Me.pnldesigner.Name = "pnldesigner"
|
||||||
|
Me.pnldesigner.ShowGrid = True
|
||||||
|
'
|
||||||
|
'Panel1
|
||||||
|
'
|
||||||
|
Me.Panel1.Controls.Add(Me.pgControls)
|
||||||
|
resources.ApplyResources(Me.Panel1, "Panel1")
|
||||||
|
Me.Panel1.Name = "Panel1"
|
||||||
|
'
|
||||||
'pgControls
|
'pgControls
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.pgControls, "pgControls")
|
resources.ApplyResources(Me.pgControls, "pgControls")
|
||||||
Me.pgControls.Name = "pgControls"
|
Me.pgControls.Name = "pgControls"
|
||||||
Me.ToolTip1.SetToolTip(Me.pgControls, resources.GetString("pgControls.ToolTip"))
|
|
||||||
'
|
'
|
||||||
'TBPM_PROFILE_CONTROLSBindingSource
|
'TBPM_PROFILE_CONTROLSBindingSource
|
||||||
'
|
'
|
||||||
@ -113,138 +138,49 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
'StatusStrip1
|
'StatusStrip1
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
|
|
||||||
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblAenderungen})
|
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tslblAenderungen})
|
||||||
|
resources.ApplyResources(Me.StatusStrip1, "StatusStrip1")
|
||||||
Me.StatusStrip1.Name = "StatusStrip1"
|
Me.StatusStrip1.Name = "StatusStrip1"
|
||||||
Me.ToolTip1.SetToolTip(Me.StatusStrip1, resources.GetString("StatusStrip1.ToolTip"))
|
|
||||||
'
|
'
|
||||||
'tslblAenderungen
|
'tslblAenderungen
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.tslblAenderungen, "tslblAenderungen")
|
|
||||||
Me.tslblAenderungen.Image = Global.DD_ProcessManager.My.Resources.Resources.database_save
|
Me.tslblAenderungen.Image = Global.DD_ProcessManager.My.Resources.Resources.database_save
|
||||||
Me.tslblAenderungen.Name = "tslblAenderungen"
|
Me.tslblAenderungen.Name = "tslblAenderungen"
|
||||||
'
|
resources.ApplyResources(Me.tslblAenderungen, "tslblAenderungen")
|
||||||
'TBPM_PROFILE_CONTROLSTableAdapter
|
|
||||||
'
|
|
||||||
Me.TBPM_PROFILE_CONTROLSTableAdapter.ClearBeforeFill = True
|
|
||||||
'
|
|
||||||
'TableAdapterManager
|
|
||||||
'
|
|
||||||
Me.TableAdapterManager.BackupDataSetBeforeUpdate = False
|
|
||||||
Me.TableAdapterManager.TBDD_CONNECTIONTableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBDD_EMAIL_TEMPLATETableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBDD_GUI_LANGUAGE_PHRASETableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBDD_USERTableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBPM_CONTROL_TABLETableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBPM_ERROR_LOGTableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBPM_KONFIGURATIONTableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBPM_PROFILE_CONTROLSTableAdapter = Me.TBPM_PROFILE_CONTROLSTableAdapter
|
|
||||||
Me.TableAdapterManager.TBPM_PROFILE_FILESTableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBPM_PROFILE_FINAL_INDEXINGTableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBPM_PROFILETableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.TBPM_TYPETableAdapter = Nothing
|
|
||||||
Me.TableAdapterManager.UpdateOrder = DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete
|
|
||||||
'
|
|
||||||
'TBDD_CONNECTIONTableAdapter
|
|
||||||
'
|
|
||||||
Me.TBDD_CONNECTIONTableAdapter.ClearBeforeFill = True
|
|
||||||
'
|
|
||||||
'TBWH_CHECK_PROFILE_CONTROLSBindingSource
|
|
||||||
'
|
|
||||||
Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource.DataMember = "TBWH_CHECK_PROFILE_CONTROLS"
|
|
||||||
Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource.DataSource = Me.DD_DMSLiteDataSet
|
|
||||||
'
|
|
||||||
'TBWH_CHECK_PROFILE_CONTROLSTableAdapter
|
|
||||||
'
|
|
||||||
Me.TBWH_CHECK_PROFILE_CONTROLSTableAdapter.ClearBeforeFill = True
|
|
||||||
'
|
|
||||||
'TBPM_CONTROL_TABLEBindingSource
|
|
||||||
'
|
|
||||||
Me.TBPM_CONTROL_TABLEBindingSource.DataMember = "TBPM_CONTROL_TABLE"
|
|
||||||
Me.TBPM_CONTROL_TABLEBindingSource.DataSource = Me.DD_DMSLiteDataSet
|
|
||||||
'
|
|
||||||
'TBPM_CONTROL_TABLETableAdapter
|
|
||||||
'
|
|
||||||
Me.TBPM_CONTROL_TABLETableAdapter.ClearBeforeFill = True
|
|
||||||
'
|
'
|
||||||
'GridControlContextMenu
|
'GridControlContextMenu
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.GridControlContextMenu, "GridControlContextMenu")
|
|
||||||
Me.GridControlContextMenu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuItemAddColumn})
|
Me.GridControlContextMenu.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.MenuItemAddColumn})
|
||||||
Me.GridControlContextMenu.Name = "ContextMenuStrip1"
|
Me.GridControlContextMenu.Name = "ContextMenuStrip1"
|
||||||
Me.ToolTip1.SetToolTip(Me.GridControlContextMenu, resources.GetString("GridControlContextMenu.ToolTip"))
|
resources.ApplyResources(Me.GridControlContextMenu, "GridControlContextMenu")
|
||||||
'
|
'
|
||||||
'MenuItemAddColumn
|
'MenuItemAddColumn
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.MenuItemAddColumn, "MenuItemAddColumn")
|
|
||||||
Me.MenuItemAddColumn.Name = "MenuItemAddColumn"
|
Me.MenuItemAddColumn.Name = "MenuItemAddColumn"
|
||||||
'
|
resources.ApplyResources(Me.MenuItemAddColumn, "MenuItemAddColumn")
|
||||||
'SplitContainerDesigner
|
|
||||||
'
|
|
||||||
resources.ApplyResources(Me.SplitContainerDesigner, "SplitContainerDesigner")
|
|
||||||
Me.SplitContainerDesigner.Name = "SplitContainerDesigner"
|
|
||||||
'
|
|
||||||
'SplitContainerDesigner.Panel1
|
|
||||||
'
|
|
||||||
resources.ApplyResources(Me.SplitContainerDesigner.Panel1, "SplitContainerDesigner.Panel1")
|
|
||||||
Me.SplitContainerDesigner.Panel1.Controls.Add(Me.pnldesigner)
|
|
||||||
Me.ToolTip1.SetToolTip(Me.SplitContainerDesigner.Panel1, resources.GetString("SplitContainerDesigner.Panel1.ToolTip"))
|
|
||||||
'
|
|
||||||
'SplitContainerDesigner.Panel2
|
|
||||||
'
|
|
||||||
resources.ApplyResources(Me.SplitContainerDesigner.Panel2, "SplitContainerDesigner.Panel2")
|
|
||||||
Me.SplitContainerDesigner.Panel2.Controls.Add(Me.Panel1)
|
|
||||||
Me.ToolTip1.SetToolTip(Me.SplitContainerDesigner.Panel2, resources.GetString("SplitContainerDesigner.Panel2.ToolTip"))
|
|
||||||
Me.ToolTip1.SetToolTip(Me.SplitContainerDesigner, resources.GetString("SplitContainerDesigner.ToolTip"))
|
|
||||||
'
|
|
||||||
'pnldesigner
|
|
||||||
'
|
|
||||||
resources.ApplyResources(Me.pnldesigner, "pnldesigner")
|
|
||||||
Me.pnldesigner.AllowDrop = True
|
|
||||||
Me.pnldesigner.BackColor = System.Drawing.Color.Transparent
|
|
||||||
Me.pnldesigner.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
|
|
||||||
Me.pnldesigner.GridSize = 10
|
|
||||||
Me.pnldesigner.Name = "pnldesigner"
|
|
||||||
Me.pnldesigner.ShowGrid = True
|
|
||||||
Me.ToolTip1.SetToolTip(Me.pnldesigner, resources.GetString("pnldesigner.ToolTip"))
|
|
||||||
'
|
|
||||||
'Panel1
|
|
||||||
'
|
|
||||||
resources.ApplyResources(Me.Panel1, "Panel1")
|
|
||||||
Me.Panel1.Controls.Add(Me.pgControls)
|
|
||||||
Me.Panel1.Name = "Panel1"
|
|
||||||
Me.ToolTip1.SetToolTip(Me.Panel1, resources.GetString("Panel1.ToolTip"))
|
|
||||||
'
|
'
|
||||||
'RibbonStatusBar1
|
'RibbonStatusBar1
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.RibbonStatusBar1, "RibbonStatusBar1")
|
resources.ApplyResources(Me.RibbonStatusBar1, "RibbonStatusBar1")
|
||||||
Me.RibbonStatusBar1.Name = "RibbonStatusBar1"
|
Me.RibbonStatusBar1.Name = "RibbonStatusBar1"
|
||||||
Me.RibbonStatusBar1.Ribbon = Me.RibbonControl1
|
Me.RibbonStatusBar1.Ribbon = Me.RibbonControl1
|
||||||
Me.ToolTip1.SetToolTip(Me.RibbonStatusBar1, resources.GetString("RibbonStatusBar1.ToolTip"))
|
|
||||||
'
|
'
|
||||||
'RibbonControl1
|
'RibbonControl1
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
|
|
||||||
Me.RibbonControl1.ExpandCollapseItem.Id = 0
|
Me.RibbonControl1.ExpandCollapseItem.Id = 0
|
||||||
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.RibbonControl1.ExpandCollapseItem.ImageOptions.SvgImage = CType(resources.GetObject("RibbonControl1.ExpandCollapseItem.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.RibbonControl1.ExpandCollapseItem.SearchTags = resources.GetString("RibbonControl1.ExpandCollapseItem.SearchTags")
|
|
||||||
Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.RibbonControl1.SearchEditItem, Me.bbtnItemFinishSQL, Me.BarButtonItem1, Me.BarButtonItem2, Me.BarButtonItem3, Me.BarStaticItem1, Me.BarButtonItem4, Me.BarButtonItem5, Me.bbtnitLabel, Me.bbtnitTextBox, Me.bbtnitLU, Me.bbtnitTable, Me.bbtnitDatePicker, Me.bbtnitCheckBox, Me.bbtnitButton, Me.bbtnitLine, Me.bbtniwidth_plus, Me.bbtniwidth_min, Me.bbtniheight_plus, Me.bbtniheight_min})
|
Me.RibbonControl1.Items.AddRange(New DevExpress.XtraBars.BarItem() {Me.RibbonControl1.ExpandCollapseItem, Me.RibbonControl1.SearchEditItem, Me.bbtnItemFinishSQL, Me.BarButtonItem1, Me.BarButtonItem2, Me.BarButtonItem3, Me.BarStaticItem1, Me.BarButtonItem4, Me.BarButtonItem5, Me.bbtnitLabel, Me.bbtnitTextBox, Me.bbtnitLU, Me.bbtnitTable, Me.bbtnitDatePicker, Me.bbtnitCheckBox, Me.bbtnitButton, Me.bbtnitLine, Me.bbtniwidth_plus, Me.bbtniwidth_min, Me.bbtniheight_plus, Me.bbtniheight_min})
|
||||||
|
resources.ApplyResources(Me.RibbonControl1, "RibbonControl1")
|
||||||
Me.RibbonControl1.MaxItemId = 20
|
Me.RibbonControl1.MaxItemId = 20
|
||||||
Me.RibbonControl1.Name = "RibbonControl1"
|
Me.RibbonControl1.Name = "RibbonControl1"
|
||||||
Me.RibbonControl1.PageCategories.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageCategory() {Me.RibbonPageCategory1})
|
Me.RibbonControl1.PageCategories.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPageCategory() {Me.RibbonPageCategory1})
|
||||||
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
|
Me.RibbonControl1.Pages.AddRange(New DevExpress.XtraBars.Ribbon.RibbonPage() {Me.RibbonPage1})
|
||||||
Me.RibbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
Me.RibbonControl1.ShowApplicationButton = DevExpress.Utils.DefaultBoolean.[False]
|
||||||
Me.RibbonControl1.StatusBar = Me.RibbonStatusBar1
|
Me.RibbonControl1.StatusBar = Me.RibbonStatusBar1
|
||||||
Me.ToolTip1.SetToolTip(Me.RibbonControl1, resources.GetString("RibbonControl1.ToolTip"))
|
|
||||||
'
|
'
|
||||||
'bbtnItemFinishSQL
|
'bbtnItemFinishSQL
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtnItemFinishSQL, "bbtnItemFinishSQL")
|
resources.ApplyResources(Me.bbtnItemFinishSQL, "bbtnItemFinishSQL")
|
||||||
Me.bbtnItemFinishSQL.Id = 1
|
Me.bbtnItemFinishSQL.Id = 1
|
||||||
Me.bbtnItemFinishSQL.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnItemFinishSQL.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnItemFinishSQL.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnItemFinishSQL.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnItemFinishSQL.ImageOptions.SvgImage = CType(resources.GetObject("bbtnItemFinishSQL.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtnItemFinishSQL.ImageOptions.SvgImage = CType(resources.GetObject("bbtnItemFinishSQL.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtnItemFinishSQL.Name = "bbtnItemFinishSQL"
|
Me.bbtnItemFinishSQL.Name = "bbtnItemFinishSQL"
|
||||||
'
|
'
|
||||||
@ -252,8 +188,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem1, "BarButtonItem1")
|
resources.ApplyResources(Me.BarButtonItem1, "BarButtonItem1")
|
||||||
Me.BarButtonItem1.Id = 2
|
Me.BarButtonItem1.Id = 2
|
||||||
Me.BarButtonItem1.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem1.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem1.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem1.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem1.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.BarButtonItem1.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem1.Name = "BarButtonItem1"
|
Me.BarButtonItem1.Name = "BarButtonItem1"
|
||||||
'
|
'
|
||||||
@ -261,8 +195,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
resources.ApplyResources(Me.BarButtonItem2, "BarButtonItem2")
|
||||||
Me.BarButtonItem2.Id = 3
|
Me.BarButtonItem2.Id = 3
|
||||||
Me.BarButtonItem2.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem2.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem2.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem2.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem2.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.BarButtonItem2.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem2.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem2.Name = "BarButtonItem2"
|
Me.BarButtonItem2.Name = "BarButtonItem2"
|
||||||
'
|
'
|
||||||
@ -270,8 +202,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem3, "BarButtonItem3")
|
resources.ApplyResources(Me.BarButtonItem3, "BarButtonItem3")
|
||||||
Me.BarButtonItem3.Id = 4
|
Me.BarButtonItem3.Id = 4
|
||||||
Me.BarButtonItem3.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem3.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem3.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem3.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem3.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem3.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.BarButtonItem3.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem3.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem3.ItemAppearance.Normal.BackColor = System.Drawing.Color.Red
|
Me.BarButtonItem3.ItemAppearance.Normal.BackColor = System.Drawing.Color.Red
|
||||||
Me.BarButtonItem3.ItemAppearance.Normal.Options.UseBackColor = True
|
Me.BarButtonItem3.ItemAppearance.Normal.Options.UseBackColor = True
|
||||||
@ -282,9 +212,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarStaticItem1, "BarStaticItem1")
|
resources.ApplyResources(Me.BarStaticItem1, "BarStaticItem1")
|
||||||
Me.BarStaticItem1.Id = 5
|
Me.BarStaticItem1.Id = 5
|
||||||
Me.BarStaticItem1.ImageOptions.ImageIndex = CType(resources.GetObject("BarStaticItem1.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.BarStaticItem1.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarStaticItem1.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.BarStaticItem1.ImageOptions.SvgImage = CType(resources.GetObject("BarStaticItem1.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.BarStaticItem1.ItemAppearance.Normal.Font = CType(resources.GetObject("BarStaticItem1.ItemAppearance.Normal.Font"), System.Drawing.Font)
|
Me.BarStaticItem1.ItemAppearance.Normal.Font = CType(resources.GetObject("BarStaticItem1.ItemAppearance.Normal.Font"), System.Drawing.Font)
|
||||||
Me.BarStaticItem1.ItemAppearance.Normal.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
|
Me.BarStaticItem1.ItemAppearance.Normal.ForeColor = System.Drawing.Color.FromArgb(CType(CType(192, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer))
|
||||||
Me.BarStaticItem1.ItemAppearance.Normal.Options.UseFont = True
|
Me.BarStaticItem1.ItemAppearance.Normal.Options.UseFont = True
|
||||||
@ -296,8 +223,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem4, "BarButtonItem4")
|
resources.ApplyResources(Me.BarButtonItem4, "BarButtonItem4")
|
||||||
Me.BarButtonItem4.Id = 6
|
Me.BarButtonItem4.Id = 6
|
||||||
Me.BarButtonItem4.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem4.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem4.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem4.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem4.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem4.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.BarButtonItem4.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem4.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.BarButtonItem4.Name = "BarButtonItem4"
|
Me.BarButtonItem4.Name = "BarButtonItem4"
|
||||||
'
|
'
|
||||||
@ -305,9 +230,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.BarButtonItem5, "BarButtonItem5")
|
resources.ApplyResources(Me.BarButtonItem5, "BarButtonItem5")
|
||||||
Me.BarButtonItem5.Id = 7
|
Me.BarButtonItem5.Id = 7
|
||||||
Me.BarButtonItem5.ImageOptions.ImageIndex = CType(resources.GetObject("BarButtonItem5.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem5.ImageOptions.LargeImageIndex = CType(resources.GetObject("BarButtonItem5.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.BarButtonItem5.ImageOptions.SvgImage = CType(resources.GetObject("BarButtonItem5.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.BarButtonItem5.Name = "BarButtonItem5"
|
Me.BarButtonItem5.Name = "BarButtonItem5"
|
||||||
'
|
'
|
||||||
'bbtnitLabel
|
'bbtnitLabel
|
||||||
@ -315,18 +237,13 @@ Partial Class frmFormDesigner
|
|||||||
resources.ApplyResources(Me.bbtnitLabel, "bbtnitLabel")
|
resources.ApplyResources(Me.bbtnitLabel, "bbtnitLabel")
|
||||||
Me.bbtnitLabel.Id = 8
|
Me.bbtnitLabel.Id = 8
|
||||||
Me.bbtnitLabel.ImageOptions.Image = CType(resources.GetObject("bbtnitLabel.ImageOptions.Image"), System.Drawing.Image)
|
Me.bbtnitLabel.ImageOptions.Image = CType(resources.GetObject("bbtnitLabel.ImageOptions.Image"), System.Drawing.Image)
|
||||||
Me.bbtnitLabel.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitLabel.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnitLabel.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitLabel.ImageOptions.LargeImage"), System.Drawing.Image)
|
Me.bbtnitLabel.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitLabel.ImageOptions.LargeImage"), System.Drawing.Image)
|
||||||
Me.bbtnitLabel.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitLabel.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnitLabel.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitLabel.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.bbtnitLabel.Name = "bbtnitLabel"
|
Me.bbtnitLabel.Name = "bbtnitLabel"
|
||||||
'
|
'
|
||||||
'bbtnitTextBox
|
'bbtnitTextBox
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtnitTextBox, "bbtnitTextBox")
|
resources.ApplyResources(Me.bbtnitTextBox, "bbtnitTextBox")
|
||||||
Me.bbtnitTextBox.Id = 9
|
Me.bbtnitTextBox.Id = 9
|
||||||
Me.bbtnitTextBox.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitTextBox.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnitTextBox.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitTextBox.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnitTextBox.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitTextBox.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtnitTextBox.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitTextBox.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtnitTextBox.Name = "bbtnitTextBox"
|
Me.bbtnitTextBox.Name = "bbtnitTextBox"
|
||||||
'
|
'
|
||||||
@ -335,10 +252,7 @@ Partial Class frmFormDesigner
|
|||||||
resources.ApplyResources(Me.bbtnitLU, "bbtnitLU")
|
resources.ApplyResources(Me.bbtnitLU, "bbtnitLU")
|
||||||
Me.bbtnitLU.Id = 10
|
Me.bbtnitLU.Id = 10
|
||||||
Me.bbtnitLU.ImageOptions.Image = CType(resources.GetObject("bbtnitLU.ImageOptions.Image"), System.Drawing.Image)
|
Me.bbtnitLU.ImageOptions.Image = CType(resources.GetObject("bbtnitLU.ImageOptions.Image"), System.Drawing.Image)
|
||||||
Me.bbtnitLU.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitLU.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnitLU.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitLU.ImageOptions.LargeImage"), System.Drawing.Image)
|
Me.bbtnitLU.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitLU.ImageOptions.LargeImage"), System.Drawing.Image)
|
||||||
Me.bbtnitLU.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitLU.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnitLU.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitLU.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.bbtnitLU.Name = "bbtnitLU"
|
Me.bbtnitLU.Name = "bbtnitLU"
|
||||||
'
|
'
|
||||||
'bbtnitTable
|
'bbtnitTable
|
||||||
@ -346,10 +260,7 @@ Partial Class frmFormDesigner
|
|||||||
resources.ApplyResources(Me.bbtnitTable, "bbtnitTable")
|
resources.ApplyResources(Me.bbtnitTable, "bbtnitTable")
|
||||||
Me.bbtnitTable.Id = 11
|
Me.bbtnitTable.Id = 11
|
||||||
Me.bbtnitTable.ImageOptions.Image = CType(resources.GetObject("bbtnitTable.ImageOptions.Image"), System.Drawing.Image)
|
Me.bbtnitTable.ImageOptions.Image = CType(resources.GetObject("bbtnitTable.ImageOptions.Image"), System.Drawing.Image)
|
||||||
Me.bbtnitTable.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitTable.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnitTable.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitTable.ImageOptions.LargeImage"), System.Drawing.Image)
|
Me.bbtnitTable.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitTable.ImageOptions.LargeImage"), System.Drawing.Image)
|
||||||
Me.bbtnitTable.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitTable.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnitTable.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitTable.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.bbtnitTable.Name = "bbtnitTable"
|
Me.bbtnitTable.Name = "bbtnitTable"
|
||||||
'
|
'
|
||||||
'bbtnitDatePicker
|
'bbtnitDatePicker
|
||||||
@ -357,10 +268,7 @@ Partial Class frmFormDesigner
|
|||||||
resources.ApplyResources(Me.bbtnitDatePicker, "bbtnitDatePicker")
|
resources.ApplyResources(Me.bbtnitDatePicker, "bbtnitDatePicker")
|
||||||
Me.bbtnitDatePicker.Id = 12
|
Me.bbtnitDatePicker.Id = 12
|
||||||
Me.bbtnitDatePicker.ImageOptions.Image = CType(resources.GetObject("bbtnitDatePicker.ImageOptions.Image"), System.Drawing.Image)
|
Me.bbtnitDatePicker.ImageOptions.Image = CType(resources.GetObject("bbtnitDatePicker.ImageOptions.Image"), System.Drawing.Image)
|
||||||
Me.bbtnitDatePicker.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitDatePicker.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnitDatePicker.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitDatePicker.ImageOptions.LargeImage"), System.Drawing.Image)
|
Me.bbtnitDatePicker.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitDatePicker.ImageOptions.LargeImage"), System.Drawing.Image)
|
||||||
Me.bbtnitDatePicker.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitDatePicker.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnitDatePicker.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitDatePicker.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.bbtnitDatePicker.Name = "bbtnitDatePicker"
|
Me.bbtnitDatePicker.Name = "bbtnitDatePicker"
|
||||||
'
|
'
|
||||||
'bbtnitCheckBox
|
'bbtnitCheckBox
|
||||||
@ -368,10 +276,7 @@ Partial Class frmFormDesigner
|
|||||||
resources.ApplyResources(Me.bbtnitCheckBox, "bbtnitCheckBox")
|
resources.ApplyResources(Me.bbtnitCheckBox, "bbtnitCheckBox")
|
||||||
Me.bbtnitCheckBox.Id = 13
|
Me.bbtnitCheckBox.Id = 13
|
||||||
Me.bbtnitCheckBox.ImageOptions.Image = CType(resources.GetObject("bbtnitCheckBox.ImageOptions.Image"), System.Drawing.Image)
|
Me.bbtnitCheckBox.ImageOptions.Image = CType(resources.GetObject("bbtnitCheckBox.ImageOptions.Image"), System.Drawing.Image)
|
||||||
Me.bbtnitCheckBox.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitCheckBox.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnitCheckBox.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitCheckBox.ImageOptions.LargeImage"), System.Drawing.Image)
|
Me.bbtnitCheckBox.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitCheckBox.ImageOptions.LargeImage"), System.Drawing.Image)
|
||||||
Me.bbtnitCheckBox.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitCheckBox.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnitCheckBox.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitCheckBox.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.bbtnitCheckBox.Name = "bbtnitCheckBox"
|
Me.bbtnitCheckBox.Name = "bbtnitCheckBox"
|
||||||
'
|
'
|
||||||
'bbtnitButton
|
'bbtnitButton
|
||||||
@ -379,10 +284,7 @@ Partial Class frmFormDesigner
|
|||||||
resources.ApplyResources(Me.bbtnitButton, "bbtnitButton")
|
resources.ApplyResources(Me.bbtnitButton, "bbtnitButton")
|
||||||
Me.bbtnitButton.Id = 14
|
Me.bbtnitButton.Id = 14
|
||||||
Me.bbtnitButton.ImageOptions.Image = CType(resources.GetObject("bbtnitButton.ImageOptions.Image"), System.Drawing.Image)
|
Me.bbtnitButton.ImageOptions.Image = CType(resources.GetObject("bbtnitButton.ImageOptions.Image"), System.Drawing.Image)
|
||||||
Me.bbtnitButton.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitButton.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnitButton.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitButton.ImageOptions.LargeImage"), System.Drawing.Image)
|
Me.bbtnitButton.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitButton.ImageOptions.LargeImage"), System.Drawing.Image)
|
||||||
Me.bbtnitButton.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitButton.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnitButton.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitButton.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.bbtnitButton.Name = "bbtnitButton"
|
Me.bbtnitButton.Name = "bbtnitButton"
|
||||||
'
|
'
|
||||||
'bbtnitLine
|
'bbtnitLine
|
||||||
@ -390,18 +292,13 @@ Partial Class frmFormDesigner
|
|||||||
resources.ApplyResources(Me.bbtnitLine, "bbtnitLine")
|
resources.ApplyResources(Me.bbtnitLine, "bbtnitLine")
|
||||||
Me.bbtnitLine.Id = 15
|
Me.bbtnitLine.Id = 15
|
||||||
Me.bbtnitLine.ImageOptions.Image = CType(resources.GetObject("bbtnitLine.ImageOptions.Image"), System.Drawing.Image)
|
Me.bbtnitLine.ImageOptions.Image = CType(resources.GetObject("bbtnitLine.ImageOptions.Image"), System.Drawing.Image)
|
||||||
Me.bbtnitLine.ImageOptions.ImageIndex = CType(resources.GetObject("bbtnitLine.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtnitLine.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitLine.ImageOptions.LargeImage"), System.Drawing.Image)
|
Me.bbtnitLine.ImageOptions.LargeImage = CType(resources.GetObject("bbtnitLine.ImageOptions.LargeImage"), System.Drawing.Image)
|
||||||
Me.bbtnitLine.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtnitLine.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtnitLine.ImageOptions.SvgImage = CType(resources.GetObject("bbtnitLine.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
|
||||||
Me.bbtnitLine.Name = "bbtnitLine"
|
Me.bbtnitLine.Name = "bbtnitLine"
|
||||||
'
|
'
|
||||||
'bbtniwidth_plus
|
'bbtniwidth_plus
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtniwidth_plus, "bbtniwidth_plus")
|
resources.ApplyResources(Me.bbtniwidth_plus, "bbtniwidth_plus")
|
||||||
Me.bbtniwidth_plus.Id = 16
|
Me.bbtniwidth_plus.Id = 16
|
||||||
Me.bbtniwidth_plus.ImageOptions.ImageIndex = CType(resources.GetObject("bbtniwidth_plus.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtniwidth_plus.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtniwidth_plus.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtniwidth_plus.ImageOptions.SvgImage = CType(resources.GetObject("bbtniwidth_plus.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtniwidth_plus.ImageOptions.SvgImage = CType(resources.GetObject("bbtniwidth_plus.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtniwidth_plus.Name = "bbtniwidth_plus"
|
Me.bbtniwidth_plus.Name = "bbtniwidth_plus"
|
||||||
'
|
'
|
||||||
@ -409,8 +306,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtniwidth_min, "bbtniwidth_min")
|
resources.ApplyResources(Me.bbtniwidth_min, "bbtniwidth_min")
|
||||||
Me.bbtniwidth_min.Id = 17
|
Me.bbtniwidth_min.Id = 17
|
||||||
Me.bbtniwidth_min.ImageOptions.ImageIndex = CType(resources.GetObject("bbtniwidth_min.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtniwidth_min.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtniwidth_min.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtniwidth_min.ImageOptions.SvgImage = CType(resources.GetObject("bbtniwidth_min.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtniwidth_min.ImageOptions.SvgImage = CType(resources.GetObject("bbtniwidth_min.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtniwidth_min.Name = "bbtniwidth_min"
|
Me.bbtniwidth_min.Name = "bbtniwidth_min"
|
||||||
'
|
'
|
||||||
@ -418,8 +313,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtniheight_plus, "bbtniheight_plus")
|
resources.ApplyResources(Me.bbtniheight_plus, "bbtniheight_plus")
|
||||||
Me.bbtniheight_plus.Id = 18
|
Me.bbtniheight_plus.Id = 18
|
||||||
Me.bbtniheight_plus.ImageOptions.ImageIndex = CType(resources.GetObject("bbtniheight_plus.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtniheight_plus.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtniheight_plus.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtniheight_plus.ImageOptions.SvgImage = CType(resources.GetObject("bbtniheight_plus.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtniheight_plus.ImageOptions.SvgImage = CType(resources.GetObject("bbtniheight_plus.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtniheight_plus.Name = "bbtniheight_plus"
|
Me.bbtniheight_plus.Name = "bbtniheight_plus"
|
||||||
'
|
'
|
||||||
@ -427,8 +320,6 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
resources.ApplyResources(Me.bbtniheight_min, "bbtniheight_min")
|
resources.ApplyResources(Me.bbtniheight_min, "bbtniheight_min")
|
||||||
Me.bbtniheight_min.Id = 19
|
Me.bbtniheight_min.Id = 19
|
||||||
Me.bbtniheight_min.ImageOptions.ImageIndex = CType(resources.GetObject("bbtniheight_min.ImageOptions.ImageIndex"), Integer)
|
|
||||||
Me.bbtniheight_min.ImageOptions.LargeImageIndex = CType(resources.GetObject("bbtniheight_min.ImageOptions.LargeImageIndex"), Integer)
|
|
||||||
Me.bbtniheight_min.ImageOptions.SvgImage = CType(resources.GetObject("bbtniheight_min.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
Me.bbtniheight_min.ImageOptions.SvgImage = CType(resources.GetObject("bbtniheight_min.ImageOptions.SvgImage"), DevExpress.Utils.Svg.SvgImage)
|
||||||
Me.bbtniheight_min.Name = "bbtniheight_min"
|
Me.bbtniheight_min.Name = "bbtniheight_min"
|
||||||
'
|
'
|
||||||
@ -485,6 +376,49 @@ Partial Class frmFormDesigner
|
|||||||
Me.RibPGCtrlheight.Name = "RibPGCtrlheight"
|
Me.RibPGCtrlheight.Name = "RibPGCtrlheight"
|
||||||
resources.ApplyResources(Me.RibPGCtrlheight, "RibPGCtrlheight")
|
resources.ApplyResources(Me.RibPGCtrlheight, "RibPGCtrlheight")
|
||||||
'
|
'
|
||||||
|
'TBPM_PROFILE_CONTROLSTableAdapter
|
||||||
|
'
|
||||||
|
Me.TBPM_PROFILE_CONTROLSTableAdapter.ClearBeforeFill = True
|
||||||
|
'
|
||||||
|
'TableAdapterManager
|
||||||
|
'
|
||||||
|
Me.TableAdapterManager.BackupDataSetBeforeUpdate = False
|
||||||
|
Me.TableAdapterManager.TBDD_CONNECTIONTableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBDD_EMAIL_TEMPLATETableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBDD_GUI_LANGUAGE_PHRASETableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBDD_USERTableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBPM_CONTROL_TABLETableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBPM_ERROR_LOGTableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBPM_KONFIGURATIONTableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBPM_PROFILE_CONTROLSTableAdapter = Me.TBPM_PROFILE_CONTROLSTableAdapter
|
||||||
|
Me.TableAdapterManager.TBPM_PROFILE_FILESTableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBPM_PROFILE_FINAL_INDEXINGTableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBPM_PROFILETableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.TBPM_TYPETableAdapter = Nothing
|
||||||
|
Me.TableAdapterManager.UpdateOrder = DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete
|
||||||
|
'
|
||||||
|
'TBDD_CONNECTIONTableAdapter
|
||||||
|
'
|
||||||
|
Me.TBDD_CONNECTIONTableAdapter.ClearBeforeFill = True
|
||||||
|
'
|
||||||
|
'TBWH_CHECK_PROFILE_CONTROLSBindingSource
|
||||||
|
'
|
||||||
|
Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource.DataMember = "TBWH_CHECK_PROFILE_CONTROLS"
|
||||||
|
Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource.DataSource = Me.DD_DMSLiteDataSet
|
||||||
|
'
|
||||||
|
'TBWH_CHECK_PROFILE_CONTROLSTableAdapter
|
||||||
|
'
|
||||||
|
Me.TBWH_CHECK_PROFILE_CONTROLSTableAdapter.ClearBeforeFill = True
|
||||||
|
'
|
||||||
|
'TBPM_CONTROL_TABLEBindingSource
|
||||||
|
'
|
||||||
|
Me.TBPM_CONTROL_TABLEBindingSource.DataMember = "TBPM_CONTROL_TABLE"
|
||||||
|
Me.TBPM_CONTROL_TABLEBindingSource.DataSource = Me.DD_DMSLiteDataSet
|
||||||
|
'
|
||||||
|
'TBPM_CONTROL_TABLETableAdapter
|
||||||
|
'
|
||||||
|
Me.TBPM_CONTROL_TABLETableAdapter.ClearBeforeFill = True
|
||||||
|
'
|
||||||
'RibbonPage2
|
'RibbonPage2
|
||||||
'
|
'
|
||||||
Me.RibbonPage2.Name = "RibbonPage2"
|
Me.RibbonPage2.Name = "RibbonPage2"
|
||||||
@ -507,8 +441,8 @@ Partial Class frmFormDesigner
|
|||||||
'
|
'
|
||||||
'frmFormDesigner
|
'frmFormDesigner
|
||||||
'
|
'
|
||||||
resources.ApplyResources(Me, "$this")
|
|
||||||
Me.Appearance.Options.UseFont = True
|
Me.Appearance.Options.UseFont = True
|
||||||
|
resources.ApplyResources(Me, "$this")
|
||||||
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
||||||
Me.Controls.Add(Me.SplitContainerDesigner)
|
Me.Controls.Add(Me.SplitContainerDesigner)
|
||||||
Me.Controls.Add(Me.StatusStrip1)
|
Me.Controls.Add(Me.StatusStrip1)
|
||||||
@ -519,22 +453,21 @@ Partial Class frmFormDesigner
|
|||||||
Me.Name = "frmFormDesigner"
|
Me.Name = "frmFormDesigner"
|
||||||
Me.Ribbon = Me.RibbonControl1
|
Me.Ribbon = Me.RibbonControl1
|
||||||
Me.StatusBar = Me.RibbonStatusBar1
|
Me.StatusBar = Me.RibbonStatusBar1
|
||||||
Me.ToolTip1.SetToolTip(Me, resources.GetString("$this.ToolTip"))
|
|
||||||
Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
|
Me.WindowState = System.Windows.Forms.FormWindowState.Maximized
|
||||||
CType(Me.TBPM_PROFILE_CONTROLSBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
CType(Me.DD_DMSLiteDataSet, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
Me.StatusStrip1.ResumeLayout(False)
|
|
||||||
Me.StatusStrip1.PerformLayout()
|
|
||||||
CType(Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
CType(Me.TBPM_CONTROL_TABLEBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
|
||||||
Me.GridControlContextMenu.ResumeLayout(False)
|
|
||||||
Me.SplitContainerDesigner.Panel1.ResumeLayout(False)
|
Me.SplitContainerDesigner.Panel1.ResumeLayout(False)
|
||||||
Me.SplitContainerDesigner.Panel2.ResumeLayout(False)
|
Me.SplitContainerDesigner.Panel2.ResumeLayout(False)
|
||||||
CType(Me.SplitContainerDesigner, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.SplitContainerDesigner, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
Me.SplitContainerDesigner.ResumeLayout(False)
|
Me.SplitContainerDesigner.ResumeLayout(False)
|
||||||
Me.Panel1.ResumeLayout(False)
|
Me.Panel1.ResumeLayout(False)
|
||||||
|
CType(Me.TBPM_PROFILE_CONTROLSBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.DD_DMSLiteDataSet, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.TBDD_CONNECTIONBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
Me.StatusStrip1.ResumeLayout(False)
|
||||||
|
Me.StatusStrip1.PerformLayout()
|
||||||
|
Me.GridControlContextMenu.ResumeLayout(False)
|
||||||
CType(Me.RibbonControl1, System.ComponentModel.ISupportInitialize).EndInit()
|
CType(Me.RibbonControl1, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.TBWH_CHECK_PROFILE_CONTROLSBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
|
CType(Me.TBPM_CONTROL_TABLEBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
|
||||||
Me.ResumeLayout(False)
|
Me.ResumeLayout(False)
|
||||||
Me.PerformLayout()
|
Me.PerformLayout()
|
||||||
|
|
||||||
@ -543,7 +476,6 @@ Partial Class frmFormDesigner
|
|||||||
Friend WithEvents TBPM_PROFILE_CONTROLSBindingSource As System.Windows.Forms.BindingSource
|
Friend WithEvents TBPM_PROFILE_CONTROLSBindingSource As System.Windows.Forms.BindingSource
|
||||||
Friend WithEvents TBPM_PROFILE_CONTROLSTableAdapter As DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBPM_PROFILE_CONTROLSTableAdapter
|
Friend WithEvents TBPM_PROFILE_CONTROLSTableAdapter As DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TBPM_PROFILE_CONTROLSTableAdapter
|
||||||
Friend WithEvents TableAdapterManager As DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TableAdapterManager
|
Friend WithEvents TableAdapterManager As DD_ProcessManager.DD_DMSLiteDataSetTableAdapters.TableAdapterManager
|
||||||
Friend WithEvents pnldesigner As DD_ProcessManager.ClassSnapPanel
|
|
||||||
Friend WithEvents StatusStrip1 As System.Windows.Forms.StatusStrip
|
Friend WithEvents StatusStrip1 As System.Windows.Forms.StatusStrip
|
||||||
Friend WithEvents tslblAenderungen As System.Windows.Forms.ToolStripStatusLabel
|
Friend WithEvents tslblAenderungen As System.Windows.Forms.ToolStripStatusLabel
|
||||||
Friend WithEvents TBDD_CONNECTIONBindingSource As System.Windows.Forms.BindingSource
|
Friend WithEvents TBDD_CONNECTIONBindingSource As System.Windows.Forms.BindingSource
|
||||||
@ -590,4 +522,5 @@ Partial Class frmFormDesigner
|
|||||||
Friend WithEvents bbtniheight_min As DevExpress.XtraBars.BarButtonItem
|
Friend WithEvents bbtniheight_min As DevExpress.XtraBars.BarButtonItem
|
||||||
Friend WithEvents RibPGCtrlWidth As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
Friend WithEvents RibPGCtrlWidth As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
||||||
Friend WithEvents RibPGCtrlheight As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
Friend WithEvents RibPGCtrlheight As DevExpress.XtraBars.Ribbon.RibbonPageGroup
|
||||||
|
Friend WithEvents pnldesigner As DigitalData.Controls.SnapPanel.ClassSnapPanel
|
||||||
End Class
|
End Class
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -1363,24 +1363,14 @@ Public Class frmValidator
|
|||||||
End Try
|
End Try
|
||||||
|
|
||||||
End Sub
|
End Sub
|
||||||
Public Sub onLookUp0(sender As Object, e As System.EventArgs)
|
|
||||||
Dim oLookup As LookupControl3 = sender
|
|
||||||
Try
|
|
||||||
If Not IsNothing(oLookup.Properties.SelectedValues) Then
|
|
||||||
For Each ocont In oLookup.Properties.SelectedValues
|
|
||||||
Dim o = ocont
|
|
||||||
Next
|
|
||||||
End If
|
|
||||||
Catch ex As Exception
|
|
||||||
|
|
||||||
End Try
|
|
||||||
End Sub
|
|
||||||
Public Sub onLookUpselectedValue(sender As Object, SelectedValues As List(Of String))
|
Public Sub onLookUpselectedValue(sender As Object, SelectedValues As List(Of String))
|
||||||
LOGGER.Debug("onLookUpselectedValue")
|
LOGGER.Debug("onLookUpselectedValue")
|
||||||
If FormLoaded = False Then
|
If FormLoaded = False Then
|
||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
Dim oLookup As LookupControl3 = sender
|
Dim oRepositoryItem As RepositoryItemLookupControl3 = sender
|
||||||
|
Dim oLookup As LookupControl3 = oRepositoryItem.OwnerEdit
|
||||||
|
|
||||||
Try
|
Try
|
||||||
If Not IsNothing(SelectedValues) Then
|
If Not IsNothing(SelectedValues) Then
|
||||||
If SelectedValues.Count = 1 Then
|
If SelectedValues.Count = 1 Then
|
||||||
@ -1437,7 +1427,8 @@ Public Class frmValidator
|
|||||||
Exit Sub
|
Exit Sub
|
||||||
End If
|
End If
|
||||||
LOGGER.Debug("onLookUpselectedValue_Control2Set")
|
LOGGER.Debug("onLookUpselectedValue_Control2Set")
|
||||||
Dim oLookup As LookupControl3 = sender
|
Dim oRepositoryItem As RepositoryItemLookupControl3 = sender
|
||||||
|
Dim oLookup As LookupControl3 = oRepositoryItem.OwnerEdit
|
||||||
Try
|
Try
|
||||||
If Not IsNothing(SelectedValues) Then
|
If Not IsNothing(SelectedValues) Then
|
||||||
If SelectedValues.Count = 1 Then
|
If SelectedValues.Count = 1 Then
|
||||||
@ -3673,6 +3664,8 @@ Public Class frmValidator
|
|||||||
Private Sub btnSave_Click(sender As System.Object, e As System.EventArgs) Handles btnSave.Click
|
Private Sub btnSave_Click(sender As System.Object, e As System.EventArgs) Handles btnSave.Click
|
||||||
btnSave.Enabled = False
|
btnSave.Enabled = False
|
||||||
|
|
||||||
|
' TODO: Use when working on Validation
|
||||||
|
Dim oValidation As Boolean = True
|
||||||
Dim oGrids = (From oControl In pnldesigner.Controls
|
Dim oGrids = (From oControl In pnldesigner.Controls
|
||||||
Where TypeOf oControl Is GridControl
|
Where TypeOf oControl Is GridControl
|
||||||
Select oControl).ToList()
|
Select oControl).ToList()
|
||||||
@ -3680,16 +3673,28 @@ Public Class frmValidator
|
|||||||
For Each oGrid As GridControl In oGrids
|
For Each oGrid As GridControl In oGrids
|
||||||
Dim oView As GridView = oGrid.MainView
|
Dim oView As GridView = oGrid.MainView
|
||||||
|
|
||||||
|
If oView.RowCount = 0 Then
|
||||||
|
Continue For
|
||||||
|
End If
|
||||||
|
|
||||||
For index = 0 To oView.RowCount - 1
|
For index = 0 To oView.RowCount - 1
|
||||||
oView.FocusedRowHandle = index
|
oView.FocusedRowHandle = index
|
||||||
oView.UpdateCurrentRow()
|
|
||||||
|
If oView.UpdateCurrentRow() = False Then
|
||||||
|
oValidation = False
|
||||||
|
Exit For
|
||||||
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
|
If oValidation = False Then
|
||||||
|
Exit For
|
||||||
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
'Return
|
If oValidation = True Then
|
||||||
|
Finish_WFStep()
|
||||||
|
End If
|
||||||
|
|
||||||
Finish_WFStep()
|
|
||||||
btnSave.Enabled = True
|
btnSave.Enabled = True
|
||||||
End Sub
|
End Sub
|
||||||
Private Function btnFinish_continue()
|
Private Function btnFinish_continue()
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user