Subject | Re: [IBO] Re: TIBOQuery Problem |
---|---|
Author | Jack Mason |
Post date | 2019-03-26T20:01:29Z |
Attached are the files for the program.�� This is an extract from larger
code that does more processing as it is deleting entries. The DDL is
included as a comment in the body of the code as well, but is:
CREATE TABLE Stuff
(� NUMBER��������� INTEGER���������� NOT NULL,
� ENTERED�������� TIMESTAMP�������� NOT NULL
);
The TiboDatabase is set up for a database named 'Tracking'.
If you run the program and first click on the 'Create Data' button, then
the 'Go' button, it should fail with an error after deleting one or more
rows.
code that does more processing as it is deleting entries. The DDL is
included as a comment in the body of the code as well, but is:
CREATE TABLE Stuff
(� NUMBER��������� INTEGER���������� NOT NULL,
� ENTERED�������� TIMESTAMP�������� NOT NULL
);
The TiboDatabase is set up for a database named 'Tracking'.
If you run the program and first click on the 'Create Data' button, then
the 'Go' button, it should fail with an error after deleting one or more
rows.
On 3/26/2019 2:54 PM, 'Jason Wharton' jason@... [IBObjects] wrote:
>
> Jack,
> I will take a closer look at this.� If possible, send me a little
> sample app just in case it has something to do with your environment.�
> If you send me something that doesn't work for you, and then it works
> for me, I'll have some surety that there is more going on we will need
> to look into.
> Thanks,
> Jason Wharton
> www.ibobjects.com <http://www.ibobjects.com>
>
> ------------------------------------------------------------------------
> *From:* IBObjects@yahoogroups.com [mailto:IBObjects@yahoogroups.com]
> *Sent:* Tuesday, March 26, 2019 10:41 AM
> *To:* IBObjects@yahoogroups.com
> *Subject:* [IBO] Re: TIBOQuery Problem
>
> It appears if an 'append' has ever occurred on the TiboQuery, 'delete'
> will only be successful if the TiboQuery has been closed and reopened
> before the 'delete'. This may be how it is designed to work, or it may
> be a bug.
>
> Starting the program, TiboDatabase set to 'AutoCommit', � using the
> following steps:
>
> 1.� Clean database, open TiboQuery, write data, delete data: *fails. *
>
> 2.� Data in database, open TiboQuery, delete data: *works.*
>
> 3.� Data in database, open TiboQuery, delete data, write data, delete
> data: *fails. *
>
> 4.� Open TiboQuery, write data, close TiboQuery, open TiboQuery,
> delete data: *works.
>
> *5.� Clean database, open TiboQuery*W*, write data, do not close
> TiboQuery*W,* open TiboQuery*D*, delete data: *works because it is
> through a different TiboQuery.*
>
>
----------
object Form1: TForm1
Left = 0
Top = 0
Caption = 'Form1'
ClientHeight = 110
ClientWidth = 285
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Button1: TButton
Left = 192
Top = 20
Width = 75
Height = 29
Caption = 'Go'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
OnClick = Button1Click
end
object Button2: TButton
Left = 20
Top = 20
Width = 153
Height = 29
Caption = 'Create Data'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -21
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
OnClick = Button2Click
end
object Query: TIBOQuery
AutoCalcFields = False
FilterOptions = [foCaseInsensitive]
IB_Connection = DBW
KeyLinksAutoDefine = False
RecordCountAccurate = True
ParamCheck = False
RequestLive = True
SQL.Strings = (
'SELECT * FROM Stuff')
Left = 64
Top = 60
object QueryNUMBER: TIntegerField
FieldName = 'NUMBER'
Required = True
end
object QueryENTERED: TDateTimeField
FieldName = 'ENTERED'
Required = True
end
end
object DBW: TIBODatabase
CacheStatementHandles = False
DefaultNoLengthCheck = False
SQLDialect = 3
Params.Strings = (
'USER NAME=SYSDBA'
'BUFFERS=<default>'
'SQL DIALECT=3'
'PROTOCOL=TCP/IP'
'SERVER=10.0.0.100'
'PATH=C:\BCC\db\Tracking')
Isolation = tiCommitted
DriverName = ''
Left = 16
Top = 60
SavedPassword = '.JuMbLe.01.432B0639073E0E4B49'
end
end
----------
unit Delete;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, IB_Components, IB_Access, IBODataset,
Data.DB, Vcl.StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
Query: TIBOQuery;
DBW: TIBODatabase;
Button2: TButton;
QueryNUMBER: TIntegerField;
QueryENTERED: TDateTimeField;
procedure Button1Click(Sender: TObject);
procedure Button2Click(Sender: TObject);
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
{ DDL for table 'Stuff'
CREATE TABLE Stuff
(
NUMBER INTEGER NOT NULL,
ENTERED TIMESTAMP NOT NULL
);
}
procedure TForm1.Button2Click(Sender: TObject);
var Idx: integer;
TS: TDateTime;
begin
Query.Filtered := false;
for Idx := 1 to 3 do
begin
Query.Append;
QueryNUMBER.Value := Idx;
QueryENTERED.Value := Now;
Query.Post;
end;
// Duplicate record
TS := QueryENTERED.Value;
ShowMessage('Added 4 rows to table.');
end;
procedure TForm1.FormShow(Sender: TObject);
begin
Query.Open;
end;
procedure TForm1.Button1Click(Sender: TObject);
var Last_Number: integer;
begin
Last_Number := 0;
while not Query.Eof do
begin
if QueryNUMBER.Value = Last_Number then
begin
ShowMessage('Deleting Duplicate #' + QueryNUMBER.AsString);
Query.Delete;
continue;
end;
ShowMessage('Deleting # ' + QueryNumber.AsString);
Query.Delete;
end;
end;
end.
----------
program Delete1;
uses
Vcl.Forms,
Delete in 'Delete.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.
----------
���<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ProjectGuid>{A23F5452-95B4-4AED-97F6-D8F9607223B8}</ProjectGuid>
<ProjectVersion>18.5</ProjectVersion>
<FrameworkType>VCL</FrameworkType>
<MainSource>Delete1.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)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
<Base_Win32>true</Base_Win32>
<CfgParent>Base</CfgParent>
<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="'$(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="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
<Cfg_2_Win32>true</Cfg_2_Win32>
<CfgParent>Cfg_2</CfgParent>
<Cfg_2>true</Cfg_2>
<Base>true</Base>
</PropertyGroup>
<PropertyGroup Condition="'$(Base)'!=''">
<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>
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace)</DCC_Namespace>
<Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon>
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
<SanitizedProjectName>Delete1</SanitizedProjectName>
</PropertyGroup>
<PropertyGroup Condition="'$(Base_Win32)'!=''">
<DCC_UsePackage>DBXSqliteDriver;bindcompdbx;IndyIPCommon;RESTComponents;DBXInterBaseDriver;vcl;IndyIPServer;vclactnband;vclFireDAC;IndySystem;tethering;svnui;dsnapcon;FireDACADSDriver;FireDACMSAccDriver;fmxFireDAC;vclimg;TeeDB;FireDAC;vcltouch;ibo5crt_d10_3;vcldb;bindcompfmx;svn;ibo5trt_d10_3;FireDACSqliteDriver;FireDACPgDriver;ibmonitor;inetdb;ipstudiowinwordxp;ibo5vrt_d10_3;FMXTee;ipstudiowinclient;ibo5xrt_d10_3;soaprtl;DbxCommonDriver;FmxTeeUI;ibxpress;FireDACIBDriver;fmx;fmxdae;xmlrtl;soapmidas;ibxbindings;fmxobj;vclwinx;vclib;rtl;Tee;DbxClientDriver;fcstudiowin;ibo5wxrt_d10_3;ibo5frt_d10_3;CustomIPTransport;vcldsnap;dbexpress;IndyCore;ibo5admrt_d10_3;ibo5wrt_d10_3;vclx;bindcomp;appanalytics;dsnap;ipstudiowin;officeXPrt;FireDACCommon;IndyIPClient;ibo5rplrt_d10_3;fmxinfopower;bindcompvcl;RESTBackendComponents;TeeUI;ibo5ftsrt_d10_3;VCLRESTComponents;soapserver;dbxcds;VclSmp;adortl;vclie;bindengine;DBXMySQLDriver;CloudService;dsnapxml;FireDACMySQLDriver;dbrtl;inetdbxpress;IndyProtocols;ibo5art_d10_3;FireDACCommonODBC;FireDACCommonDriver;inet;fmxase;$(DCC_UsePackage)</DCC_UsePackage>
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
<BT_BuildType>Debug</BT_BuildType>
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
<VerInfo_Locale>1033</VerInfo_Locale>
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
</PropertyGroup>
<PropertyGroup Condition="'$(Base_Win64)'!=''">
<DCC_UsePackage>DBXSqliteDriver;bindcompdbx;IndyIPCommon;RESTComponents;DBXInterBaseDriver;vcl;IndyIPServer;vclactnband;vclFireDAC;IndySystem;tethering;dsnapcon;FireDACADSDriver;FireDACMSAccDriver;fmxFireDAC;vclimg;TeeDB;FireDAC;vcltouch;ibo5crt_d10_3;vcldb;bindcompfmx;ibo5trt_d10_3;FireDACSqliteDriver;FireDACPgDriver;ibmonitor;inetdb;ibo5vrt_d10_3;FMXTee;ipstudiowinclient;ibo5xrt_d10_3;soaprtl;DbxCommonDriver;FmxTeeUI;ibxpress;FireDACIBDriver;fmx;fmxdae;xmlrtl;soapmidas;ibxbindings;fmxobj;vclwinx;vclib;rtl;Tee;DbxClientDriver;fcstudiowin;ibo5wxrt_d10_3;ibo5frt_d10_3;CustomIPTransport;vcldsnap;dbexpress;IndyCore;ibo5admrt_d10_3;ibo5wrt_d10_3;vclx;bindcomp;appanalytics;dsnap;ipstudiowin;officeXPrt;FireDACCommon;IndyIPClient;ibo5rplrt_d10_3;fmxinfopower;bindcompvcl;RESTBackendComponents;TeeUI;ibo5ftsrt_d10_3;VCLRESTComponents;soapserver;dbxcds;VclSmp;adortl;vclie;bindengine;DBXMySQLDriver;CloudService;dsnapxml;FireDACMySQLDriver;dbrtl;inetdbxpress;IndyProtocols;ibo5art_d10_3;FireDACCommonODBC;FireDACCommonDriver;inet;fmxase;$(DCC_UsePackage)</DCC_UsePackage>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_1)'!=''">
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
<DCC_DebugDCUs>true</DCC_DebugDCUs>
<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>
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2)'!=''">
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
<DCC_DebugInformation>0</DCC_DebugInformation>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
</PropertyGroup>
<ItemGroup>
<DelphiCompile Include="$(MainSource)">
<MainSource>MainSource</MainSource>
</DelphiCompile>
<DCCReference Include="Delete.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>Application</Borland.ProjectType>
<BorlandProject>
<Delphi.Personality>
<Source>
<Source Name="MainSource">Delete1.dpr</Source>
</Source>
</Delphi.Personality>
<Deployment Version="3">
<DeployFile LocalName="Win32\Debug\Delete1.exe" Configuration="Debug" Class="ProjectOutput">
<Platform Name="Win32">
<RemoteName>Delete1.exe</RemoteName>
<Overwrite>true</Overwrite>
</Platform>
</DeployFile>
<DeployClass Name="AdditionalDebugSymbols">
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
<Platform Name="OSX32">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="Win32">
<Operation>0</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidClassesDexFile">
<Platform Name="Android">
<RemoteDir>classes</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidFileProvider">
<Platform Name="Android">
<RemoteDir>res\xml</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidGDBServer">
<Platform Name="Android">
<RemoteDir>library\lib\armeabi-v7a</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidLibnativeArmeabiFile">
<Platform Name="Android">
<RemoteDir>library\lib\armeabi</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidLibnativeMipsFile">
<Platform Name="Android">
<RemoteDir>library\lib\mips</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidServiceOutput">
<Platform Name="Android">
<RemoteDir>library\lib\armeabi-v7a</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidSplashImageDef">
<Platform Name="Android">
<RemoteDir>res\drawable</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidSplashStyles">
<Platform Name="Android">
<RemoteDir>res\values</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="AndroidSplashStylesV21">
<Platform Name="Android">
<RemoteDir>res\values-v21</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_DefaultAppIcon">
<Platform Name="Android">
<RemoteDir>res\drawable</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_LauncherIcon144">
<Platform Name="Android">
<RemoteDir>res\drawable-xxhdpi</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_LauncherIcon36">
<Platform Name="Android">
<RemoteDir>res\drawable-ldpi</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_LauncherIcon48">
<Platform Name="Android">
<RemoteDir>res\drawable-mdpi</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_LauncherIcon72">
<Platform Name="Android">
<RemoteDir>res\drawable-hdpi</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_LauncherIcon96">
<Platform Name="Android">
<RemoteDir>res\drawable-xhdpi</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_SplashImage426">
<Platform Name="Android">
<RemoteDir>res\drawable-small</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_SplashImage470">
<Platform Name="Android">
<RemoteDir>res\drawable-normal</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_SplashImage640">
<Platform Name="Android">
<RemoteDir>res\drawable-large</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="Android_SplashImage960">
<Platform Name="Android">
<RemoteDir>res\drawable-xlarge</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="DebugSymbols">
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
<Platform Name="OSX32">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="Win32">
<Operation>0</Operation>
</Platform>
</DeployClass>
<DeployClass Name="DependencyFramework">
<Platform Name="OSX32">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
<Extensions>.framework</Extensions>
</Platform>
<Platform Name="OSX64">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
<Extensions>.framework</Extensions>
</Platform>
<Platform Name="Win32">
<Operation>0</Operation>
</Platform>
</DeployClass>
<DeployClass Name="DependencyModule">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="OSX32">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="OSX64">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="Win32">
<Operation>0</Operation>
<Extensions>.dll;.bpl</Extensions>
</Platform>
</DeployClass>
<DeployClass Required="true" Name="DependencyPackage">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="OSX32">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="OSX64">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
<Extensions>.dylib</Extensions>
</Platform>
<Platform Name="Win32">
<Operation>0</Operation>
<Extensions>.bpl</Extensions>
</Platform>
</DeployClass>
<DeployClass Name="File">
<Platform Name="Android">
<Operation>0</Operation>
</Platform>
<Platform Name="iOSDevice32">
<Operation>0</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>0</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>0</Operation>
</Platform>
<Platform Name="OSX32">
<RemoteDir>Contents\Resources\StartUp\</RemoteDir>
<Operation>0</Operation>
</Platform>
<Platform Name="OSX64">
<RemoteDir>Contents\Resources\StartUp\</RemoteDir>
<Operation>0</Operation>
</Platform>
<Platform Name="Win32">
<Operation>0</Operation>
</Platform>
</DeployClass>
<DeployClass Name="iPad_Launch1024">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="iPad_Launch1536">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="iPad_Launch2048">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="iPad_Launch768">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="iPhone_Launch320">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="iPhone_Launch640">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="iPhone_Launch640x1136">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectAndroidManifest">
<Platform Name="Android">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectiOSDeviceDebug">
<Platform Name="iOSDevice32">
<RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectiOSDeviceResourceRules">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectiOSEntitlements">
<Platform Name="iOSDevice32">
<RemoteDir>..\</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<RemoteDir>..\</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectiOSInfoPList">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectiOSResource">
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectOSXDebug">
<Platform Name="OSX64">
<RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectOSXEntitlements">
<Platform Name="OSX32">
<RemoteDir>..\</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="OSX64">
<RemoteDir>..\</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectOSXInfoPList">
<Platform Name="OSX32">
<RemoteDir>Contents</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="OSX64">
<RemoteDir>Contents</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectOSXResource">
<Platform Name="OSX32">
<RemoteDir>Contents\Resources</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="OSX64">
<RemoteDir>Contents\Resources</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Required="true" Name="ProjectOutput">
<Platform Name="Android">
<RemoteDir>library\lib\armeabi-v7a</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice32">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSDevice64">
<Operation>1</Operation>
</Platform>
<Platform Name="iOSSimulator">
<Operation>1</Operation>
</Platform>
<Platform Name="Linux64">
<Operation>1</Operation>
</Platform>
<Platform Name="OSX32">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="OSX64">
<RemoteDir>Contents\MacOS</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="Win32">
<Operation>0</Operation>
</Platform>
</DeployClass>
<DeployClass Name="ProjectUWPManifest">
<Platform Name="Win32">
<Operation>1</Operation>
</Platform>
<Platform Name="Win64">
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="UWP_DelphiLogo150">
<Platform Name="Win32">
<RemoteDir>Assets</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="Win64">
<RemoteDir>Assets</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<DeployClass Name="UWP_DelphiLogo44">
<Platform Name="Win32">
<RemoteDir>Assets</RemoteDir>
<Operation>1</Operation>
</Platform>
<Platform Name="Win64">
<RemoteDir>Assets</RemoteDir>
<Operation>1</Operation>
</Platform>
</DeployClass>
<ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
<ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
<ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
<ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
<ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
<ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
<ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
<ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
<ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
</Deployment>
<Platforms>
<Platform value="Win32">True</Platform>
<Platform value="Win64">False</Platform>
</Platforms>
</BorlandProject>
<ProjectFileVersion>12</ProjectFileVersion>
</ProjectExtensions>
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
<Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
</Project>
----------
���<?xml version="1.0" encoding="utf-8"?>
<BorlandProject>
<Transactions>
<Transaction>2019/02/18 11:29:53.000.006,=C:\Users\User\Documents\Embarcadero\Studio\Projects\Unit1.pas</Transaction>
<Transaction>2019/02/22 13:46:35.000.196,=C:\Users\User\Documents\Embarcadero\Studio\Projects\Unit1.pas</Transaction>
<Transaction>2019/02/22 14:28:54.000.270,=C:\Users\User\Documents\Embarcadero\Studio\Projects\Unit1.pas</Transaction>
<Transaction>2019/03/25 16:55:50.000.039,=C:\Users\User\Documents\Embarcadero\Studio\Projects\Unit1.pas</Transaction>
<Transaction>2019/03/25 17:47:36.000.954,C:\Users\User\Documents\Embarcadero\Studio\Projects\Unit1.dfm=C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete.dfm</Transaction>
<Transaction>2019/03/25 17:47:36.000.954,C:\Users\User\Documents\Embarcadero\Studio\Projects\Unit1.pas=C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete.pas</Transaction>
<Transaction>2019/03/25 17:47:51.000.702,C:\Users\User\Documents\Embarcadero\Studio\Projects\Project1.dproj=C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete1.dproj</Transaction>
</Transactions>
</BorlandProject>
----------
���[Closed Files]
File_0=TSourceModule,'C:\DEV\ibo5_10_1_b2808_Source\source\core\IB_Components.pas',0,1,23714,1,23732,0,0,,
File_1=TSourceModule,'c:\program files (x86)\embarcadero\studio\20.0\SOURCE\VCL\Vcl.Controls.pas',0,1,7486,37,7493,0,0,,
File_2=TSourceModule,'c:\program files (x86)\embarcadero\studio\20.0\source\data\Data.DB.pas',0,1,3208,1,3226,0,0,,
File_3=TSourceModule,'C:\DEV\BCC10\Cafe.pas',0,1,10957,114,10967,0,0,,{1
File_4=TSourceModule,'C:\DEV\BCC10\SplashForm.pas',0,1,1,43,20,0,0,,
File_5=TSourceModule,'C:\DEV\BCC10\Save\Cafe.pas',0,1,6941,8,6975,0,0,,
File_6=TSourceModule,'C:\DEV\BOOKS\Sales\master.pas',0,1,12502,4,12567,0,0,,
File_7=TSourceModule,'C:\DEV\BOOKS\Sales\DataMod.pas',0,1,3554,11,3572,0,0,,
File_8=TSourceModule,'C:\DEV\BOOKS\Sales\Startup.pas',0,1,23,67,40,0,0,,
File_9=TSourceModule,'C:\DEV\BOOKS\Sales\Categories.pas',0,1,438,2,464,0,0,,
File_10=TSourceModule,'C:\DEV\BOOKS\Sales\FTP.pas',0,1,627,45,642,0,0,,
File_11=TSourceModule,'C:\DEV\BOOKS\Sales\Chkform.pas',0,1,1,4,8,0,0,,
File_12=TSourceModule,'C:\DEV\BOOKS\Sales\new_titles.pas',0,1,144,29,167,0,0,,
File_13=TSourceModule,'C:\DEV\BOOKS\Sales\Manage3.pas',0,1,3203,3,3222,0,0,,
File_14=TSourceModule,'C:\DEV\BOOKS\Sales\Reminder.pas',0,1,101,17,119,0,0,,
[Modules]
Module0=C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete.pas
Module1=default.htm
Count=2
EditWindowCount=1
[C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete.pas]
ModuleType=TSourceModule
[default.htm]
ModuleType=TURLModule
[EditWindow0]
ViewCount=2
CurrentEditView=C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete.pas
View0=0
View1=1
PercentageSizes=1
Create=1
Visible=1
Docked=0
State=0
Left=6538
Top=900
Width=3462
Height=8307
MaxLeft=-5
MaxTop=-9
ClientWidth=3403
ClientHeight=7968
DockedToMainForm=0
BorlandEditorCodeExplorer=BorlandEditorCodeExplorer@EditWindow0
TopPanelSize=0
LeftPanelSize=0
LeftPanelClients=BorlandEditorCodeExplorer@EditWindow0
LeftPanelData=0000080001000100000019000000426F726C616E64456469746F72436F64654578706C6F726572AF0C00000000000000DD01000000000000FFFFFFFF
RightPanelSize=0
BottomPanelSize=0
BottomMiddlePanelSize=1424
BottomMiddlePanelClients=DockSite0,ToDo List,MessageView
BottomMiddelPanelData=0000080001020200000009000000446F636B53697465300E000000546F446F4C69737457696E646F77A2170000000000000290050000000000000100000000A21700000F0000004D65737361676556696577466F726DFFFFFFFF
[View0]
CustomEditViewType=TWelcomePageView
WelcomePageURL=bds:/default.htm
[View1]
CustomEditViewType=TEditView
Module=C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete.pas
CursorX=49
CursorY=61
TopLine=52
LeftCol=1
Elisions=
Bookmarks=
EditViewName=C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete.pas
[UndockedDesigner]
Count=5
Module0=C:\Users\User\Documents\Embarcadero\Studio\Projects\Unit1.pas
Left0=744
Top0=120
Width0=340
Height0=224
Visible0=0
State0=0
Module1=C:\DEV\BCC10\SplashForm.pas
Left1=477
Top1=396
Width1=804
Height1=237
Visible1=0
State1=0
Module2=C:\DEV\BOOKS\Sales\Categories.pas
Left2=2
Top2=97
Width2=1389
Height2=965
Visible2=0
State2=0
Module3=C:\Users\User\Documents\Embarcadero\Studio\Projects\Delete.pas
Left3=9
Top3=229
Width3=501
Height3=249
Visible3=1
State3=0
Module4=C:\DEV\BCC10\Cafe.pas
Left4=1
Top4=100
Width4=1712
Height4=1062
Visible4=0
State4=0
[Watches]
Count=0
[WatchWindow]
WatchColumnWidth=120
WatchShowColumnHeaders=1
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=0
Top=3503
Width=2622
Height=1934
MaxLeft=-5
MaxTop=-9
ClientWidth=2563
ClientHeight=1595
TBDockHeight=169
LRDockWidth=2549
Dockable=1
StayOnTop=0
[Breakpoints]
Count=0
[EmbarcaderoWin32Debugger_AddressBreakpoints]
Count=0
[EmbarcaderoWin64Debugger_AddressBreakpoints]
Count=0
[EmbarcaderoOSX32Debugger_AddressBreakpoints]
Count=0
[EmbarcaderoIOS64DeviceDebugger_AddressBreakpoints]
Count=0
[EmbarcaderoIOS32DeviceDebugger_AddressBreakpoints]
Count=0
[EmbarcaderoAndroidDebugger_AddressBreakpoints]
Count=0
[Main Window]
PercentageSizes=1
Create=1
Visible=1
Docked=0
State=0
Left=0
Top=0
Width=9980
Height=873
MaxLeft=-5
MaxTop=-9
ClientWidth=9922
ClientHeight=535
BottomPanelSize=391
[ProjectManager]
PercentageSizes=1
Create=1
Visible=1
Docked=1
State=0
Left=0
Top=0
Width=1729
Height=7701
MaxLeft=-1
MaxTop=-1
ClientWidth=1729
ClientHeight=7701
TBDockHeight=276
LRDockWidth=3726
Dockable=1
StayOnTop=0
[MessageView]
PercentageSizes=1
Create=1
Visible=1
Docked=1
State=0
Left=0
Top=24
Width=3403
Height=1248
MaxLeft=-1
MaxTop=-1
ClientWidth=3403
ClientHeight=1248
TBDockHeight=1248
LRDockWidth=3521
Dockable=1
StayOnTop=0
[ToolForm]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=8213
Top=5276
Width=1787
Height=4537
MaxLeft=-5
MaxTop=-9
ClientWidth=1729
ClientHeight=4198
TBDockHeight=5811
LRDockWidth=1406
Dockable=1
StayOnTop=0
[ClipboardHistory]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=0
Top=0
Width=1787
Height=6114
MaxLeft=-5
MaxTop=-9
ClientWidth=1729
ClientHeight=5775
TBDockHeight=6114
LRDockWidth=1787
Dockable=1
StayOnTop=0
[ProjectStatistics]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=0
Top=0
Width=1289
Height=4572
MaxLeft=-5
MaxTop=-9
ClientWidth=1211
ClientHeight=4225
TBDockHeight=4572
LRDockWidth=1289
Dockable=1
StayOnTop=0
[PropertyInspector]
PercentageSizes=1
Create=1
Visible=1
Docked=0
State=0
Left=4854
Top=900
Width=1689
Height=8217
MaxLeft=-5
MaxTop=-9
ClientWidth=1631
ClientHeight=7879
TBDockHeight=5811
LRDockWidth=1548
Dockable=1
StayOnTop=0
SplitPos=138
[PropInspDesignerSelection]
ArrangeBy=Name
SelectedItem=Name,
ExpandedItems=DMLCacheFlags=0,FieldOptions=0,FilterOptions=0,IB_Connection=0,IB_Transaction=0,"LiveBindings Designer=0",BufferSynchroFlags=0,DefaultTransaction=0,FieldEntryTypes=0
[ClassBrowserTool]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=0
Top=0
Width=1895
Height=3280
MaxLeft=-5
MaxTop=-9
ClientWidth=1816
ClientHeight=2932
TBDockHeight=3137
LRDockWidth=1846
Dockable=1
StayOnTop=0
[MetricsView]
PercentageSizes=1
Create=1
Visible=0
Docked=1
State=0
Left=-362
Top=-1033
Width=3564
Height=4831
MaxLeft=-1
MaxTop=-1
ClientWidth=3564
ClientHeight=4831
TBDockHeight=4831
LRDockWidth=3564
Dockable=1
StayOnTop=0
[QAView]
PercentageSizes=1
Create=1
Visible=0
Docked=1
State=0
Left=-362
Top=-1033
Width=3564
Height=4831
MaxLeft=-1
MaxTop=-1
ClientWidth=3564
ClientHeight=4831
TBDockHeight=4831
LRDockWidth=3564
Dockable=1
StayOnTop=0
[frmDesignPreview]
PercentageSizes=1
Create=1
Visible=1
Docked=1
State=0
Left=0
Top=0
Width=1709
Height=7692
MaxLeft=-1
MaxTop=-1
ClientWidth=1709
ClientHeight=7692
TBDockHeight=5963
LRDockWidth=2510
Dockable=1
StayOnTop=0
[TemplateView]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=8213
Top=5276
Width=1787
Height=4554
MaxLeft=-5
MaxTop=-9
ClientWidth=1729
ClientHeight=4216
TBDockHeight=365
LRDockWidth=273
Dockable=1
StayOnTop=0
Name=120
Description=334
filter=1
[DebugLogView]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=2622
Top=7861
Width=3481
Height=2139
MaxLeft=-5
MaxTop=-9
ClientWidth=3423
ClientHeight=1800
TBDockHeight=294
LRDockWidth=3623
Dockable=1
StayOnTop=0
[ThreadStatusWindow]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=0
Top=7861
Width=2622
Height=2139
MaxLeft=-5
MaxTop=-9
ClientWidth=2563
ClientHeight=1800
TBDockHeight=160
LRDockWidth=5420
Dockable=1
StayOnTop=0
Column0Width=145
Column1Width=100
Column2Width=115
Column3Width=301
[LocalVarsWindow]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=0
Top=5446
Width=2622
Height=2406
MaxLeft=-5
MaxTop=-9
ClientWidth=2563
ClientHeight=2068
TBDockHeight=205
LRDockWidth=2549
Dockable=1
StayOnTop=0
[CallStackWindow]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=0
Top=1168
Width=2622
Height=2344
MaxLeft=-5
MaxTop=-9
ClientWidth=2563
ClientHeight=2005
TBDockHeight=169
LRDockWidth=2549
Dockable=1
StayOnTop=0
[PatchForm]
PercentageSizes=1
Create=1
Visible=1
Docked=1
State=0
Left=0
Top=0
Width=4385
Height=1239
MaxLeft=-1
MaxTop=-1
ClientWidth=4385
ClientHeight=1239
TBDockHeight=2496
LRDockWidth=3398
Dockable=1
StayOnTop=0
[FindReferencsForm]
PercentageSizes=1
Create=1
Visible=1
Docked=1
State=0
Left=0
Top=0
Width=4385
Height=1239
MaxLeft=-1
MaxTop=-1
ClientWidth=4385
ClientHeight=1239
TBDockHeight=5080
LRDockWidth=5303
Dockable=1
StayOnTop=0
[RefactoringForm]
PercentageSizes=1
Create=1
Visible=1
Docked=1
State=0
Left=0
Top=0
Width=4385
Height=1239
MaxLeft=-1
MaxTop=-1
ClientWidth=4385
ClientHeight=1239
TBDockHeight=3832
LRDockWidth=5303
Dockable=1
StayOnTop=0
[ToDo List]
PercentageSizes=1
Create=1
Visible=0
Docked=1
State=0
Left=0
Top=0
Width=3672
Height=1141
MaxLeft=-1
MaxTop=-1
ClientWidth=3672
ClientHeight=1141
TBDockHeight=1141
LRDockWidth=3672
Dockable=1
StayOnTop=0
Column0Width=270
Column1Width=30
Column2Width=100
Column3Width=70
Column4Width=70
SortOrder=4
ShowHints=1
ShowChecked=1
[DataExplorerContainer]
PercentageSizes=1
Create=1
Visible=1
Docked=1
State=0
Left=0
Top=0
Width=1709
Height=7692
MaxLeft=-1
MaxTop=-1
ClientWidth=1709
ClientHeight=7692
TBDockHeight=4884
LRDockWidth=7148
Dockable=1
StayOnTop=0
[GraphDrawingModel]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=1929
Top=7941
Width=2856
Height=3209
MaxLeft=-5
MaxTop=-9
ClientWidth=2798
ClientHeight=2870
TBDockHeight=3209
LRDockWidth=2856
Dockable=1
StayOnTop=0
[BreakpointWindow]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=6108
Top=7861
Width=3892
Height=2139
MaxLeft=-5
MaxTop=-9
ClientWidth=3833
ClientHeight=1800
TBDockHeight=205
LRDockWidth=6396
Dockable=1
StayOnTop=0
Column0Width=100
Column1Width=75
Column2Width=200
Column3Width=200
Column4Width=75
Column5Width=75
Column6Width=75
[StructureView]
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=0
Top=1497
Width=1689
Height=3387
MaxLeft=-5
MaxTop=-9
ClientWidth=1631
ClientHeight=3048
TBDockHeight=3467
LRDockWidth=1675
Dockable=1
StayOnTop=0
[ModelViewTool]
PercentageSizes=1
Create=1
Visible=1
Docked=1
State=0
Left=0
Top=0
Width=1709
Height=7692
MaxLeft=-1
MaxTop=-1
ClientWidth=1709
ClientHeight=7692
TBDockHeight=4884
LRDockWidth=5303
Dockable=1
StayOnTop=0
[BorlandEditorCodeExplorer@EditWindow0]
PercentageSizes=1
Create=1
Visible=0
Docked=1
State=0
Left=0
Top=0
Width=1470
Height=8262
MaxLeft=-1
MaxTop=-1
ClientWidth=1470
ClientHeight=8262
TBDockHeight=8262
LRDockWidth=1470
Dockable=1
StayOnTop=0
[DockHosts]
DockHostCount=2
[DockSite0]
HostDockSite=DockBottomCenterPanel
DockSiteType=1
PercentageSizes=1
Create=1
Visible=0
Docked=1
State=0
Left=8
Top=8
Width=4385
Height=1488
MaxLeft=-1
MaxTop=-1
ClientWidth=4385
ClientHeight=1488
TBDockHeight=1488
LRDockWidth=4385
Dockable=1
StayOnTop=0
TabPosition=1
ActiveTabID=RefactoringForm
TabDockClients=RefactoringForm,PatchForm,FindReferencsForm,MetricsView,QAView
[DockSite1]
DockSiteType=1
PercentageSizes=1
Create=1
Visible=0
Docked=0
State=0
Left=7822
Top=1720
Width=1787
Height=8289
MaxLeft=-5
MaxTop=-9
ClientWidth=1729
ClientHeight=7950
TBDockHeight=3182
LRDockWidth=1445
Dockable=1
StayOnTop=0
TabPosition=1
ActiveTabID=ProjectManager
TabDockClients=ProjectManager,ModelViewTool,DataExplorerContainer,frmDesignPreview
----------
[Stats]
EditorSecs=271
DesignerSecs=147
InspectorSecs=132
CompileSecs=10487
OtherSecs=1
StartTime=3/25/2019 5:59:41 PM
RealKeys=0
EffectiveKeys=0
DebugSecs=1825
[Non-text portions of this message have been removed]