Tools/Utilities Утилиты для delphi / utilities for delphi

emailx45

Бывалый
Staff member
Moderator

emailx45

Бывалый
Staff member
Moderator
not needly one tool, but one tip.

how to optimize the size of the executable in the series RAD STUDIO XE OR LATER
...


{ Reduce EXE size by disabling as much of RTTI as possible (delphi XE10.1 }

{$IF CompilerVersion >= 21.0}
{$WEAKLINKRTTI ON}
{$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])}
{$ENDIF}

Example:

program Project1;
{ Reduce EXE size by disabling as much of RTTI as possible (delphi XE10.1 }

{$IF CompilerVersion >= 21.0}
{$WEAKLINKRTTI ON}
{$RTTI EXPLICIT METHODS([]) PROPERTIES([]) FIELDS([])}
{$ENDIF}
uses
Vcl.Forms,
Unit1 in 'Unit1.pas' {Form1};
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.

***************************************************
in Project->options->Linking->debug information, set to False
***************************************************

note: some user tests have shown that Android apps have had their sizes reduced.
 

emailx45

Бывалый
Staff member
Moderator
IDA 7.0 (new link ok With SERIAL NUMBER)

there 2 link in folder IDA 7.0 TESTED DOWNLOAD

x64_idapronm_hexarm64m_hexarmm_hexx64m_hexx86m_170914 = 168MBytes

x64_idapronw_hexarm64w_hexarmw_hexx64w_hexx86w_170914_ = 198MBytes

+ SN.TXT file


[HIDE="5"]
serial number : qY2jts9hEJGy


https://pan.baidu.com/s/1i4HjAgH

pass baidu: xh24
[/HIDE]
 

emailx45

Бывалый
Staff member
Moderator
... not only Delphi tool for Databases.

DBSchema 7.6.3 Build 4832 Retail x86/x64 79mb

DbSchema Diagram Designer and Query Tool
  • Features interactive diagrams, relational data browse, schema compare and synchronization, query builder, query editor, HTML5 documentation, random data generator, forms and reports and more.
  • DbSchema uses its own project with schema structure and diagrams - this makes possible to deploy schema on multiple databases. The project file is in XML format and can be shared in a team using GIT.
  • DbSchema performs well with large schemes and databases. No database experience required - the tool is visual.
  • For ALL SQL databases: SqlServer, Postgresql, MySql, MariaDb, Oracle, Db2, Sybase, Sqlite, and more plus
  • NoSQL: MongoDB, Cassandra, HBase, Hive.
more info http://www.dbschema.com

youtube demo

[HIDE="5"]http://dl.downloadly.ir/Files/Software/DbSchema_7.6.3_Build_4832_Retail_x64_Downloadly.ir.rar

http://dl.downloadly.ir/Files/Software/DbSchema_7.6.3_Build_4832_Retail_x86_Downloadly.ir.rar

pass if needs www.downloadly.ir

[/HIDE]
 
Top