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

emailx45

Premium
Joined
May 5, 2008
Messages
2,478
Reaction score
2,222
Location
here and there
MEmu Android Emulator 3.5.0.1
333mbytes

test your APK...
Apps or Games

disan.png


windows10(1).png


more info:
http://www.memuplay.com

Download direct
http://www.memuplay.com/blog/index.php/2017/09/01/memu-3-3-0-release-note/

Newbie dont worry about it, mannual here

http://www.memuplay.com/blog/2016/03/31/get-started/

Download v3.5.0.1
[HIDE="5"]http://dl.downloadly.ir/Files/Software/MEmu_Android_Emulator_3.5.0.1_Downloadly.ir.rar

pass www.downloadly.ir
[/HIDE]
 

emailx45

Premium
Joined
May 5, 2008
Messages
2,478
Reaction score
2,222
Location
here and there
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

Premium
Joined
May 5, 2008
Messages
2,478
Reaction score
2,222
Location
here and there
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

Premium
Joined
May 5, 2008
Messages
2,478
Reaction score
2,222
Location
here and there
... 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]
 

emailx45

Premium
Joined
May 5, 2008
Messages
2,478
Reaction score
2,222
Location
here and there
IDE Fix Pack 6.0 released – dcc64 and 10.2 Update 1 support,
but there is many other IDE Fix for other Delphi versions ok


Posted on September 28, 2017 by Andreas Hausladen

The new IDE Fix Pack version 6.0 is available. It supports Delphi 10.2 RTM and 10.2 Update 1. And after over a year of being in BETA testing without any bug reports, I also included all the Win64 compiler performance optimizations. Thus the jump to version 6.0 can finally be done as they make the Win64 compiler up to 50% faster.

Changelog:
  • Added: Win64 compile speed optimizations
  • Added: Delphi 10.2 Update 1 support
  • Added: Editor Block Completion UTF8 fix (Delphi 2009 only)

http://www.delphifeeds.com/go/s/142490
 

emailx45

Premium
Joined
May 5, 2008
Messages
2,478
Reaction score
2,222
Location
here and there
my manual quite simple to use of

ZEBEDEE and Firebird 3.0 or another, Windows 8.0 Pro 64bits

Tunneling your trafic

[HIDE="1"]
How to use ZeBeDee with Firebird 3.0 (or another) in Windows 8.0 Pro 64bit (or another)

One PC to Firebird Server and ZeBeDee Server
--------------------------------------------
1 - Install the Firebird 3.0 (do the changes needs)
2 - Install the ZeBeDee 2.4.1A or 2.53 (download from official site)
3 - Do the changes in file "SERVER.ZBD" or add the lines

verbosity 2 # Slightly more than basic messages
#
logfile ./server.log # all log will be registered
#
detached false # You will probably want this 'true' for normal
# use but I want to make sure that you see the
# preceding message if you haven't edited this.
server true # Yes, it's a server!
updmode false # we dont need UPD ports
compression zlib:9 # Allow maximum zlib compression
keylength 256 # Allow keys up to 256 bits
keylifetime 36000 # Shared keys last 10 hours
maxbufsize 16383 # Allow maximum possible buffer size
keygenlevel 2 # Generate maximum strength private keys
checksumlevel 3 # Allow maximum strength checksums
minchecksumlevel 0 # Allow no checksums if client requests
redirect none # Disable all redirect in all ports in server
redirect 3050 # Just 3050 port from Firebird its important
target localhost:3050/tcp # the Target is the same PC (IP 127.0.0.1) because the Firebird Server its installed in this machine

4 - Now, install the ZeBeDee and create one file (text) named (for example) "CLIENT.ZBD" and add this lines:

verbosity 1 # Basic messages only
#
logfile ./clientlog.log
#
server false # Client
detached true # Closes Console
#
# You should change the next line to your environment with this example, the connection string should be localhost/3051
# You can change port 3051 to another one
#
tunnel 3051:192.168.56.1:3050 #3050 is the port on the Firebird Server PC (192.168.56.1), and 3051 is the port in Client PC

#For server in another address or site, just change the IP/PORT

5 - Its ready! Now run the ZeBeDee:

PC Server:
zebedee.exe -f server.zbd

Pc Client:
zebedee.exe -f client.zbd

6 - In PC client, in your application change the STRING CONNECTION to:

127.0.0.1/3050:ALIAS_DB_OR_ABSOLUTE_PATH_FILE_FDB

look in your windows D.O.S. ZeBeDee or in file .LOG (Server or Client) to know what its happening
The file LOG its very important!

[/HIDE]
 
Top