-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit bdfb8cb
Showing
94 changed files
with
314 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{B37F77E2-115B-40AC-A24D-BED400DAE470}</ProjectGuid> | ||
<ProjectVersion>13.4</ProjectVersion> | ||
<FrameworkType>VCL</FrameworkType> | ||
<MainSource>SpreadSheetCopyToXml.dpr</MainSource> | ||
<Base>True</Base> | ||
<Config Condition="'$(Config)'==''">Debug</Config> | ||
<Platform Condition="'$(Platform)'==''">Win32</Platform> | ||
<TargetedPlatforms>1</TargetedPlatforms> | ||
<AppType>Application</AppType> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''"> | ||
<Base_Win64>true</Base_Win64> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''"> | ||
<Base_Win32>true</Base_Win32> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''"> | ||
<Cfg_1>true</Cfg_1> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''"> | ||
<Cfg_1_Win32>true</Cfg_1_Win32> | ||
<CfgParent>Cfg_1</CfgParent> | ||
<Cfg_1>true</Cfg_1> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''"> | ||
<Cfg_2>true</Cfg_2> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base)'!=''"> | ||
<DCC_UsePackage>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)</DCC_UsePackage> | ||
<Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon> | ||
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace)</DCC_Namespace> | ||
<DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput> | ||
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput> | ||
<DCC_E>false</DCC_E> | ||
<DCC_N>false</DCC_N> | ||
<DCC_S>false</DCC_S> | ||
<DCC_F>false</DCC_F> | ||
<DCC_K>false</DCC_K> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base_Win64)'!=''"> | ||
<DCC_UsePackage>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)</DCC_UsePackage> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base_Win32)'!=''"> | ||
<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)</DCC_UsePackage> | ||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> | ||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace> | ||
<VerInfo_Locale>1033</VerInfo_Locale> | ||
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File> | ||
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_1)'!=''"> | ||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> | ||
<DCC_Optimize>false</DCC_Optimize> | ||
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> | ||
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe> | ||
<DCC_RemoteDebug>true</DCC_RemoteDebug> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''"> | ||
<DCC_RemoteDebug>false</DCC_RemoteDebug> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_2)'!=''"> | ||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> | ||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> | ||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> | ||
<DCC_DebugInformation>false</DCC_DebugInformation> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<DelphiCompile Include="$(MainSource)"> | ||
<MainSource>MainSource</MainSource> | ||
</DelphiCompile> | ||
<DCCReference Include="Main.pas"> | ||
<Form>Form1</Form> | ||
<FormType>dfm</FormType> | ||
</DCCReference> | ||
<BuildConfiguration Include="Release"> | ||
<Key>Cfg_2</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Base"> | ||
<Key>Base</Key> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Debug"> | ||
<Key>Cfg_1</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
</ItemGroup> | ||
<ProjectExtensions> | ||
<Borland.Personality>Delphi.Personality.12</Borland.Personality> | ||
<Borland.ProjectType/> | ||
<BorlandProject> | ||
<Delphi.Personality> | ||
<VersionInfo> | ||
<VersionInfo Name="IncludeVerInfo">False</VersionInfo> | ||
<VersionInfo Name="AutoIncBuild">False</VersionInfo> | ||
<VersionInfo Name="MajorVer">1</VersionInfo> | ||
<VersionInfo Name="MinorVer">0</VersionInfo> | ||
<VersionInfo Name="Release">0</VersionInfo> | ||
<VersionInfo Name="Build">0</VersionInfo> | ||
<VersionInfo Name="Debug">False</VersionInfo> | ||
<VersionInfo Name="PreRelease">False</VersionInfo> | ||
<VersionInfo Name="Special">False</VersionInfo> | ||
<VersionInfo Name="Private">False</VersionInfo> | ||
<VersionInfo Name="DLL">False</VersionInfo> | ||
<VersionInfo Name="Locale">1058</VersionInfo> | ||
<VersionInfo Name="CodePage">1251</VersionInfo> | ||
</VersionInfo> | ||
<VersionInfoKeys> | ||
<VersionInfoKeys Name="CompanyName"/> | ||
<VersionInfoKeys Name="FileDescription"/> | ||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys> | ||
<VersionInfoKeys Name="InternalName"/> | ||
<VersionInfoKeys Name="LegalCopyright"/> | ||
<VersionInfoKeys Name="LegalTrademarks"/> | ||
<VersionInfoKeys Name="OriginalFilename"/> | ||
<VersionInfoKeys Name="ProductName"/> | ||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys> | ||
<VersionInfoKeys Name="Comments"/> | ||
</VersionInfoKeys> | ||
<Source> | ||
<Source Name="MainSource">SpreadSheetCopyToXml.dpr</Source> | ||
</Source> | ||
</Delphi.Personality> | ||
<Deployment/> | ||
<Platforms> | ||
<Platform value="Win64">False</Platform> | ||
<Platform value="Win32">True</Platform> | ||
</Platforms> | ||
</BorlandProject> | ||
<ProjectFileVersion>12</ProjectFileVersion> | ||
</ProjectExtensions> | ||
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/> | ||
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/> | ||
</Project> |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.