diff --git a/Main.dfm b/Main.dfm new file mode 100644 index 0000000..501aea1 --- /dev/null +++ b/Main.dfm @@ -0,0 +1,69 @@ +object Form1: TForm1 + Left = 0 + Top = 0 + ActiveControl = cxSpread + Caption = 'SpreadSheet' + ClientHeight = 290 + ClientWidth = 554 + Color = clBtnFace + Font.Charset = DEFAULT_CHARSET + Font.Color = clWindowText + Font.Height = -11 + Font.Name = 'Tahoma' + Font.Style = [] + OldCreateOrder = False + PixelsPerInch = 96 + TextHeight = 13 + object PageControl1: TPageControl + Left = 0 + Top = 0 + Width = 554 + Height = 290 + ActivePage = tsSpreadSheet + Align = alClient + TabOrder = 0 + OnChange = PageControl1Change + object tsSpreadSheet: TTabSheet + Caption = 'SpreadSheet' + object cxSpread: TcxSpreadSheetBook + Left = 0 + Top = 0 + Width = 546 + Height = 262 + Align = alClient + DefaultStyle.Font.Name = 'Tahoma' + HeaderFont.Charset = DEFAULT_CHARSET + HeaderFont.Color = clWindowText + HeaderFont.Height = -11 + HeaderFont.Name = 'Tahoma' + HeaderFont.Style = [] + ExplicitLeft = 96 + ExplicitTop = 32 + ExplicitWidth = 350 + ExplicitHeight = 200 + end + end + object tsXml: TTabSheet + Caption = 'XML' + ImageIndex = 1 + object mXML: TMemo + Left = 0 + Top = 0 + Width = 546 + Height = 262 + Align = alClient + Font.Charset = RUSSIAN_CHARSET + Font.Color = clWindowText + Font.Height = -13 + Font.Name = 'Courier New' + Font.Style = [] + Lines.Strings = ( + 'mXML') + ParentFont = False + ScrollBars = ssBoth + TabOrder = 0 + WordWrap = False + end + end + end +end diff --git a/Main.pas b/Main.pas new file mode 100644 index 0000000..35d5b6a --- /dev/null +++ b/Main.pas @@ -0,0 +1,84 @@ +unit Main; + +interface + +uses + Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, + Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ComCtrls, cxGraphics, + cxControls, cxLookAndFeels, cxLookAndFeelPainters, dxSkinsCore, dxSkinBlack, + dxSkinBlue, dxSkinBlueprint, dxSkinCaramel, dxSkinCoffee, dxSkinDarkRoom, + dxSkinDarkSide, dxSkinDevExpressDarkStyle, dxSkinDevExpressStyle, dxSkinFoggy, + dxSkinGlassOceans, dxSkinHighContrast, dxSkiniMaginary, dxSkinLilian, + dxSkinLiquidSky, dxSkinLondonLiquidSky, dxSkinMcSkin, dxSkinMoneyTwins, + dxSkinOffice2007Black, dxSkinOffice2007Blue, dxSkinOffice2007Green, + dxSkinOffice2007Pink, dxSkinOffice2007Silver, dxSkinOffice2010Black, + dxSkinOffice2010Blue, dxSkinOffice2010Silver, dxSkinPumpkin, dxSkinSeven, + dxSkinSevenClassic, dxSkinSharp, dxSkinSharpPlus, dxSkinSilver, + dxSkinSpringTime, dxSkinStardust, dxSkinSummer2008, dxSkinTheAsphaltWorld, + dxSkinsDefaultPainters, dxSkinValentine, dxSkinVS2010, dxSkinWhiteprint, + dxSkinXmas2008Blue, cxSSheet; + +type + TForm1 = class(TForm) + PageControl1: TPageControl; + tsSpreadSheet: TTabSheet; + tsXml: TTabSheet; + mXML: TMemo; + cxSpread: TcxSpreadSheetBook; + procedure PageControl1Change(Sender: TObject); + private + { Private declarations } + public + procedure GenerateXML(); + end; + +var + Form1: TForm1; + +implementation +{$R *.dfm} + +uses msxml; + +procedure TForm1.GenerateXML; +var + Doc: IXMLDOMDocument; + DataElement: IXMLDOMElement; + I, J: Integer; + Cell: TcxSSCellObject; + //R: TRect; + S, AttrName: string; + Row: IXMLDOMElement; +begin + Doc := CoDOMDocument.Create; + Doc.preserveWhiteSpace := True; + DataElement := Doc.createElement('data'); + Doc.documentElement := DataElement; + for J := 0 to cxSpread.ActiveSheet.RowCount - 1 do + begin + Row := Doc.createElement('row'); + DataElement.appendChild(Row); + for I := 0 to cxSpread.ActiveSheet.ColumnCount - 1 do + begin + Cell := cxSpread.ActiveSheet.GetCellObject(I, J); + S := Cell.DisplayText; + //R := Rect(I, J, I, J); + //S := cxSpread.CellsNameByRef(cxSpread.ActivePage, R); + if S <> '' then + begin + AttrName := 'c' + IntToStr(I); + Row.setAttribute(AttrName, S); + end; + end; + end; + Doc.save('d:\my.xml'); + mXML.Text := Doc.xml; +end; + +procedure TForm1.PageControl1Change(Sender: TObject); +begin + if PageControl1.ActivePageIndex = 1 then + GenerateXML(); +end; + +end. diff --git a/SpreadSheetCopyToXml.dpr b/SpreadSheetCopyToXml.dpr new file mode 100644 index 0000000..8e75244 --- /dev/null +++ b/SpreadSheetCopyToXml.dpr @@ -0,0 +1,14 @@ +program SpreadSheetCopyToXml; + +uses + Vcl.Forms, + Main in 'Main.pas' {Form1}; + +{$R *.res} + +begin + Application.Initialize; + Application.MainFormOnTaskbar := True; + Application.CreateForm(TForm1, Form1); + Application.Run; +end. diff --git a/SpreadSheetCopyToXml.dproj b/SpreadSheetCopyToXml.dproj new file mode 100644 index 0000000..8751c7a --- /dev/null +++ b/SpreadSheetCopyToXml.dproj @@ -0,0 +1,147 @@ + + + {B37F77E2-115B-40AC-A24D-BED400DAE470} + 13.4 + VCL + SpreadSheetCopyToXml.dpr + True + Debug + Win32 + 1 + Application + + + true + + + true + Base + true + + + true + Base + true + + + true + Base + true + + + true + Cfg_1 + true + true + + + true + Base + true + + + fmx;IndySystem;DataSnapClient;DataSnapServer;DataSnapCommon;DBXInterBaseDriver;DataSnapProviderClient;DbxCommonDriver;dbxcds;DBXOracleDriver;CustomIPTransport;dsnap;IndyCore;fmxase;inetdbxpress;IPIndyImpl;bindcompfmx;rtl;dbrtl;DbxClientDriver;bindcomp;inetdb;xmlrtl;IndyProtocols;DBXMySQLDriver;bindengine;soaprtl;DBXInformixDriver;DBXFirebirdDriver;inet;fmxobj;DBXSybaseASADriver;fmxdae;dbexpress;DataSnapIndy10ServerTransport;$(DCC_UsePackage) + $(BDS)\bin\delphi_PROJECTICON.ico + System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace) + .\$(Platform)\$(Config) + .\$(Platform)\$(Config) + false + false + false + false + false + + + dxSkinSharpPlusRS16;dxdborRS16;dxPScxVGridLnkRS16;cxLibraryRS16;dxLayoutControlRS16;dxPScxPivotGridLnkRS16;dxCoreRS16;cxExportRS16;dxSkinSevenRS16;dxBarRS16;dxSkinsdxNavBarPainterRS16;cxSpreadSheetRS16;cxTreeListdxBarPopupMenuRS16;TeeDB;dxDBXServerModeRS16;dxSkinCoffeeRS16;dxPsPrVwAdvRS16;cxPivotGridOLAPRS16;dxPSCoreRS16;dxPScxGridLnkRS16;dxPScxTLLnkRS16;cxPageControlRS16;dxRibbonRS16;DBXSybaseASEDriver;dxSkinSummer2008RS16;dxSkinVS2010RS16;vclimg;dxSkinDevExpressStyleRS16;dxSkinWhiteprintRS16;cxTreeListRS16;dxComnRS16;dxSkinOffice2007SilverRS16;vcldb;dxSkinsdxRibbonPainterRS16;dxADOServerModeRS16;vcldsnap;dxSkinBlackRS16;dxBarExtDBItemsRS16;dxSkinBlueRS16;DBXDb2Driver;dxSkinXmas2008BlueRS16;dxSkinDarkRoomRS16;dxSkinscxSchedulerPainterRS16;vcl;dxSkinOffice2007BlueRS16;dxSkinDevExpressDarkStyleRS16;DBXMSSQLDriver;dxSkinOffice2007GreenRS16;cxDataRS16;cxBarEditItemRS16;dxDockingRS16;cxPageControldxBarPopupMenuRS16;dxPSDBTeeChartRS16;webdsnap;dxBarExtItemsRS16;dxSkinsdxDLPainterRS16;dxPSLnksRS16;dxSkinTheAsphaltWorldRS16;dxSkinOffice2010BlackRS16;dxSkinMoneyTwinsRS16;dxPSTeeChartRS16;adortl;dxPSdxLCLnkRS16;dxSkinPumpkinRS16;cxVerticalGridRS16;dxSkinSharpRS16;dxSkinHighContrastRS16;dxSkinOffice2007BlackRS16;dxorgcRS16;dxSkinBlueprintRS16;dxPScxExtCommonRS16;dxSkiniMaginaryRS16;dxNavBarRS16;dxPSdxDBOCLnkRS16;dxSkinsdxBarPainterRS16;dxSkinLondonLiquidSkyRS16;Tee;dxSkinGlassOceansRS16;DBXOdbcDriver;dxSkinLiquidSkyRS16;dxdbtrRS16;dxSkinFoggyRS16;dxSkinsCoreRS16;dxPScxCommonRS16;dxmdsRS16;cxGridRS16;dxSkinscxPCPainterRS16;dxPScxSSLnkRS16;cxEditorsRS16;vclactnband;TeeUI;dxServerModeRS16;bindcompvcl;cxPivotGridRS16;dxPScxSchedulerLnkRS16;dxPSdxDBTVLnkRS16;vclie;dxPSPrVwRibbonRS16;dxSkinDarkSideRS16;cxSchedulerRS16;dxSkinSevenClassicRS16;dxSkinOffice2010SilverRS16;vcltouch;websnap;dxSkinOffice2007PinkRS16;VclSmp;dxSkinSpringTimeRS16;dxTabbedMDIRS16;dxSkinSilverRS16;dxSkinStardustRS16;dxPSdxOCLnkRS16;dsnapcon;dxSkinOffice2010BlueRS16;dxPSdxFCLnkRS16;dxThemeRS16;dcldxSkinsCoreRS16;dxPScxPCProdRS16;dxSkinLilianRS16;vclx;dxSkinCaramelRS16;dxSkinValentineRS16;dxFlowChartRS16;dxSkinMcSkinRS16;dxGDIPlusRS16;dxBarDBNavRS16;$(DCC_UsePackage) + + + dxSkinSharpPlusRS16;dxdborRS16;dxTileControlRS16;dxPScxVGridLnkRS16;cxLibraryRS16;dxLayoutControlRS16;dxPScxPivotGridLnkRS16;dxCoreRS16;cxExportRS16;dxSkinSevenRS16;dxBarRS16;dxSkinsdxNavBarPainterRS16;cxSpreadSheetRS16;cxTreeListdxBarPopupMenuRS16;TeeDB;dxDBXServerModeRS16;dxSkinCoffeeRS16;dxPsPrVwAdvRS16;inetdbbde;vclib;cxPivotGridOLAPRS16;dxPSCoreRS16;dxPScxGridLnkRS16;dxPScxTLLnkRS16;cxPageControlRS16;dxRibbonRS16;DBXSybaseASEDriver;dxSkinSummer2008RS16;dxSkinVS2010RS16;vclimg;dxSkinDevExpressStyleRS16;dxSkinWhiteprintRS16;fmi;cxTreeListRS16;dxComnRS16;dxSkinOffice2007SilverRS16;vcldb;dxSkinsdxRibbonPainterRS16;dxADOServerModeRS16;vcldsnap;dxSkinBlackRS16;dxBarExtDBItemsRS16;dxSkinBlueRS16;DBXDb2Driver;Intraweb_120_160;dxSkinXmas2008BlueRS16;vclribbon;dxSkinDarkRoomRS16;dxSkinscxSchedulerPainterRS16;vcl;dxSkinOffice2007BlueRS16;dxSkinDevExpressDarkStyleRS16;CloudService;DBXMSSQLDriver;dxSkinOffice2007GreenRS16;FmxTeeUI;cxDataRS16;cxBarEditItemRS16;dxDockingRS16;cxPageControldxBarPopupMenuRS16;dxPSDBTeeChartRS16;cxSchedulerGridRS16;webdsnap;dxBarExtItemsRS16;dxtrmdRS16;dxSkinsdxDLPainterRS16;dxPSLnksRS16;dxSkinTheAsphaltWorldRS16;dxSkinOffice2010BlackRS16;dxSkinMoneyTwinsRS16;dxPSTeeChartRS16;adortl;dxPSdxLCLnkRS16;dxSkinPumpkinRS16;cxVerticalGridRS16;dxSkinSharpRS16;dxSkinHighContrastRS16;dxSkinOffice2007BlackRS16;dxorgcRS16;dxSkinBlueprintRS16;dxPScxExtCommonRS16;dxSkiniMaginaryRS16;vcldbx;dxNavBarRS16;dxPSdxDBOCLnkRS16;dxSkinsdxBarPainterRS16;dxSkinLondonLiquidSkyRS16;Tee;dxSkinGlassOceansRS16;DBXOdbcDriver;dxSkinLiquidSkyRS16;dxdbtrRS16;dxSkinFoggyRS16;dxSkinsCoreRS16;svnui;ibxpress;cxPivotGridChartRS16;dxPScxCommonRS16;dxmdsRS16;dxSpellCheckerRS16;intrawebdb_120_160;cxGridRS16;dxSkinscxPCPainterRS16;dxPScxSSLnkRS16;cxEditorsRS16;vclactnband;FMXTee;TeeUI;dxServerModeRS16;bindcompvcl;cxPivotGridRS16;dxPScxSchedulerLnkRS16;dxPSdxDBTVLnkRS16;vclie;dxPSPrVwRibbonRS16;dxSkinDarkSideRS16;cxSchedulerRS16;dxSkinSevenClassicRS16;dxSkinOffice2010SilverRS16;vcltouch;websnap;dxSkinOffice2007PinkRS16;VclSmp;dxSkinSpringTimeRS16;dxTabbedMDIRS16;DataSnapConnectors;dxSkinSilverRS16;dxSkinStardustRS16;dxPSdxOCLnkRS16;dsnapcon;dxSkinOffice2010BlueRS16;dxPSdxFCLnkRS16;dxThemeRS16;dcldxSkinsCoreRS16;dxPScxPCProdRS16;dxSkinLilianRS16;vclx;svn;dxSkinCaramelRS16;dxSkinValentineRS16;dxFlowChartRS16;bdertl;dxSkinMcSkinRS16;dxGDIPlusRS16;dxBarDBNavRS16;$(DCC_UsePackage) + true + Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace) + 1033 + $(BDS)\bin\default_app.manifest + CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments= + + + DEBUG;$(DCC_Define) + false + true + true + true + + + false + + + false + RELEASE;$(DCC_Define) + 0 + false + + + + MainSource + + +
Form1
+ dfm +
+ + Cfg_2 + Base + + + Base + + + Cfg_1 + Base + +
+ + Delphi.Personality.12 + + + + + False + False + 1 + 0 + 0 + 0 + False + False + False + False + False + 1058 + 1251 + + + + + 1.0.0.0 + + + + + + 1.0.0.0 + + + + SpreadSheetCopyToXml.dpr + + + + + False + True + + + 12 + + + +
diff --git a/SpreadSheetCopyToXml.res b/SpreadSheetCopyToXml.res new file mode 100644 index 0000000..c287ee9 Binary files /dev/null and b/SpreadSheetCopyToXml.res differ diff --git a/Win32/Debug/Main.dcu b/Win32/Debug/Main.dcu new file mode 100644 index 0000000..62c6646 Binary files /dev/null and b/Win32/Debug/Main.dcu differ diff --git a/Win32/Debug/cxClasses.dcu b/Win32/Debug/cxClasses.dcu new file mode 100644 index 0000000..20b6780 Binary files /dev/null and b/Win32/Debug/cxClasses.dcu differ diff --git a/Win32/Debug/cxControls.dcu b/Win32/Debug/cxControls.dcu new file mode 100644 index 0000000..dac0e13 Binary files /dev/null and b/Win32/Debug/cxControls.dcu differ diff --git a/Win32/Debug/cxDWMApi.dcu b/Win32/Debug/cxDWMApi.dcu new file mode 100644 index 0000000..35a49a5 Binary files /dev/null and b/Win32/Debug/cxDWMApi.dcu differ diff --git a/Win32/Debug/cxDateUtils.dcu b/Win32/Debug/cxDateUtils.dcu new file mode 100644 index 0000000..3a6e27d Binary files /dev/null and b/Win32/Debug/cxDateUtils.dcu differ diff --git a/Win32/Debug/cxDrawTextUtils.dcu b/Win32/Debug/cxDrawTextUtils.dcu new file mode 100644 index 0000000..0e41f4b Binary files /dev/null and b/Win32/Debug/cxDrawTextUtils.dcu differ diff --git a/Win32/Debug/cxExcelAccess.dcu b/Win32/Debug/cxExcelAccess.dcu new file mode 100644 index 0000000..f9b8265 Binary files /dev/null and b/Win32/Debug/cxExcelAccess.dcu differ diff --git a/Win32/Debug/cxExcelConst.dcu b/Win32/Debug/cxExcelConst.dcu new file mode 100644 index 0000000..b060512 Binary files /dev/null and b/Win32/Debug/cxExcelConst.dcu differ diff --git a/Win32/Debug/cxExcelFormulas.dcu b/Win32/Debug/cxExcelFormulas.dcu new file mode 100644 index 0000000..5afdb07 Binary files /dev/null and b/Win32/Debug/cxExcelFormulas.dcu differ diff --git a/Win32/Debug/cxFormats.dcu b/Win32/Debug/cxFormats.dcu new file mode 100644 index 0000000..a84dfa4 Binary files /dev/null and b/Win32/Debug/cxFormats.dcu differ diff --git a/Win32/Debug/cxGeometry.dcu b/Win32/Debug/cxGeometry.dcu new file mode 100644 index 0000000..0e20817 Binary files /dev/null and b/Win32/Debug/cxGeometry.dcu differ diff --git a/Win32/Debug/cxGraphics.dcu b/Win32/Debug/cxGraphics.dcu new file mode 100644 index 0000000..e47307b Binary files /dev/null and b/Win32/Debug/cxGraphics.dcu differ diff --git a/Win32/Debug/cxLibraryConsts.dcu b/Win32/Debug/cxLibraryConsts.dcu new file mode 100644 index 0000000..0b5bcbe Binary files /dev/null and b/Win32/Debug/cxLibraryConsts.dcu differ diff --git a/Win32/Debug/cxLibraryStrs.dcu b/Win32/Debug/cxLibraryStrs.dcu new file mode 100644 index 0000000..d53373b Binary files /dev/null and b/Win32/Debug/cxLibraryStrs.dcu differ diff --git a/Win32/Debug/cxLookAndFeelPainters.dcu b/Win32/Debug/cxLookAndFeelPainters.dcu new file mode 100644 index 0000000..063b74f Binary files /dev/null and b/Win32/Debug/cxLookAndFeelPainters.dcu differ diff --git a/Win32/Debug/cxLookAndFeels.dcu b/Win32/Debug/cxLookAndFeels.dcu new file mode 100644 index 0000000..b142b39 Binary files /dev/null and b/Win32/Debug/cxLookAndFeels.dcu differ diff --git a/Win32/Debug/cxSSColorBox.dcu b/Win32/Debug/cxSSColorBox.dcu new file mode 100644 index 0000000..0be33e3 Binary files /dev/null and b/Win32/Debug/cxSSColorBox.dcu differ diff --git a/Win32/Debug/cxSSCtrls.dcu b/Win32/Debug/cxSSCtrls.dcu new file mode 100644 index 0000000..4294856 Binary files /dev/null and b/Win32/Debug/cxSSCtrls.dcu differ diff --git a/Win32/Debug/cxSSData.dcu b/Win32/Debug/cxSSData.dcu new file mode 100644 index 0000000..aaea3e3 Binary files /dev/null and b/Win32/Debug/cxSSData.dcu differ diff --git a/Win32/Debug/cxSSDesigner.dcu b/Win32/Debug/cxSSDesigner.dcu new file mode 100644 index 0000000..f47c107 Binary files /dev/null and b/Win32/Debug/cxSSDesigner.dcu differ diff --git a/Win32/Debug/cxSSEditors.dcu b/Win32/Debug/cxSSEditors.dcu new file mode 100644 index 0000000..0b6b59f Binary files /dev/null and b/Win32/Debug/cxSSEditors.dcu differ diff --git a/Win32/Debug/cxSSFormulas.dcu b/Win32/Debug/cxSSFormulas.dcu new file mode 100644 index 0000000..bbc8a63 Binary files /dev/null and b/Win32/Debug/cxSSFormulas.dcu differ diff --git a/Win32/Debug/cxSSHeaders.dcu b/Win32/Debug/cxSSHeaders.dcu new file mode 100644 index 0000000..49d7542 Binary files /dev/null and b/Win32/Debug/cxSSHeaders.dcu differ diff --git a/Win32/Debug/cxSSHistory.dcu b/Win32/Debug/cxSSHistory.dcu new file mode 100644 index 0000000..95792a7 Binary files /dev/null and b/Win32/Debug/cxSSHistory.dcu differ diff --git a/Win32/Debug/cxSSIntf.dcu b/Win32/Debug/cxSSIntf.dcu new file mode 100644 index 0000000..1e7f981 Binary files /dev/null and b/Win32/Debug/cxSSIntf.dcu differ diff --git a/Win32/Debug/cxSSPainterWrapper.dcu b/Win32/Debug/cxSSPainterWrapper.dcu new file mode 100644 index 0000000..c522efd Binary files /dev/null and b/Win32/Debug/cxSSPainterWrapper.dcu differ diff --git a/Win32/Debug/cxSSPainters.dcu b/Win32/Debug/cxSSPainters.dcu new file mode 100644 index 0000000..8ffe603 Binary files /dev/null and b/Win32/Debug/cxSSPainters.dcu differ diff --git a/Win32/Debug/cxSSRes.dcu b/Win32/Debug/cxSSRes.dcu new file mode 100644 index 0000000..4cbeb18 Binary files /dev/null and b/Win32/Debug/cxSSRes.dcu differ diff --git a/Win32/Debug/cxSSStyles.dcu b/Win32/Debug/cxSSStyles.dcu new file mode 100644 index 0000000..6338451 Binary files /dev/null and b/Win32/Debug/cxSSStyles.dcu differ diff --git a/Win32/Debug/cxSSTypes.dcu b/Win32/Debug/cxSSTypes.dcu new file mode 100644 index 0000000..e0bc7b5 Binary files /dev/null and b/Win32/Debug/cxSSTypes.dcu differ diff --git a/Win32/Debug/cxSSUtils.dcu b/Win32/Debug/cxSSUtils.dcu new file mode 100644 index 0000000..2e30488 Binary files /dev/null and b/Win32/Debug/cxSSUtils.dcu differ diff --git a/Win32/Debug/cxSSViewInfo.dcu b/Win32/Debug/cxSSViewInfo.dcu new file mode 100644 index 0000000..6785cbb Binary files /dev/null and b/Win32/Debug/cxSSViewInfo.dcu differ diff --git a/Win32/Debug/cxSSheet.dcu b/Win32/Debug/cxSSheet.dcu new file mode 100644 index 0000000..a8bc763 Binary files /dev/null and b/Win32/Debug/cxSSheet.dcu differ diff --git a/Win32/Debug/cxScrollBar.dcu b/Win32/Debug/cxScrollBar.dcu new file mode 100644 index 0000000..e272b2e Binary files /dev/null and b/Win32/Debug/cxScrollBar.dcu differ diff --git a/Win32/Debug/dxCalendarUtils.dcu b/Win32/Debug/dxCalendarUtils.dcu new file mode 100644 index 0000000..a2dd730 Binary files /dev/null and b/Win32/Debug/dxCalendarUtils.dcu differ diff --git a/Win32/Debug/dxCore.dcu b/Win32/Debug/dxCore.dcu new file mode 100644 index 0000000..4eea015 Binary files /dev/null and b/Win32/Debug/dxCore.dcu differ diff --git a/Win32/Debug/dxCoreClasses.dcu b/Win32/Debug/dxCoreClasses.dcu new file mode 100644 index 0000000..73b3b4b Binary files /dev/null and b/Win32/Debug/dxCoreClasses.dcu differ diff --git a/Win32/Debug/dxGDIPlusAPI.dcu b/Win32/Debug/dxGDIPlusAPI.dcu new file mode 100644 index 0000000..a1df812 Binary files /dev/null and b/Win32/Debug/dxGDIPlusAPI.dcu differ diff --git a/Win32/Debug/dxGDIPlusClasses.dcu b/Win32/Debug/dxGDIPlusClasses.dcu new file mode 100644 index 0000000..3a94aff Binary files /dev/null and b/Win32/Debug/dxGDIPlusClasses.dcu differ diff --git a/Win32/Debug/dxMessages.dcu b/Win32/Debug/dxMessages.dcu new file mode 100644 index 0000000..d65c5ac Binary files /dev/null and b/Win32/Debug/dxMessages.dcu differ diff --git a/Win32/Debug/dxOffice11.dcu b/Win32/Debug/dxOffice11.dcu new file mode 100644 index 0000000..dc968ba Binary files /dev/null and b/Win32/Debug/dxOffice11.dcu differ diff --git a/Win32/Debug/dxSkinBlack.dcu b/Win32/Debug/dxSkinBlack.dcu new file mode 100644 index 0000000..5953335 Binary files /dev/null and b/Win32/Debug/dxSkinBlack.dcu differ diff --git a/Win32/Debug/dxSkinBlue.dcu b/Win32/Debug/dxSkinBlue.dcu new file mode 100644 index 0000000..d5886d0 Binary files /dev/null and b/Win32/Debug/dxSkinBlue.dcu differ diff --git a/Win32/Debug/dxSkinBlueprint.dcu b/Win32/Debug/dxSkinBlueprint.dcu new file mode 100644 index 0000000..0a153e9 Binary files /dev/null and b/Win32/Debug/dxSkinBlueprint.dcu differ diff --git a/Win32/Debug/dxSkinCaramel.dcu b/Win32/Debug/dxSkinCaramel.dcu new file mode 100644 index 0000000..98e8918 Binary files /dev/null and b/Win32/Debug/dxSkinCaramel.dcu differ diff --git a/Win32/Debug/dxSkinCoffee.dcu b/Win32/Debug/dxSkinCoffee.dcu new file mode 100644 index 0000000..0fa0394 Binary files /dev/null and b/Win32/Debug/dxSkinCoffee.dcu differ diff --git a/Win32/Debug/dxSkinDarkRoom.dcu b/Win32/Debug/dxSkinDarkRoom.dcu new file mode 100644 index 0000000..d2091a9 Binary files /dev/null and b/Win32/Debug/dxSkinDarkRoom.dcu differ diff --git a/Win32/Debug/dxSkinDarkSide.dcu b/Win32/Debug/dxSkinDarkSide.dcu new file mode 100644 index 0000000..b90fd46 Binary files /dev/null and b/Win32/Debug/dxSkinDarkSide.dcu differ diff --git a/Win32/Debug/dxSkinDevExpressDarkStyle.dcu b/Win32/Debug/dxSkinDevExpressDarkStyle.dcu new file mode 100644 index 0000000..14b2730 Binary files /dev/null and b/Win32/Debug/dxSkinDevExpressDarkStyle.dcu differ diff --git a/Win32/Debug/dxSkinDevExpressStyle.dcu b/Win32/Debug/dxSkinDevExpressStyle.dcu new file mode 100644 index 0000000..06c2227 Binary files /dev/null and b/Win32/Debug/dxSkinDevExpressStyle.dcu differ diff --git a/Win32/Debug/dxSkinFoggy.dcu b/Win32/Debug/dxSkinFoggy.dcu new file mode 100644 index 0000000..dcf3213 Binary files /dev/null and b/Win32/Debug/dxSkinFoggy.dcu differ diff --git a/Win32/Debug/dxSkinGlassOceans.dcu b/Win32/Debug/dxSkinGlassOceans.dcu new file mode 100644 index 0000000..2d3cf51 Binary files /dev/null and b/Win32/Debug/dxSkinGlassOceans.dcu differ diff --git a/Win32/Debug/dxSkinHighContrast.dcu b/Win32/Debug/dxSkinHighContrast.dcu new file mode 100644 index 0000000..28760c6 Binary files /dev/null and b/Win32/Debug/dxSkinHighContrast.dcu differ diff --git a/Win32/Debug/dxSkinInfo.dcu b/Win32/Debug/dxSkinInfo.dcu new file mode 100644 index 0000000..db0e362 Binary files /dev/null and b/Win32/Debug/dxSkinInfo.dcu differ diff --git a/Win32/Debug/dxSkinLilian.dcu b/Win32/Debug/dxSkinLilian.dcu new file mode 100644 index 0000000..2b0582d Binary files /dev/null and b/Win32/Debug/dxSkinLilian.dcu differ diff --git a/Win32/Debug/dxSkinLiquidSky.dcu b/Win32/Debug/dxSkinLiquidSky.dcu new file mode 100644 index 0000000..2f528f6 Binary files /dev/null and b/Win32/Debug/dxSkinLiquidSky.dcu differ diff --git a/Win32/Debug/dxSkinLondonLiquidSky.dcu b/Win32/Debug/dxSkinLondonLiquidSky.dcu new file mode 100644 index 0000000..7e28fbb Binary files /dev/null and b/Win32/Debug/dxSkinLondonLiquidSky.dcu differ diff --git a/Win32/Debug/dxSkinMcSkin.dcu b/Win32/Debug/dxSkinMcSkin.dcu new file mode 100644 index 0000000..a135315 Binary files /dev/null and b/Win32/Debug/dxSkinMcSkin.dcu differ diff --git a/Win32/Debug/dxSkinMoneyTwins.dcu b/Win32/Debug/dxSkinMoneyTwins.dcu new file mode 100644 index 0000000..ac8ca50 Binary files /dev/null and b/Win32/Debug/dxSkinMoneyTwins.dcu differ diff --git a/Win32/Debug/dxSkinOffice2007Black.dcu b/Win32/Debug/dxSkinOffice2007Black.dcu new file mode 100644 index 0000000..d3f501c Binary files /dev/null and b/Win32/Debug/dxSkinOffice2007Black.dcu differ diff --git a/Win32/Debug/dxSkinOffice2007Blue.dcu b/Win32/Debug/dxSkinOffice2007Blue.dcu new file mode 100644 index 0000000..af0d5a3 Binary files /dev/null and b/Win32/Debug/dxSkinOffice2007Blue.dcu differ diff --git a/Win32/Debug/dxSkinOffice2007Green.dcu b/Win32/Debug/dxSkinOffice2007Green.dcu new file mode 100644 index 0000000..0e634c9 Binary files /dev/null and b/Win32/Debug/dxSkinOffice2007Green.dcu differ diff --git a/Win32/Debug/dxSkinOffice2007Pink.dcu b/Win32/Debug/dxSkinOffice2007Pink.dcu new file mode 100644 index 0000000..4278652 Binary files /dev/null and b/Win32/Debug/dxSkinOffice2007Pink.dcu differ diff --git a/Win32/Debug/dxSkinOffice2007Silver.dcu b/Win32/Debug/dxSkinOffice2007Silver.dcu new file mode 100644 index 0000000..3b5329c Binary files /dev/null and b/Win32/Debug/dxSkinOffice2007Silver.dcu differ diff --git a/Win32/Debug/dxSkinOffice2010Black.dcu b/Win32/Debug/dxSkinOffice2010Black.dcu new file mode 100644 index 0000000..36621b7 Binary files /dev/null and b/Win32/Debug/dxSkinOffice2010Black.dcu differ diff --git a/Win32/Debug/dxSkinOffice2010Blue.dcu b/Win32/Debug/dxSkinOffice2010Blue.dcu new file mode 100644 index 0000000..9355b0b Binary files /dev/null and b/Win32/Debug/dxSkinOffice2010Blue.dcu differ diff --git a/Win32/Debug/dxSkinOffice2010Silver.dcu b/Win32/Debug/dxSkinOffice2010Silver.dcu new file mode 100644 index 0000000..ed4f89a Binary files /dev/null and b/Win32/Debug/dxSkinOffice2010Silver.dcu differ diff --git a/Win32/Debug/dxSkinPumpkin.dcu b/Win32/Debug/dxSkinPumpkin.dcu new file mode 100644 index 0000000..10eaa42 Binary files /dev/null and b/Win32/Debug/dxSkinPumpkin.dcu differ diff --git a/Win32/Debug/dxSkinSeven.dcu b/Win32/Debug/dxSkinSeven.dcu new file mode 100644 index 0000000..65ea237 Binary files /dev/null and b/Win32/Debug/dxSkinSeven.dcu differ diff --git a/Win32/Debug/dxSkinSevenClassic.dcu b/Win32/Debug/dxSkinSevenClassic.dcu new file mode 100644 index 0000000..9f35ca9 Binary files /dev/null and b/Win32/Debug/dxSkinSevenClassic.dcu differ diff --git a/Win32/Debug/dxSkinSharp.dcu b/Win32/Debug/dxSkinSharp.dcu new file mode 100644 index 0000000..31ee6fc Binary files /dev/null and b/Win32/Debug/dxSkinSharp.dcu differ diff --git a/Win32/Debug/dxSkinSharpPlus.dcu b/Win32/Debug/dxSkinSharpPlus.dcu new file mode 100644 index 0000000..f4ff1d5 Binary files /dev/null and b/Win32/Debug/dxSkinSharpPlus.dcu differ diff --git a/Win32/Debug/dxSkinSilver.dcu b/Win32/Debug/dxSkinSilver.dcu new file mode 100644 index 0000000..cf71516 Binary files /dev/null and b/Win32/Debug/dxSkinSilver.dcu differ diff --git a/Win32/Debug/dxSkinSpringTime.dcu b/Win32/Debug/dxSkinSpringTime.dcu new file mode 100644 index 0000000..4db94c8 Binary files /dev/null and b/Win32/Debug/dxSkinSpringTime.dcu differ diff --git a/Win32/Debug/dxSkinStardust.dcu b/Win32/Debug/dxSkinStardust.dcu new file mode 100644 index 0000000..4132803 Binary files /dev/null and b/Win32/Debug/dxSkinStardust.dcu differ diff --git a/Win32/Debug/dxSkinSummer2008.dcu b/Win32/Debug/dxSkinSummer2008.dcu new file mode 100644 index 0000000..ee40229 Binary files /dev/null and b/Win32/Debug/dxSkinSummer2008.dcu differ diff --git a/Win32/Debug/dxSkinTheAsphaltWorld.dcu b/Win32/Debug/dxSkinTheAsphaltWorld.dcu new file mode 100644 index 0000000..288134e Binary files /dev/null and b/Win32/Debug/dxSkinTheAsphaltWorld.dcu differ diff --git a/Win32/Debug/dxSkinVS2010.dcu b/Win32/Debug/dxSkinVS2010.dcu new file mode 100644 index 0000000..bdc452f Binary files /dev/null and b/Win32/Debug/dxSkinVS2010.dcu differ diff --git a/Win32/Debug/dxSkinValentine.dcu b/Win32/Debug/dxSkinValentine.dcu new file mode 100644 index 0000000..cf8c7d0 Binary files /dev/null and b/Win32/Debug/dxSkinValentine.dcu differ diff --git a/Win32/Debug/dxSkinWhiteprint.dcu b/Win32/Debug/dxSkinWhiteprint.dcu new file mode 100644 index 0000000..2e4c095 Binary files /dev/null and b/Win32/Debug/dxSkinWhiteprint.dcu differ diff --git a/Win32/Debug/dxSkinXmas2008Blue.dcu b/Win32/Debug/dxSkinXmas2008Blue.dcu new file mode 100644 index 0000000..3392105 Binary files /dev/null and b/Win32/Debug/dxSkinXmas2008Blue.dcu differ diff --git a/Win32/Debug/dxSkiniMaginary.dcu b/Win32/Debug/dxSkiniMaginary.dcu new file mode 100644 index 0000000..64731ed Binary files /dev/null and b/Win32/Debug/dxSkiniMaginary.dcu differ diff --git a/Win32/Debug/dxSkinsCore.dcu b/Win32/Debug/dxSkinsCore.dcu new file mode 100644 index 0000000..8811729 Binary files /dev/null and b/Win32/Debug/dxSkinsCore.dcu differ diff --git a/Win32/Debug/dxSkinsDefaultPainters.dcu b/Win32/Debug/dxSkinsDefaultPainters.dcu new file mode 100644 index 0000000..c4cbd5c Binary files /dev/null and b/Win32/Debug/dxSkinsDefaultPainters.dcu differ diff --git a/Win32/Debug/dxSkinsLookAndFeelPainter.dcu b/Win32/Debug/dxSkinsLookAndFeelPainter.dcu new file mode 100644 index 0000000..51d0447 Binary files /dev/null and b/Win32/Debug/dxSkinsLookAndFeelPainter.dcu differ diff --git a/Win32/Debug/dxSkinsStrs.dcu b/Win32/Debug/dxSkinsStrs.dcu new file mode 100644 index 0000000..35db0a8 Binary files /dev/null and b/Win32/Debug/dxSkinsStrs.dcu differ diff --git a/Win32/Debug/dxThemeConsts.dcu b/Win32/Debug/dxThemeConsts.dcu new file mode 100644 index 0000000..03be47f Binary files /dev/null and b/Win32/Debug/dxThemeConsts.dcu differ diff --git a/Win32/Debug/dxThemeManager.dcu b/Win32/Debug/dxThemeManager.dcu new file mode 100644 index 0000000..31ef91e Binary files /dev/null and b/Win32/Debug/dxThemeManager.dcu differ diff --git a/Win32/Debug/dxUxTheme.dcu b/Win32/Debug/dxUxTheme.dcu new file mode 100644 index 0000000..8e8ab06 Binary files /dev/null and b/Win32/Debug/dxUxTheme.dcu differ