Memory usage in Delphi 2007 vs. Delphi 5Going from Delphi 5 to Delphi 2007 and finding something way unexpected.
The reportedly *same code, and same data,* uses about 104 MB in Delphi 5
and about 400 MB in Delphi 2007 according to the Windows Task Manager.
Now, I know that it is not the most accurate way of measuring memory
usage, but it gives us an idea of the proportion of memory use in Delphi
2007.
Before we go deeper, we just created 20,000 objects and added them to an
object list in Delphi 5 and 2007. The result in memory use still looks
like 50 MB (Delphi 5) to 178 MB (Delphi 2007).
We've downloaded ...
Delphi 5 (string[80]) vs Delphi XEHi guys
i'm trying to convert a old application made with Delphi 5 to Delphi XE 5
The probleme i have right now is about String[80] and the Read / Write procedure
i have a type like that
Type TEnrMess = record
Mess : String[80];
MessSuiv : Word;
Hint : Word;
end;
And i read/write this type to a File of TEnrMess
My probleme is that the string have changed from Delphi 5 to Delphi XE
i join the link of a simple of the probleme that can be compiled on delphi 5 and any Delphi XE
https://mega.co.nz/#!wV1VyZzY!1ha5oOxTg7L1WJAOXutUygkj...
Delphi 2006 vs Delphi 2009 IDE stabilityHello, all.
I have medium sized project which includes about 20Mb of source code (just
size of *.pas files). I use Delphi 2006. There are third party component
suites JVCL, DevExpress Bars, Pegasus Imaging. All updates applied. The main
problem is IDE stability. About four..five times a day IDE become unstable
after intensive usage of code insight functions (most often I press
Ctrl+Space key). The best outcome is that I have to save everything and
restart the IDE. The worst outcome is when IDE stalls or falls into endless
loop of error messages and any unsaved work is lost. OS...
Delphi 4 to Delphi 2007Hello,
I will have to port a D4 application (with source) to D2007.
what kind of problem could I face ?
I will have to go to customer site tommorow to analyse its source code
to quote the work, what should I care of to hestimate the porting time ?
Thanks
John Terry wrote:
> Hello,
> I will have to port a D4 application (with source) to D2007.
> what kind of problem could I face ?
> I will have to go to customer site tommorow to analyse its source code
> to quote the work, what should I care of to hestimate the porting time ?
You can probably do it by just changi...
Delphi 2007 to Delphi 7I've written a class in Delphi 2007 that is not supported in Delphi 7. What
would be the best way to achive what I've done in Delphi 2007 in Delphi 7?
Thanks,
Tom
type BondConstants = class
{ Bond Types }
type BondType = record
const
TREASURY = 3;
AGENCY = 0;
CORP = 1;
MUNI = 2;
SBA = 5;
MBS = 4;
CMO = 6;
end;
{ Day Count Methods }
type DayCount = record
const
ACTUAL_360 = 2;
ACTUAL_365 = 1;
ACTUAL_ACTUAL = 1;
d30_360 = 0;
...
Delphi 5 To Delphi 2009I upgraded to Delphi 2009 from D5. The install says I can install Delphi and/or C++. Delphi installed OK but I see nothing of C++. What am I missing or does my upgrade not include C++? Thanks
It depends on what you bought. If you bought Delphi 2009 only, that's
what you get. If you bought Delphi 2009 and C++ Builder 2009 you get
both. My guess is you got Delphi 2009 only. The simplest way to verify
is look your invoice - it should say I would think. You could also go to
members.embarcadero.com, login, then click on my registered products.
There will be a textual description of...
Delphi 5 to Delphi 6 and upDear List,
Trying to add 7Zip compression support to my delphi application.
I am using the ported 7Zip sdk (see their website, they have a link).
I am stumped on how to rewrite a single function:
function ReverseDecode(var Models: array of SmallInt; ....): .....
where the input is mostly a fixed size array of SmallInt.
This code perfectly compiles and functions in Delphi 6 and up, but in Delphi 5 I get the error:
There is no overloaded version of 'ReverseDecode' that can be called with these arguments
And obviously, the input (fixed) isn't the same as the param de...
Delphi 5 to Delphi XE4Thinking about making the conversion. Of course we have numerous components such as:
TurboPower AsyncPro,
TurboPower Orpheus
ICS2
Synactis All-In-The-Box.
You guys have any advice as to the effort and time it may possibly take. It is a large application, several hundred thousand lines.
And that's what happens when using third party components, a lot of extra work. I have been burned a few times.
I now minimize the use to a few well known suppliers, like TMS.
I have "banned" a lot of other components.
Regards,
Ole
>
> Thinking about making the conver...
Converting Delphi 2007 Indy 10.2.3 to Delphi 2009 Indy 10.5.5 [Edit]Hello,
I am currently attempting to port over a Delphi 2007 project that uses Indy 10.2.3 (very successfully) to Delphi 2009 and Indy 10.5.5 (I just got the latest development build this morning). I think I am running into an encoding issue, but am not sure. Specifically, IDHTTP with SSL calls an old CGI and the CGI returns a .zip file and I then save it to the disk. In 2007 and before this worked perfectly. In 2009, it is not. Here is the examples of the 2 different results (though cut way short in the post) I
am getting back:
2007:
'PK'#3#4#$14#0#0#0#8#0'rLQ9žrPb€'#0...
SEPA components for Delphi with Source Code (Delphi 5Hi all,
in the european union change next year the Bankingformat to the SEPA Format.
All peoples and companies must change the bankingssoftware and the costumer data form acountnummers in the new IBAN and BIC numbers.
See:
http://www.arma-it.de/shop/artikelueber.php?wgruppeid=211&wgruppe_offen=211
Functions:
- generate SEPA XML'S
- Calc IBAN
- BIC Database (DE,AT and CH)
Questions:
vertrieb@arma-it.de
PS:
Bankinssoftware for Develpoers (Germany only)
http://www.arma-it.de/shop/artikelueber.php?wgruppeid=212&wgruppe_offen=212
El 26/10/13 21:38, A...
Convert Delphi 5 ADO App to Delphi 2007 ADO.NETI have an appliction tha that is writen in Delphi 5 with ADOConnetion, ADOTable, and ADOQuery components.
I need to upgrade to Delphi 2007 and use ADO.NET.
I have the program building in with Delphi 2007. Is there anything I need to do to convert the ADO to ADO.NET?
> I need to upgrade to Delphi 2007 and use ADO.NET.
Why ?
--
With best regards,
Dmitry Arefiev
AnyDAC (www.anydac.com) - Oracle, MS SQL Server, IBM DB2, MySQL,
Firebird, Interbase, PostgreSQL, Sybase ASA, SQLite, MS Access, DBX,
ODBC, InMem - universal high-speed native data access engine
Reasons for ...
Delphi 2010 can't upgrade Delphi 2007 projectsIf I open any of my Delphi 2007 projects in Delphi 2010 it prompts me that it will upgrade it. Unfortunately, that leaves Delphi 2010 to give errors about not knowing where to find system and other core units. On the other hand, if I delete all the BDS project files and only leave the .dpr, Delphi 2010 can successfully open and compile my project.
However, besides that quirk, I have another problem. I need to have both a working Delphi 2007 project and Delphi 2010, so I can compile using both without being prompted each and every time about upgrading project :)
So... Any ideas to what m...
Delphi and Delphi for .NetIt seems that Delphi for .Net is slower than Delphi Win32 native applicaiton.
I would like to know is it true all .Net application is slower than Win32 native applicaiton or it is Delphi for .Net only.
Your information is great appreciated,
Inung
On 2011-06-21 18:20:17 +0100, Inung Huang said:
> It seems that Delphi for .Net is slower than Delphi Win32 native applicaiton.
> I would like to know is it true all .Net application is slower than
> Win32 native applicaiton or it is Delphi for .Net only.
If you are only running the code in the application once then, yes, yo...
Delphi 2009 alongside Delphi 2007Hi all,
I am about to install Delphi 2009 on the same development system
as Delphi 2007, before I embark is there anything I should be aware
of so as to not break my Delphi 2007 installation and projects ?
Thanks
JT
John Taylor wrote:
> Hi all,
>
> I am about to install Delphi 2009 on the same development system
> as Delphi 2007, before I embark is there anything I should be aware
> of so as to not break my Delphi 2007 installation and projects ?
As long as you install into a separate folder there is no problem with
the two versions getting into each other...