delphi
3 Opensource and Free Delphi Component for MySql
by wajatimur on Dec.28, 2009, under delphi
A compilation of open-source and totally free Delphi component to access MySql database. All component are native and not needed extra driver or add-ins such as BDE or ODBC to run. Compare to VB or Visual C++, Delphi are still lack of database components available in the market.
1. Zeos Library
Components for fast access to MySql, PostgreSql, MicrosoftSQL, Oracle and Interbase SQL servers without use add-ons, such as BDE / ODBC / ADO. Besides, the components – sources of data are compatible with standard TDataset and have a number of additional features. Open Source.
2. TmySql
TmySQL provides access to MySQL servers from Delphi via a visual component and an extendable non-visual component. TmySQL utilizes a single client DLL, which is provided by most Windows-compiled versions of MySQL. TmySQL does not use the database aware components in Delphi, such as TDatabase, TQuery, etc. Open Source.
3. DirectSQL
The main idea of the project is to have cross-platform (Windows+Linux) delphi native components for directly accesing SQL servers (without using any externall dll’s). The first releas will be for My-sql and Interbase, but there are plans to be extendend. GNU General Public License.
Delphi 7 Lite 7.3.2.4 Released
by wajatimur on Dec.22, 2009, under delphi
Delphi 7 Lite 7.3.2.4 (build 01.03.2009)
Delphi 7 is the programming environment enables the rapid creation of powerful applications and windowing console for Microsoft Windows 98, 2000, 2003, XP, Vista. Deployed language is Object Pascal.
This product contains dozens of ready-to-use components greatly facilitate the writing of programs in Windows. In addition, Delphi 7, you can create and install their own components.
Version: 7.3.2.4
Date: 2009-03-01
Language: English
Platform: MS Windows 98/2000/XP/2003/Vista
Program designed for 32 bit systems, although tested on vista 64 bit works fine, just a little longer to start and stay at 0.5 sec. making the transition from the window of another application
(continue reading…)
Delphi 2009 Lite v2.3 Released
by wajatimur on Dec.18, 2009, under delphi
Delphi 2009 Lite 2.3 (12.0.3300.19037) Programs
Download : Rapidshare – Part 1
Download : Rapidshare – Part 2
New Release Of IDE Fix Pack For Delphi 2009/2010
by wajatimur on Dec.16, 2009, under delphi
The IDE Fix Pack 2009/2010 installs is a DLL-Expert that fixes the following Delphi/C++Builder 2009/2010 bugs at runtime. All changes are done in memory. No file on disk is modified. None of your projects are modified or benefit from the IDE Fix Pack.
(continue reading…)
Free Windows XP Shell Replacement Source Code Developed On Delphi
by wajatimur on Dec.14, 2009, under delphi
SharpE is an open source shell replacement for Microsoft Windows 2000 and up, released under the GNU General Public License (GPL).
Lite Application Released Delphi Distiller v1.82
by wajatimur on Dec.13, 2009, under delphi
Whats New!
- Automatically select page for currently installed Delphi version (this feature was present in previous versions but disappeared in v1.80 by mistake).
- Undo button in packages and experts manager allows to discard changes in case that you messed up your selections.
- “Run Delphi 2010″ button between “Start Weareg2″ and “Stop Weareg2″. This makes it easier to call the three of them in a row, since Weareg2 doesn’t need to be active after D2010 has started. The “Run Delphi 2010″ button saves any pending changes automatically.
Compiled in Delphi 2009 to reduce the size of the executable.
Code Migration to Delphi 2009
by wajatimur on Aug.07, 2009, under delphi
Delphi 2009 <> Delphi 2007 (any old version) is STRING type:
In Delphi2009 (12)
type STRING = UnicodeString |
UnicodeString is not the same WideString
In Delphi 2007 (6,7,8,9,10,11)
STRING is the same AnsiString
WideString support for Unicode.
Some others conversion.
Replace VclJpg with VclImg
Replace WideString with string
Replace WideChar with Char
Replace WChar with Char
Replace AnsiStrComp with StrComp
Do that with any Ansi function.
Find some words as “Ansi” to remove it if you need.

