First create solution
This commit is contained in:
+76
@@ -0,0 +1,76 @@
|
||||
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
|
||||
Imports DevExpress.ExpressApp.ConditionalAppearance
|
||||
|
||||
Public Enum eImportPHType
|
||||
eApartments = 0
|
||||
eOffices = 1
|
||||
eGarages = 2
|
||||
eContainers = 3
|
||||
eInvoiceRows = 4
|
||||
End Enum
|
||||
<DefaultClassOptions()> _
|
||||
<NonPersistent()> _
|
||||
<CreatableItem(False)> _
|
||||
<NavigationItem(False)> _
|
||||
<Appearance("Import_PH_Immovables_PopUp - Disable OFileName", AppearanceItemType.ViewItem, "1=1", TargetItems:="FileName", Enabled:=False)> _
|
||||
<Appearance("Import_PH_Immovables_PopUp - Hide Customers", TargetItems:="Customers", Criteria:="ImportPHType != 4", Visibility:=Editors.ViewItemVisibility.Hide, Context:="DetailView")> _
|
||||
<Appearance("Import_PH_Immovables_PopUp - Hide CustomersFrom", TargetItems:="CustomersFrom", Criteria:="ImportPHType != 4", Visibility:=Editors.ViewItemVisibility.Hide, Context:="DetailView")> _
|
||||
Public Class Import_PH_Immovables_PopUp
|
||||
Inherits BaseObject
|
||||
|
||||
Private _ImportPHType As eImportPHType
|
||||
Private _FileName As String
|
||||
Private _Customers As Customers
|
||||
Private _CustomersFrom As CustomersFrom
|
||||
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
End Sub
|
||||
Public Overrides Sub AfterConstruction()
|
||||
MyBase.AfterConstruction()
|
||||
End Sub
|
||||
|
||||
<ImmediatePostData()> _
|
||||
Property ImportPHType As eImportPHType
|
||||
Get
|
||||
Return _ImportPHType
|
||||
End Get
|
||||
Set(value As eImportPHType)
|
||||
SetPropertyValue("ImportPHType", _ImportPHType, value)
|
||||
End Set
|
||||
End Property
|
||||
<ImmediatePostData()> _
|
||||
Property FileName As String
|
||||
Get
|
||||
Return _FileName
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("FileName", _FileName, value)
|
||||
End Set
|
||||
End Property
|
||||
Property Customers As Customers
|
||||
Get
|
||||
Return _Customers
|
||||
End Get
|
||||
Set(value As Customers)
|
||||
SetPropertyValue("Customers", _Customers, value)
|
||||
End Set
|
||||
End Property
|
||||
Property CustomersFrom As CustomersFrom
|
||||
Get
|
||||
Return _CustomersFrom
|
||||
End Get
|
||||
Set(value As CustomersFrom)
|
||||
SetPropertyValue("CustomersFrom", _CustomersFrom, value)
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
@@ -0,0 +1,88 @@
|
||||
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(False), CreatableItem(False)> _
|
||||
Public Class XLSExportImport
|
||||
Inherits BaseObject
|
||||
|
||||
Private _ObjectType As Type
|
||||
Private _ShortName As String
|
||||
Private _Description As String
|
||||
Private _UserCreated As User
|
||||
Private _ObjectCreated As Date
|
||||
Private _ExcelProperty As String
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
' This constructor is used when an object is loaded from a persistent storage.
|
||||
' Do not place any code here or place it only when the IsLoading property is false:
|
||||
' if (!IsLoading){
|
||||
' It is now OK to place your initialization code here.
|
||||
' }
|
||||
' or as an alternative, move your initialization code into the AfterConstruction method.
|
||||
End Sub
|
||||
Public Overrides Sub AfterConstruction()
|
||||
MyBase.AfterConstruction()
|
||||
' Place here your initialization code.
|
||||
End Sub
|
||||
|
||||
Property ObjectType As Type
|
||||
Get
|
||||
Return _ObjectType
|
||||
End Get
|
||||
Set(value As Type)
|
||||
SetPropertyValue("ObjectType", _ObjectType, value)
|
||||
End Set
|
||||
End Property
|
||||
Property ShortName As String
|
||||
Get
|
||||
Return _ShortName
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("ShortName", _ShortName, value)
|
||||
End Set
|
||||
End Property
|
||||
<Size(-1)> _
|
||||
Property Description As String
|
||||
Get
|
||||
Return _Description
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("Description", _Description, value)
|
||||
End Set
|
||||
End Property
|
||||
<NonCloneable> _
|
||||
Property UserCreated As User
|
||||
Get
|
||||
Return _UserCreated
|
||||
End Get
|
||||
Set(value As User)
|
||||
SetPropertyValue("UserCreated", _UserCreated, value)
|
||||
End Set
|
||||
End Property
|
||||
<NonCloneable> _
|
||||
Property ObjectCreated As Date
|
||||
Get
|
||||
Return _ObjectCreated
|
||||
End Get
|
||||
Set(value As Date)
|
||||
SetPropertyValue("ObjectCreated", _ObjectCreated, value)
|
||||
End Set
|
||||
End Property
|
||||
<Size(-1)> _
|
||||
Property ExcelProperty As String
|
||||
Get
|
||||
Return _ExcelProperty
|
||||
End Get
|
||||
Set(value As String)
|
||||
SetPropertyValue("ExcelProperty", _ExcelProperty, value)
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
Partial Class XLSExportImportVC
|
||||
|
||||
<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.aCreateExportImportSpread = New DevExpress.ExpressApp.Actions.PopupWindowShowAction(Me.components)
|
||||
'
|
||||
'aCreateExportImportSpread
|
||||
'
|
||||
Me.aCreateExportImportSpread.AcceptButtonCaption = Nothing
|
||||
Me.aCreateExportImportSpread.CancelButtonCaption = Nothing
|
||||
Me.aCreateExportImportSpread.Caption = "aCreate Export Import Spread"
|
||||
Me.aCreateExportImportSpread.Category = "aCreateExportImportSpread"
|
||||
Me.aCreateExportImportSpread.ConfirmationMessage = Nothing
|
||||
Me.aCreateExportImportSpread.Id = "aCreateExportImportSpread"
|
||||
Me.aCreateExportImportSpread.ToolTip = Nothing
|
||||
'
|
||||
'XLSExportImportVC
|
||||
'
|
||||
Me.Actions.Add(Me.aCreateExportImportSpread)
|
||||
|
||||
End Sub
|
||||
Friend WithEvents aCreateExportImportSpread As DevExpress.ExpressApp.Actions.PopupWindowShowAction
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,126 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
<xsd:attribute ref="xml:space" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<metadata name="aCreateExportImportSpread.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 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>
|
||||
@@ -0,0 +1,35 @@
|
||||
Imports System
|
||||
Imports System.ComponentModel
|
||||
Imports System.Collections.Generic
|
||||
Imports System.Diagnostics
|
||||
Imports System.Text
|
||||
|
||||
Imports DevExpress.ExpressApp
|
||||
Imports DevExpress.ExpressApp.Actions
|
||||
Imports DevExpress.Persistent.Base
|
||||
|
||||
Public Class XLSExportImportVC
|
||||
Inherits DevExpress.ExpressApp.ViewController
|
||||
|
||||
Public Sub New()
|
||||
MyBase.New()
|
||||
|
||||
'This call is required by the Component Designer.
|
||||
InitializeComponent()
|
||||
RegisterActions(components)
|
||||
|
||||
End Sub
|
||||
Protected Overrides Sub OnActivated()
|
||||
MyBase.OnActivated()
|
||||
|
||||
Frame.GetController(Of XLSExportImportVC).aCreateExportImportSpread.Active.SetItemValue("", False)
|
||||
|
||||
If View.Id = "Products_ListView" Then
|
||||
Frame.GetController(Of XLSExportImportVC).aCreateExportImportSpread.Active.SetItemValue("", True)
|
||||
End If
|
||||
End Sub
|
||||
|
||||
Private Sub aCreateExportImportSpread_Execute(sender As Object, e As PopupWindowShowActionExecuteEventArgs) Handles aCreateExportImportSpread.Execute
|
||||
|
||||
End Sub
|
||||
End Class
|
||||
@@ -0,0 +1,28 @@
|
||||
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 XLSImports
|
||||
Inherits BaseObject
|
||||
Private _XLSFileName As FileData
|
||||
Public Sub New(ByVal session As Session)
|
||||
MyBase.New(session)
|
||||
End Sub
|
||||
Property XLSFileName As FileData
|
||||
Get
|
||||
Return _XLSFileName
|
||||
End Get
|
||||
Set(ByVal value As FileData)
|
||||
SetPropertyValue("XLSFileName", _XLSFileName, value)
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
+248
@@ -0,0 +1,248 @@
|
||||
Partial Class XLSImportsVC
|
||||
|
||||
<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_XLS_Customers = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_Contacts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_Products = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_ProductGroups = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_CustomersBankAccounts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_LiquidAssets = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_ChartsOfAccounts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_Units = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_Contracts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_GLAccounts = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_Services = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_XLS_KSZ = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
Me.Import_PH_Immovables = New DevExpress.ExpressApp.Actions.PopupWindowShowAction(Me.components)
|
||||
Me.aOpenFileDialog = New DevExpress.ExpressApp.Actions.SimpleAction(Me.components)
|
||||
'
|
||||
'Import_XLS_Customers
|
||||
'
|
||||
Me.Import_XLS_Customers.Caption = "Import_XLS_Customers"
|
||||
Me.Import_XLS_Customers.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_Customers.Id = "Import_XLS_Customers"
|
||||
Me.Import_XLS_Customers.ImageName = Nothing
|
||||
Me.Import_XLS_Customers.Shortcut = Nothing
|
||||
Me.Import_XLS_Customers.Tag = Nothing
|
||||
Me.Import_XLS_Customers.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_Customers.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_Customers.ToolTip = Nothing
|
||||
Me.Import_XLS_Customers.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_Contacts
|
||||
'
|
||||
Me.Import_XLS_Contacts.Caption = "Import_XLS_Contacts"
|
||||
Me.Import_XLS_Contacts.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_Contacts.Id = "Import_XLS_Contacts"
|
||||
Me.Import_XLS_Contacts.ImageName = Nothing
|
||||
Me.Import_XLS_Contacts.Shortcut = Nothing
|
||||
Me.Import_XLS_Contacts.Tag = Nothing
|
||||
Me.Import_XLS_Contacts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_Contacts.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_Contacts.ToolTip = Nothing
|
||||
Me.Import_XLS_Contacts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_Products
|
||||
'
|
||||
Me.Import_XLS_Products.Caption = "Import_XLS_Products"
|
||||
Me.Import_XLS_Products.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_Products.Id = "Import_XLS_Products"
|
||||
Me.Import_XLS_Products.ImageName = Nothing
|
||||
Me.Import_XLS_Products.Shortcut = Nothing
|
||||
Me.Import_XLS_Products.Tag = Nothing
|
||||
Me.Import_XLS_Products.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_Products.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_Products.ToolTip = Nothing
|
||||
Me.Import_XLS_Products.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_ProductGroups
|
||||
'
|
||||
Me.Import_XLS_ProductGroups.Caption = "Import_XLS_ProductGroups"
|
||||
Me.Import_XLS_ProductGroups.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_ProductGroups.Id = "Import_XLS_ProductGroups"
|
||||
Me.Import_XLS_ProductGroups.ImageName = Nothing
|
||||
Me.Import_XLS_ProductGroups.Shortcut = Nothing
|
||||
Me.Import_XLS_ProductGroups.Tag = Nothing
|
||||
Me.Import_XLS_ProductGroups.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_ProductGroups.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_ProductGroups.ToolTip = Nothing
|
||||
Me.Import_XLS_ProductGroups.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_CustomersBankAccounts
|
||||
'
|
||||
Me.Import_XLS_CustomersBankAccounts.Caption = "Import_XLS_CustomersBankAccounts"
|
||||
Me.Import_XLS_CustomersBankAccounts.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_CustomersBankAccounts.Id = "Import_XLS_CustomersBankAccounts"
|
||||
Me.Import_XLS_CustomersBankAccounts.ImageName = Nothing
|
||||
Me.Import_XLS_CustomersBankAccounts.Shortcut = Nothing
|
||||
Me.Import_XLS_CustomersBankAccounts.Tag = Nothing
|
||||
Me.Import_XLS_CustomersBankAccounts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_CustomersBankAccounts.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_CustomersBankAccounts.ToolTip = Nothing
|
||||
Me.Import_XLS_CustomersBankAccounts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_LiquidAssets
|
||||
'
|
||||
Me.Import_XLS_LiquidAssets.Caption = "Import_XLS_LiquidAssets"
|
||||
Me.Import_XLS_LiquidAssets.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_LiquidAssets.Id = "Import_XLS_LiquidAssets"
|
||||
Me.Import_XLS_LiquidAssets.ImageName = Nothing
|
||||
Me.Import_XLS_LiquidAssets.Shortcut = Nothing
|
||||
Me.Import_XLS_LiquidAssets.Tag = Nothing
|
||||
Me.Import_XLS_LiquidAssets.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_LiquidAssets.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_LiquidAssets.ToolTip = Nothing
|
||||
Me.Import_XLS_LiquidAssets.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_ChartsOfAccounts
|
||||
'
|
||||
Me.Import_XLS_ChartsOfAccounts.Caption = "Import_XLS_ChartsOfAccounts"
|
||||
Me.Import_XLS_ChartsOfAccounts.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_ChartsOfAccounts.Id = "Import_XLS_ChartsOfAccounts"
|
||||
Me.Import_XLS_ChartsOfAccounts.ImageName = Nothing
|
||||
Me.Import_XLS_ChartsOfAccounts.Shortcut = Nothing
|
||||
Me.Import_XLS_ChartsOfAccounts.Tag = Nothing
|
||||
Me.Import_XLS_ChartsOfAccounts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_ChartsOfAccounts.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_ChartsOfAccounts.ToolTip = Nothing
|
||||
Me.Import_XLS_ChartsOfAccounts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_Units
|
||||
'
|
||||
Me.Import_XLS_Units.Caption = "Import_XLS_Units"
|
||||
Me.Import_XLS_Units.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_Units.Id = "Import_XLS_Units"
|
||||
Me.Import_XLS_Units.ImageName = Nothing
|
||||
Me.Import_XLS_Units.Shortcut = Nothing
|
||||
Me.Import_XLS_Units.Tag = Nothing
|
||||
Me.Import_XLS_Units.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_Units.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_Units.ToolTip = Nothing
|
||||
Me.Import_XLS_Units.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_Contracts
|
||||
'
|
||||
Me.Import_XLS_Contracts.Caption = "Import_XLS_Contracts"
|
||||
Me.Import_XLS_Contracts.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_Contracts.Id = "Import_XLS_Contracts"
|
||||
Me.Import_XLS_Contracts.ImageName = Nothing
|
||||
Me.Import_XLS_Contracts.Shortcut = Nothing
|
||||
Me.Import_XLS_Contracts.Tag = Nothing
|
||||
Me.Import_XLS_Contracts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_Contracts.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_Contracts.ToolTip = Nothing
|
||||
Me.Import_XLS_Contracts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_GLAccounts
|
||||
'
|
||||
Me.Import_XLS_GLAccounts.Caption = "Import_XLS_GLAccounts"
|
||||
Me.Import_XLS_GLAccounts.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_GLAccounts.Id = "Import_XLS_GLAccounts"
|
||||
Me.Import_XLS_GLAccounts.ImageName = Nothing
|
||||
Me.Import_XLS_GLAccounts.Shortcut = Nothing
|
||||
Me.Import_XLS_GLAccounts.Tag = Nothing
|
||||
Me.Import_XLS_GLAccounts.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_GLAccounts.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_GLAccounts.ToolTip = Nothing
|
||||
Me.Import_XLS_GLAccounts.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_Services
|
||||
'
|
||||
Me.Import_XLS_Services.ActionMeaning = DevExpress.ExpressApp.Actions.ActionMeaning.Accept
|
||||
Me.Import_XLS_Services.Caption = "Import services"
|
||||
Me.Import_XLS_Services.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_Services.Id = "Import_XLS_Services"
|
||||
Me.Import_XLS_Services.ImageName = Nothing
|
||||
Me.Import_XLS_Services.Shortcut = Nothing
|
||||
Me.Import_XLS_Services.Tag = Nothing
|
||||
Me.Import_XLS_Services.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_Services.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_Services.ToolTip = Nothing
|
||||
Me.Import_XLS_Services.TypeOfView = Nothing
|
||||
'
|
||||
'Import_XLS_KSZ
|
||||
'
|
||||
Me.Import_XLS_KSZ.Caption = "Import_XLS_KSZ"
|
||||
Me.Import_XLS_KSZ.ConfirmationMessage = Nothing
|
||||
Me.Import_XLS_KSZ.Id = "Import_XLS_KSZ"
|
||||
Me.Import_XLS_KSZ.ImageName = Nothing
|
||||
Me.Import_XLS_KSZ.Shortcut = Nothing
|
||||
Me.Import_XLS_KSZ.Tag = Nothing
|
||||
Me.Import_XLS_KSZ.TargetObjectsCriteria = Nothing
|
||||
Me.Import_XLS_KSZ.TargetViewId = "XLSImports_DetailView"
|
||||
Me.Import_XLS_KSZ.ToolTip = Nothing
|
||||
Me.Import_XLS_KSZ.TypeOfView = Nothing
|
||||
'
|
||||
'Import_PH_Immovables
|
||||
'
|
||||
Me.Import_PH_Immovables.AcceptButtonCaption = Nothing
|
||||
Me.Import_PH_Immovables.CancelButtonCaption = Nothing
|
||||
Me.Import_PH_Immovables.Caption = "Import_PH_Immovables"
|
||||
Me.Import_PH_Immovables.Category = "Import_PH_Immovables"
|
||||
Me.Import_PH_Immovables.ConfirmationMessage = Nothing
|
||||
Me.Import_PH_Immovables.Id = "Import_PH_Immovables"
|
||||
Me.Import_PH_Immovables.ImageName = Nothing
|
||||
Me.Import_PH_Immovables.Shortcut = Nothing
|
||||
Me.Import_PH_Immovables.Tag = Nothing
|
||||
Me.Import_PH_Immovables.TargetObjectsCriteria = Nothing
|
||||
Me.Import_PH_Immovables.TargetViewId = ""
|
||||
Me.Import_PH_Immovables.ToolTip = Nothing
|
||||
Me.Import_PH_Immovables.TypeOfView = Nothing
|
||||
'
|
||||
'aOpenFileDialog
|
||||
'
|
||||
Me.aOpenFileDialog.Caption = "aOpen File Dialog"
|
||||
Me.aOpenFileDialog.Category = "aOpenFileDialog"
|
||||
Me.aOpenFileDialog.ConfirmationMessage = Nothing
|
||||
Me.aOpenFileDialog.Id = "aOpenFileDialog"
|
||||
Me.aOpenFileDialog.ImageName = Nothing
|
||||
Me.aOpenFileDialog.Shortcut = Nothing
|
||||
Me.aOpenFileDialog.Tag = Nothing
|
||||
Me.aOpenFileDialog.TargetObjectsCriteria = Nothing
|
||||
Me.aOpenFileDialog.TargetViewId = Nothing
|
||||
Me.aOpenFileDialog.ToolTip = Nothing
|
||||
Me.aOpenFileDialog.TypeOfView = Nothing
|
||||
|
||||
End Sub
|
||||
Friend WithEvents Import_XLS_Customers As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_Contacts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_Products As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_ProductGroups As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_CustomersBankAccounts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_LiquidAssets As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_ChartsOfAccounts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_Units As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_Contracts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_GLAccounts As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_Services As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_XLS_KSZ As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
Friend WithEvents Import_PH_Immovables As DevExpress.ExpressApp.Actions.PopupWindowShowAction
|
||||
Friend WithEvents aOpenFileDialog As DevExpress.ExpressApp.Actions.SimpleAction
|
||||
|
||||
End Class
|
||||
@@ -0,0 +1,165 @@
|
||||
<?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_XLS_Customers.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 134</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_Contacts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 173</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_Products.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 212</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_ProductGroups.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 290</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_CustomersBankAccounts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 329</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_LiquidAssets.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 368</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_ChartsOfAccounts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 407</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_Units.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 446</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_Contracts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 524</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_GLAccounts.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 56</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_Services.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 485</value>
|
||||
</metadata>
|
||||
<metadata name="Import_XLS_KSZ.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 95</value>
|
||||
</metadata>
|
||||
<metadata name="Import_PH_Immovables.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 251</value>
|
||||
</metadata>
|
||||
<metadata name="aOpenFileDialog.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>418, 280</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