First create solution
This commit is contained in:
@@ -0,0 +1,108 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
|
||||
Imports DevExpress.Xpo
|
||||
Imports DevExpress.Data.Filtering
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.Persistent.Base
|
||||
Imports DevExpress.Persistent.BaseImpl
|
||||
Imports DevExpress.Persistent.Validation
|
||||
|
||||
<DefaultClassOptions()> _
|
||||
<NavigationItem("SQL Imports")> _
|
||||
Public Class SQLImports
|
||||
Inherits BaseObject
|
||||
Private _SQLServer As String
|
||||
Private _SQLUser As String
|
||||
Private _SQLPassword As String
|
||||
Private _CustomersFrom As CustomersFrom
|
||||
Private _DateFrom As Date
|
||||
Private _DateTo As Date
|
||||
Private _Override As Boolean = False
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
End Sub
|
||||
Property SQLServer As String
|
||||
Get
|
||||
Return _SQLServer
|
||||
End Get
|
||||
Set(ByVal value As String)
|
||||
SetPropertyValue("SQLServer", _SQLServer, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLUser As String
|
||||
Get
|
||||
Return _SQLUser
|
||||
End Get
|
||||
Set(ByVal value As String)
|
||||
SetPropertyValue("SQLUser", _SQLUser, value)
|
||||
End Set
|
||||
End Property
|
||||
Property SQLPassword As String
|
||||
Get
|
||||
Return _SQLPassword
|
||||
End Get
|
||||
Set(ByVal value As String)
|
||||
SetPropertyValue("SQLPassword", _SQLPassword, value)
|
||||
End Set
|
||||
End Property
|
||||
Property CustomersFrom As CustomersFrom
|
||||
Get
|
||||
Return _CustomersFrom
|
||||
End Get
|
||||
Set(ByVal value As CustomersFrom)
|
||||
SetPropertyValue("CustomersFrom", _CustomersFrom, value)
|
||||
End Set
|
||||
End Property
|
||||
Property DateFrom As Date
|
||||
Get
|
||||
Return _DateFrom
|
||||
End Get
|
||||
Set(value As Date)
|
||||
SetPropertyValue("DateFrom", _DateFrom, value)
|
||||
End Set
|
||||
End Property
|
||||
Property DateTo As Date
|
||||
Get
|
||||
Return _DateTo
|
||||
End Get
|
||||
Set(value As Date)
|
||||
SetPropertyValue("DateTo", _DateTo, value)
|
||||
End Set
|
||||
End Property
|
||||
Property Override As Boolean
|
||||
Get
|
||||
Return _Override
|
||||
End Get
|
||||
Set(value As Boolean)
|
||||
SetPropertyValue("Override", _Override, value)
|
||||
End Set
|
||||
End Property
|
||||
<VisibleInListView(False)> _
|
||||
ReadOnly Property BankInformation As XPCollection(Of BankInformation)
|
||||
Get
|
||||
Return New XPCollection(Of BankInformation)(Session, CriteriaOperator.Parse("LiquidAssests.CustomerFrom=?", Me.CustomersFrom))
|
||||
End Get
|
||||
End Property
|
||||
<VisibleInListView(False)> _
|
||||
ReadOnly Property LiquidAssets_Cassa As XPCollection(Of LiquidAssets)
|
||||
Get
|
||||
Return New XPCollection(Of LiquidAssets)(Session, CriteriaOperator.Parse("LiquidAssetsType in (0,2,4)"))
|
||||
End Get
|
||||
End Property
|
||||
<VisibleInListView(False)> _
|
||||
ReadOnly Property LiquidAssets_Compensation As XPCollection(Of LiquidAssets)
|
||||
Get
|
||||
Return New XPCollection(Of LiquidAssets)(Session, CriteriaOperator.Parse("LiquidAssetsType=3"))
|
||||
End Get
|
||||
End Property
|
||||
<VisibleInListView(False)> _
|
||||
ReadOnly Property LiquidAssets_SpecTran As XPCollection(Of LiquidAssets)
|
||||
Get
|
||||
Return New XPCollection(Of LiquidAssets)(Session, CriteriaOperator.Parse("LiquidAssetsType=5"))
|
||||
End Get
|
||||
End Property
|
||||
|
||||
End Class
|
||||
|
||||
+528
@@ -0,0 +1,528 @@
|
||||
Partial Class SQLImportsVC
|
||||
|
||||
<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.Import_Customers = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Country = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Controlling = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Procucts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Storage = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_ChartsOfAccounts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_CustomersGLParameters = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_LiquidAssets = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_VAT = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_GL = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_ProcuctsGroups = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Invoices = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_UniqueObject = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Invoices_Business = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_GLAccounts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_CostHolder = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_CostPlace = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.JobNumberObject = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_GLBank = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_GCassa = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_SpecTran = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Contacts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_GCompensation = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_HRPerson = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_OrderOut = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Circulation = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Operations = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Offers = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.aScriptUpdate = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_OrderIn = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_Pricing = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
'
|
||||
'Import_Customers
|
||||
'
|
||||
Me.Import_Customers.Caption = "Import_Customers"
|
||||
Me.Import_Customers.Category = "Import_Customers"
|
||||
Me.Import_Customers.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Customers.Id = "Import_Customers"
|
||||
Me.Import_Customers.ImageName = Nothing
|
||||
Me.Import_Customers.Shortcut = Nothing
|
||||
Me.Import_Customers.Tag = Nothing
|
||||
Me.Import_Customers.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Customers.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Customers.ToolTip = Nothing
|
||||
Me.Import_Customers.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Country
|
||||
'
|
||||
Me.Import_Country.Caption = "Import_Country"
|
||||
Me.Import_Country.Category = "Import_Country"
|
||||
Me.Import_Country.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Country.Id = "Import_Country"
|
||||
Me.Import_Country.ImageName = Nothing
|
||||
Me.Import_Country.Shortcut = Nothing
|
||||
Me.Import_Country.Tag = Nothing
|
||||
Me.Import_Country.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Country.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Country.ToolTip = Nothing
|
||||
Me.Import_Country.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Controlling
|
||||
'
|
||||
Me.Import_Controlling.Caption = "Import_Controlling"
|
||||
Me.Import_Controlling.Category = "Import_Controlling"
|
||||
Me.Import_Controlling.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Controlling.Id = "Import_Controlling"
|
||||
Me.Import_Controlling.ImageName = Nothing
|
||||
Me.Import_Controlling.Shortcut = Nothing
|
||||
Me.Import_Controlling.Tag = Nothing
|
||||
Me.Import_Controlling.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Controlling.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Controlling.ToolTip = Nothing
|
||||
Me.Import_Controlling.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Procucts
|
||||
'
|
||||
Me.Import_Procucts.Caption = "Import_Procucts"
|
||||
Me.Import_Procucts.Category = "Import_Procucts"
|
||||
Me.Import_Procucts.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Procucts.Id = "Import_Procucts"
|
||||
Me.Import_Procucts.ImageName = Nothing
|
||||
Me.Import_Procucts.Shortcut = Nothing
|
||||
Me.Import_Procucts.Tag = Nothing
|
||||
Me.Import_Procucts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Procucts.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Procucts.ToolTip = Nothing
|
||||
Me.Import_Procucts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Storage
|
||||
'
|
||||
Me.Import_Storage.Caption = "Import_Storage"
|
||||
Me.Import_Storage.Category = "Import_Storage"
|
||||
Me.Import_Storage.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Storage.Id = "Import_Storage"
|
||||
Me.Import_Storage.ImageName = Nothing
|
||||
Me.Import_Storage.Shortcut = Nothing
|
||||
Me.Import_Storage.Tag = Nothing
|
||||
Me.Import_Storage.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Storage.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Storage.ToolTip = Nothing
|
||||
Me.Import_Storage.TypeOfView = Nothing
|
||||
'
|
||||
'Import_ChartsOfAccounts
|
||||
'
|
||||
Me.Import_ChartsOfAccounts.Caption = "Import_ChartsOfAccounts"
|
||||
Me.Import_ChartsOfAccounts.Category = "Import_ChartsOfAccounts"
|
||||
Me.Import_ChartsOfAccounts.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_ChartsOfAccounts.Id = "Import_ChartsOfAccounts"
|
||||
Me.Import_ChartsOfAccounts.ImageName = Nothing
|
||||
Me.Import_ChartsOfAccounts.Shortcut = Nothing
|
||||
Me.Import_ChartsOfAccounts.Tag = Nothing
|
||||
Me.Import_ChartsOfAccounts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_ChartsOfAccounts.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_ChartsOfAccounts.ToolTip = Nothing
|
||||
Me.Import_ChartsOfAccounts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_CustomersGLParameters
|
||||
'
|
||||
Me.Import_CustomersGLParameters.Caption = "Import_CustomersGLParameters"
|
||||
Me.Import_CustomersGLParameters.Category = "Import_CustomersGLParameters"
|
||||
Me.Import_CustomersGLParameters.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_CustomersGLParameters.Id = "Import_CustomersGLParameters"
|
||||
Me.Import_CustomersGLParameters.ImageName = Nothing
|
||||
Me.Import_CustomersGLParameters.Shortcut = Nothing
|
||||
Me.Import_CustomersGLParameters.Tag = Nothing
|
||||
Me.Import_CustomersGLParameters.TargetObjectsCriteria = Nothing
|
||||
Me.Import_CustomersGLParameters.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_CustomersGLParameters.ToolTip = Nothing
|
||||
Me.Import_CustomersGLParameters.TypeOfView = Nothing
|
||||
'
|
||||
'Import_LiquidAssets
|
||||
'
|
||||
Me.Import_LiquidAssets.Caption = "Import_LiquidAssets"
|
||||
Me.Import_LiquidAssets.Category = "Import_LiquidAssets"
|
||||
Me.Import_LiquidAssets.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_LiquidAssets.Id = "Import_LiquidAssets"
|
||||
Me.Import_LiquidAssets.ImageName = Nothing
|
||||
Me.Import_LiquidAssets.Shortcut = Nothing
|
||||
Me.Import_LiquidAssets.Tag = Nothing
|
||||
Me.Import_LiquidAssets.TargetObjectsCriteria = Nothing
|
||||
Me.Import_LiquidAssets.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_LiquidAssets.ToolTip = Nothing
|
||||
Me.Import_LiquidAssets.TypeOfView = Nothing
|
||||
'
|
||||
'Import_VAT
|
||||
'
|
||||
Me.Import_VAT.Caption = "Import_VAT"
|
||||
Me.Import_VAT.Category = "Import_VAT"
|
||||
Me.Import_VAT.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_VAT.Id = "Import_VAT"
|
||||
Me.Import_VAT.ImageName = Nothing
|
||||
Me.Import_VAT.Shortcut = Nothing
|
||||
Me.Import_VAT.Tag = Nothing
|
||||
Me.Import_VAT.TargetObjectsCriteria = Nothing
|
||||
Me.Import_VAT.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_VAT.ToolTip = Nothing
|
||||
Me.Import_VAT.TypeOfView = Nothing
|
||||
'
|
||||
'Import_GL
|
||||
'
|
||||
Me.Import_GL.Caption = "Import_GL"
|
||||
Me.Import_GL.Category = "Import_GL"
|
||||
Me.Import_GL.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_GL.Id = "Import_GL"
|
||||
Me.Import_GL.ImageName = Nothing
|
||||
Me.Import_GL.Shortcut = Nothing
|
||||
Me.Import_GL.Tag = Nothing
|
||||
Me.Import_GL.TargetObjectsCriteria = Nothing
|
||||
Me.Import_GL.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_GL.ToolTip = Nothing
|
||||
Me.Import_GL.TypeOfView = Nothing
|
||||
'
|
||||
'Import_ProcuctsGroups
|
||||
'
|
||||
Me.Import_ProcuctsGroups.Caption = "Import Procucts Groups"
|
||||
Me.Import_ProcuctsGroups.Category = "Import_ProcuctsGroups"
|
||||
Me.Import_ProcuctsGroups.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_ProcuctsGroups.Id = "Import_ProcuctsGroups"
|
||||
Me.Import_ProcuctsGroups.ImageName = Nothing
|
||||
Me.Import_ProcuctsGroups.Shortcut = Nothing
|
||||
Me.Import_ProcuctsGroups.Tag = Nothing
|
||||
Me.Import_ProcuctsGroups.TargetObjectsCriteria = Nothing
|
||||
Me.Import_ProcuctsGroups.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_ProcuctsGroups.ToolTip = Nothing
|
||||
Me.Import_ProcuctsGroups.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Invoices
|
||||
'
|
||||
Me.Import_Invoices.Caption = "Import invoices"
|
||||
Me.Import_Invoices.Category = "Import_Invoices"
|
||||
Me.Import_Invoices.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Invoices.Id = "Import_Invoices"
|
||||
Me.Import_Invoices.ImageName = "document_lock"
|
||||
Me.Import_Invoices.Shortcut = Nothing
|
||||
Me.Import_Invoices.Tag = Nothing
|
||||
Me.Import_Invoices.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Invoices.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Invoices.ToolTip = Nothing
|
||||
Me.Import_Invoices.TypeOfView = Nothing
|
||||
'
|
||||
'Import_UniqueObject
|
||||
'
|
||||
Me.Import_UniqueObject.Caption = "Import_UniqueObject"
|
||||
Me.Import_UniqueObject.Category = "Import_UniqueObject"
|
||||
Me.Import_UniqueObject.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_UniqueObject.Id = "Import_UniqueObject"
|
||||
Me.Import_UniqueObject.ImageName = Nothing
|
||||
Me.Import_UniqueObject.Shortcut = Nothing
|
||||
Me.Import_UniqueObject.Tag = Nothing
|
||||
Me.Import_UniqueObject.TargetObjectsCriteria = Nothing
|
||||
Me.Import_UniqueObject.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_UniqueObject.ToolTip = Nothing
|
||||
Me.Import_UniqueObject.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Invoices_Business
|
||||
'
|
||||
Me.Import_Invoices_Business.Caption = "Import invoices"
|
||||
Me.Import_Invoices_Business.Category = "Import_Invoices"
|
||||
Me.Import_Invoices_Business.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Invoices_Business.Id = "Import_Invoices_Business"
|
||||
Me.Import_Invoices_Business.ImageName = "document_lock"
|
||||
Me.Import_Invoices_Business.Shortcut = Nothing
|
||||
Me.Import_Invoices_Business.Tag = Nothing
|
||||
Me.Import_Invoices_Business.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Invoices_Business.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Invoices_Business.ToolTip = Nothing
|
||||
Me.Import_Invoices_Business.TypeOfView = Nothing
|
||||
'
|
||||
'Import_GLAccounts
|
||||
'
|
||||
Me.Import_GLAccounts.Caption = "Import_GLAccounts"
|
||||
Me.Import_GLAccounts.Category = "Import_GL"
|
||||
Me.Import_GLAccounts.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_GLAccounts.Id = "Import_GLAccounts"
|
||||
Me.Import_GLAccounts.ImageName = Nothing
|
||||
Me.Import_GLAccounts.Shortcut = Nothing
|
||||
Me.Import_GLAccounts.Tag = Nothing
|
||||
Me.Import_GLAccounts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_GLAccounts.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_GLAccounts.ToolTip = Nothing
|
||||
Me.Import_GLAccounts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_CostHolder
|
||||
'
|
||||
Me.Import_CostHolder.Caption = "Import_CostHolder"
|
||||
Me.Import_CostHolder.Category = "Import_CostHolder"
|
||||
Me.Import_CostHolder.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_CostHolder.Id = "Import_CostHolder"
|
||||
Me.Import_CostHolder.ImageName = Nothing
|
||||
Me.Import_CostHolder.Shortcut = Nothing
|
||||
Me.Import_CostHolder.Tag = Nothing
|
||||
Me.Import_CostHolder.TargetObjectsCriteria = Nothing
|
||||
Me.Import_CostHolder.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_CostHolder.ToolTip = Nothing
|
||||
Me.Import_CostHolder.TypeOfView = Nothing
|
||||
'
|
||||
'Import_CostPlace
|
||||
'
|
||||
Me.Import_CostPlace.Caption = "Import_CostPlace"
|
||||
Me.Import_CostPlace.Category = "Import_CostPlace"
|
||||
Me.Import_CostPlace.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_CostPlace.Id = "Import_CostPlace"
|
||||
Me.Import_CostPlace.ImageName = Nothing
|
||||
Me.Import_CostPlace.Shortcut = Nothing
|
||||
Me.Import_CostPlace.Tag = Nothing
|
||||
Me.Import_CostPlace.TargetObjectsCriteria = Nothing
|
||||
Me.Import_CostPlace.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_CostPlace.ToolTip = Nothing
|
||||
Me.Import_CostPlace.TypeOfView = Nothing
|
||||
'
|
||||
'JobNumberObject
|
||||
'
|
||||
Me.JobNumberObject.Caption = "Import_JobNumberObject"
|
||||
Me.JobNumberObject.Category = "Import_JobNumberObject"
|
||||
Me.JobNumberObject.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.JobNumberObject.Id = "Import_JobNumberObject"
|
||||
Me.JobNumberObject.ImageName = Nothing
|
||||
Me.JobNumberObject.Shortcut = Nothing
|
||||
Me.JobNumberObject.Tag = Nothing
|
||||
Me.JobNumberObject.TargetObjectsCriteria = Nothing
|
||||
Me.JobNumberObject.TargetViewId = "SQLImports_DetailView"
|
||||
Me.JobNumberObject.ToolTip = Nothing
|
||||
Me.JobNumberObject.TypeOfView = Nothing
|
||||
'
|
||||
'Import_GLBank
|
||||
'
|
||||
Me.Import_GLBank.Caption = "Import Bank"
|
||||
Me.Import_GLBank.Category = "Import_GLBank"
|
||||
Me.Import_GLBank.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_GLBank.Id = "Import_GLBank"
|
||||
Me.Import_GLBank.ImageName = Nothing
|
||||
Me.Import_GLBank.Shortcut = Nothing
|
||||
Me.Import_GLBank.Tag = Nothing
|
||||
Me.Import_GLBank.TargetObjectsCriteria = Nothing
|
||||
Me.Import_GLBank.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_GLBank.ToolTip = Nothing
|
||||
Me.Import_GLBank.TypeOfView = Nothing
|
||||
'
|
||||
'Import_GCassa
|
||||
'
|
||||
Me.Import_GCassa.Caption = "Import cassa"
|
||||
Me.Import_GCassa.Category = "Import_GCassa"
|
||||
Me.Import_GCassa.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_GCassa.Id = "Import_GCassa"
|
||||
Me.Import_GCassa.ImageName = Nothing
|
||||
Me.Import_GCassa.Shortcut = Nothing
|
||||
Me.Import_GCassa.Tag = Nothing
|
||||
Me.Import_GCassa.TargetObjectsCriteria = Nothing
|
||||
Me.Import_GCassa.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_GCassa.ToolTip = Nothing
|
||||
Me.Import_GCassa.TypeOfView = Nothing
|
||||
'
|
||||
'Import_SpecTran
|
||||
'
|
||||
Me.Import_SpecTran.Caption = "Import spec tran."
|
||||
Me.Import_SpecTran.Category = "Import_GCassa"
|
||||
Me.Import_SpecTran.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_SpecTran.Id = "Import_SpecTran"
|
||||
Me.Import_SpecTran.ImageName = Nothing
|
||||
Me.Import_SpecTran.Shortcut = Nothing
|
||||
Me.Import_SpecTran.Tag = Nothing
|
||||
Me.Import_SpecTran.TargetObjectsCriteria = Nothing
|
||||
Me.Import_SpecTran.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_SpecTran.ToolTip = Nothing
|
||||
Me.Import_SpecTran.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Contacts
|
||||
'
|
||||
Me.Import_Contacts.Caption = "Import_Contacts"
|
||||
Me.Import_Contacts.Category = "Import_Contacts"
|
||||
Me.Import_Contacts.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Contacts.Id = "Import_Contacts"
|
||||
Me.Import_Contacts.ImageName = Nothing
|
||||
Me.Import_Contacts.Shortcut = Nothing
|
||||
Me.Import_Contacts.Tag = Nothing
|
||||
Me.Import_Contacts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Contacts.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Contacts.ToolTip = Nothing
|
||||
Me.Import_Contacts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_GCompensation
|
||||
'
|
||||
Me.Import_GCompensation.Caption = "Import cassa"
|
||||
Me.Import_GCompensation.Category = "Import_GCompensation"
|
||||
Me.Import_GCompensation.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_GCompensation.Id = "Import_GCompensation"
|
||||
Me.Import_GCompensation.ImageName = Nothing
|
||||
Me.Import_GCompensation.Shortcut = Nothing
|
||||
Me.Import_GCompensation.Tag = Nothing
|
||||
Me.Import_GCompensation.TargetObjectsCriteria = Nothing
|
||||
Me.Import_GCompensation.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_GCompensation.ToolTip = Nothing
|
||||
Me.Import_GCompensation.TypeOfView = Nothing
|
||||
'
|
||||
'Import_HRPerson
|
||||
'
|
||||
Me.Import_HRPerson.Caption = "Import_HRPerson"
|
||||
Me.Import_HRPerson.Category = "Import_HRPerson"
|
||||
Me.Import_HRPerson.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_HRPerson.Id = "Import_HRPerson"
|
||||
Me.Import_HRPerson.ImageName = Nothing
|
||||
Me.Import_HRPerson.Shortcut = Nothing
|
||||
Me.Import_HRPerson.Tag = Nothing
|
||||
Me.Import_HRPerson.TargetObjectsCriteria = Nothing
|
||||
Me.Import_HRPerson.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_HRPerson.ToolTip = Nothing
|
||||
Me.Import_HRPerson.TypeOfView = Nothing
|
||||
'
|
||||
'Import_OrderOut
|
||||
'
|
||||
Me.Import_OrderOut.Caption = "Import_OrderOut"
|
||||
Me.Import_OrderOut.Category = "Import_OrderOut"
|
||||
Me.Import_OrderOut.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_OrderOut.Id = "Import_OrderOut"
|
||||
Me.Import_OrderOut.ImageName = Nothing
|
||||
Me.Import_OrderOut.Shortcut = Nothing
|
||||
Me.Import_OrderOut.Tag = Nothing
|
||||
Me.Import_OrderOut.TargetObjectsCriteria = Nothing
|
||||
Me.Import_OrderOut.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_OrderOut.ToolTip = Nothing
|
||||
Me.Import_OrderOut.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Circulation
|
||||
'
|
||||
Me.Import_Circulation.Caption = "Import_Circulation"
|
||||
Me.Import_Circulation.Category = "Import_Circulation"
|
||||
Me.Import_Circulation.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Circulation.Id = "Import_Circulation"
|
||||
Me.Import_Circulation.ImageName = Nothing
|
||||
Me.Import_Circulation.Shortcut = Nothing
|
||||
Me.Import_Circulation.Tag = Nothing
|
||||
Me.Import_Circulation.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Circulation.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Circulation.ToolTip = Nothing
|
||||
Me.Import_Circulation.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Operations
|
||||
'
|
||||
Me.Import_Operations.Caption = "Import_Operations"
|
||||
Me.Import_Operations.Category = ""
|
||||
Me.Import_Operations.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Operations.Id = "Import_Operations"
|
||||
Me.Import_Operations.ImageName = Nothing
|
||||
Me.Import_Operations.Shortcut = Nothing
|
||||
Me.Import_Operations.Tag = Nothing
|
||||
Me.Import_Operations.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Operations.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Operations.ToolTip = Nothing
|
||||
Me.Import_Operations.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Offers
|
||||
'
|
||||
Me.Import_Offers.Caption = "Import_Offers"
|
||||
Me.Import_Offers.Category = "Import_Offers"
|
||||
Me.Import_Offers.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Offers.Id = "Import_Offers"
|
||||
Me.Import_Offers.ImageName = Nothing
|
||||
Me.Import_Offers.Shortcut = Nothing
|
||||
Me.Import_Offers.Tag = Nothing
|
||||
Me.Import_Offers.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Offers.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Offers.ToolTip = Nothing
|
||||
Me.Import_Offers.TypeOfView = Nothing
|
||||
'
|
||||
'aScriptUpdate
|
||||
'
|
||||
Me.aScriptUpdate.Caption = "aScript Update"
|
||||
Me.aScriptUpdate.ConfirmationMessage = Nothing
|
||||
Me.aScriptUpdate.Id = "aScriptUpdate"
|
||||
Me.aScriptUpdate.ImageName = Nothing
|
||||
Me.aScriptUpdate.Shortcut = Nothing
|
||||
Me.aScriptUpdate.Tag = Nothing
|
||||
Me.aScriptUpdate.TargetObjectsCriteria = Nothing
|
||||
Me.aScriptUpdate.TargetViewId = "SQLImports_DetailView"
|
||||
Me.aScriptUpdate.ToolTip = Nothing
|
||||
Me.aScriptUpdate.TypeOfView = Nothing
|
||||
'
|
||||
'Import_OrderIn
|
||||
'
|
||||
Me.Import_OrderIn.Caption = "Import_OrderIn"
|
||||
Me.Import_OrderIn.Category = "Import_OrderIn"
|
||||
Me.Import_OrderIn.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_OrderIn.Id = "Import_OrderIn"
|
||||
Me.Import_OrderIn.ImageName = Nothing
|
||||
Me.Import_OrderIn.Shortcut = Nothing
|
||||
Me.Import_OrderIn.Tag = Nothing
|
||||
Me.Import_OrderIn.TargetObjectsCriteria = Nothing
|
||||
Me.Import_OrderIn.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_OrderIn.ToolTip = Nothing
|
||||
Me.Import_OrderIn.TypeOfView = Nothing
|
||||
'
|
||||
'Import_Pricing
|
||||
'
|
||||
Me.Import_Pricing.Caption = "Import_Pricing"
|
||||
Me.Import_Pricing.Category = "Import_Pricing"
|
||||
Me.Import_Pricing.ConfirmationMessage = "Do you want to execute command ?"
|
||||
Me.Import_Pricing.Id = "Import_Pricing"
|
||||
Me.Import_Pricing.ImageName = Nothing
|
||||
Me.Import_Pricing.Shortcut = Nothing
|
||||
Me.Import_Pricing.Tag = Nothing
|
||||
Me.Import_Pricing.TargetObjectsCriteria = Nothing
|
||||
Me.Import_Pricing.TargetViewId = "SQLImports_DetailView"
|
||||
Me.Import_Pricing.ToolTip = Nothing
|
||||
Me.Import_Pricing.TypeOfView = Nothing
|
||||
|
||||
End Sub
|
||||
Friend WithEvents Import_Customers As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Country As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Controlling As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Procucts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Storage As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_ChartsOfAccounts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_CustomersGLParameters As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_LiquidAssets As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_VAT As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_GL As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_ProcuctsGroups As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Invoices As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_UniqueObject As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Invoices_Business As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_GLAccounts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_CostHolder As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_CostPlace As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents JobNumberObject As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_GLBank As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_GCassa As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_SpecTran As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Contacts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_GCompensation As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_HRPerson As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_OrderOut As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Circulation As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Operations As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Offers As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents aScriptUpdate As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_OrderIn As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_Pricing As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,216 @@
|
||||
<?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="Import_Customers.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>157, 54</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Country.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>743, 54</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Controlling.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>199, 128</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Procucts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 165</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Storage.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>809, 165</value>
|
||||
</metadata>
|
||||
<metadata name="Import_ChartsOfAccounts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>629, 165</value>
|
||||
</metadata>
|
||||
<metadata name="Import_CustomersGLParameters.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>415, 165</value>
|
||||
</metadata>
|
||||
<metadata name="Import_LiquidAssets.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>262, 165</value>
|
||||
</metadata>
|
||||
<metadata name="Import_VAT.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>150, 165</value>
|
||||
</metadata>
|
||||
<metadata name="Import_GL.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>805, 128</value>
|
||||
</metadata>
|
||||
<metadata name="Import_ProcuctsGroups.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>636, 128</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Invoices.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>503, 128</value>
|
||||
</metadata>
|
||||
<metadata name="Import_UniqueObject.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>344, 128</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Invoices_Business.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 128</value>
|
||||
</metadata>
|
||||
<metadata name="Import_GLAccounts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>699, 91</value>
|
||||
</metadata>
|
||||
<metadata name="Import_CostHolder.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>553, 91</value>
|
||||
</metadata>
|
||||
<metadata name="Import_CostPlace.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>414, 91</value>
|
||||
</metadata>
|
||||
<metadata name="JobNumberObject.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>274, 91</value>
|
||||
</metadata>
|
||||
<metadata name="Import_GLBank.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>145, 91</value>
|
||||
</metadata>
|
||||
<metadata name="Import_GCassa.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 91</value>
|
||||
</metadata>
|
||||
<metadata name="Import_SpecTran.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>605, 54</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Contacts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>471, 54</value>
|
||||
</metadata>
|
||||
<metadata name="Import_GCompensation.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>301, 54</value>
|
||||
</metadata>
|
||||
<metadata name="Import_HRPerson.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 54</value>
|
||||
</metadata>
|
||||
<metadata name="Import_OrderOut.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>805, 17</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Circulation.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>536, 17</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Operations.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>390, 17</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Offers.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>268, 17</value>
|
||||
</metadata>
|
||||
<metadata name="aScriptUpdate.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>147, 17</value>
|
||||
</metadata>
|
||||
<metadata name="Import_OrderIn.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<metadata name="Import_Pricing.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>680, 17</value>
|
||||
</metadata>
|
||||
<metadata name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>False</value>
|
||||
</metadata>
|
||||
</root>
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user