91 lines
4.0 KiB
VB.net
91 lines
4.0 KiB
VB.net
Partial Class GLResetVC
|
|
|
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
|
Public Sub New(ByVal Container As System.ComponentModel.IContainer)
|
|
MyClass.New()
|
|
|
|
'Required for Windows.Forms Class Composition Designer support
|
|
Container.Add(Me)
|
|
|
|
End Sub
|
|
|
|
'Component 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 Component Designer
|
|
Private components As System.ComponentModel.IContainer
|
|
|
|
'NOTE: The following procedure is required by the Component Designer
|
|
'It can be modified using the Component Designer.
|
|
'Do not modify it using the code editor.
|
|
<System.Diagnostics.DebuggerStepThrough()> _
|
|
Private Sub InitializeComponent()
|
|
Me.components = New System.ComponentModel.Container()
|
|
Me.aResetStorageTransactions = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
|
Me.aResetAll = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
|
Me.aResetObject = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
|
'
|
|
'aResetStorageTransactions
|
|
'
|
|
Me.aResetStorageTransactions.Caption = "Reset Storage Transactions"
|
|
Me.aResetStorageTransactions.ConfirmationMessage = "Do you want to execute command ?"
|
|
Me.aResetStorageTransactions.Id = "aResetStorageTransactions"
|
|
Me.aResetStorageTransactions.ImageName = "data_delete"
|
|
Me.aResetStorageTransactions.Shortcut = Nothing
|
|
Me.aResetStorageTransactions.Tag = Nothing
|
|
Me.aResetStorageTransactions.TargetObjectsCriteria = Nothing
|
|
Me.aResetStorageTransactions.TargetViewId = ""
|
|
Me.aResetStorageTransactions.ToolTip = Nothing
|
|
Me.aResetStorageTransactions.TypeOfView = Nothing
|
|
'
|
|
'aResetAll
|
|
'
|
|
Me.aResetAll.ActionMeaning = DevExpress.ExpressApp.Actions.ActionMeaning.Accept
|
|
Me.aResetAll.Caption = "aReset All"
|
|
Me.aResetAll.Category = "Edit"
|
|
Me.aResetAll.ConfirmationMessage = "Do you want to execute command ?"
|
|
Me.aResetAll.Id = "aResetAll"
|
|
Me.aResetAll.ImageName = Nothing
|
|
Me.aResetAll.Shortcut = Nothing
|
|
Me.aResetAll.Tag = Nothing
|
|
Me.aResetAll.TargetObjectsCriteria = Nothing
|
|
Me.aResetAll.TargetObjectType = GetType(SISBusiness.[Module].Win.ResetObjects)
|
|
Me.aResetAll.TargetViewId = Nothing
|
|
Me.aResetAll.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
|
Me.aResetAll.ToolTip = Nothing
|
|
Me.aResetAll.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
|
'
|
|
'aResetObject
|
|
'
|
|
Me.aResetObject.Caption = "aReset Object"
|
|
Me.aResetObject.Category = "RecordEdit"
|
|
Me.aResetObject.ConfirmationMessage = "Do you want to execute command ?"
|
|
Me.aResetObject.Id = "aResetObject"
|
|
Me.aResetObject.ImageName = Nothing
|
|
Me.aResetObject.Shortcut = Nothing
|
|
Me.aResetObject.Tag = Nothing
|
|
Me.aResetObject.TargetObjectsCriteria = Nothing
|
|
Me.aResetObject.TargetObjectType = GetType(SISBusiness.[Module].Win.ResetObjects)
|
|
Me.aResetObject.TargetViewId = ""
|
|
Me.aResetObject.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
|
Me.aResetObject.ToolTip = Nothing
|
|
Me.aResetObject.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
|
'
|
|
'GLResetVC
|
|
'
|
|
Me.TargetViewType = DevExpress.ExpressApp.ViewType.DetailView
|
|
Me.TypeOfView = GetType(DevExpress.ExpressApp.DetailView)
|
|
|
|
End Sub
|
|
Friend WithEvents aResetAll As DevExpress.ExpressApp.Actions.SimpleAction
|
|
Friend WithEvents aResetObject As DevExpress.ExpressApp.Actions.SimpleAction
|
|
Friend WithEvents aResetStorageTransactions As DevExpress.ExpressApp.Actions.SimpleAction
|
|
|
|
End Class
|