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 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...
is there a Delphi 2007Would be nice to have a bundle of the latest Delphi packages.
Gilbert Padilla wrote:
> Would be nice to have a bundle of the latest Delphi packages.
>
I expect Delphi 2007 will only be on sale until the full RAD Studio 2009
edition is published, including Delphi 2009.net.
W
...
Delphi 2010 w Delphi 2007I have D2007 installed on my laptop (XP sp3 running on dual core Athlon).
Can I install D2010 on this machine without it affecting D2007? Will D2010
affect D2007 in any way?
Thanks,
Randall Carpenter
> {quote:title=Randall Carpenter wrote:}{quote}
> I have D2007 installed on my laptop (XP sp3 running on dual core Athlon).
> Can I install D2010 on this machine without it affecting D2007? Will D2010
> affect D2007 in any way?
Won't hurt a thing. I have D7, RAD Studio 2007, RAD Studio 2009, and RAD Studio 2010 all on my desktop system and they coexist fine. Jus...
Delphi 2007 RTL in Delphi 7I read somewhere that it is possible to use Delphi 2007's (or for that
matter Delphi 2006's) RTL in Delphi 7 by just recompiling the source of RTL.
Is this really possible? What are the benefits that we can derive using
a higher version's RTL?
TIA
Yogi Yang
Yogi Yang wrote:
> I read somewhere that it is possible to use Delphi 2007's (or for
> that matter Delphi 2006's) RTL in Delphi 7 by just recompiling the
> source of RTL.
If it actually compiles in Delphi 7, I guess it would be possible.
OTOH, if one has Delphi 2007 already, I don't s...
Moving from Delphi 7 to Delphi 2007Is there any compelling reason to move (quite a large project) from
Delphi 7 to Delphi 2007?
Specifically, is there better Vista/Win7/Win8 integration provided by
Delphi 2007? (In the project I am already using a custom manifest file
for Vista/Win7 etc.. and not the std XPMan component)
Does 2007 add any new bugs to the scene?
Thanks
Rael
Rael wrote:
> Is there any compelling reason to move (quite a large project) from
> Delphi 7 to Delphi 2007?
If you are going to upgrade, why not upgrade to something newer?
> In the project I am already using a custom man...
Migrate from Delphi 2007 to Delphi 2010Hi All,
Thanks in advance for your help.
Below is my query,
Currently I am using Delphi 2007 and i want to migrate to Delphi 2010.
1. What all things i need to take care while doing this?
2. What all third party components will get impacted?
3. Any known issues in Delphi 2010 which might impact the cause?
4. Any changes in database operation required as i am using Oracle?
Hope I have post this query under correct category. If not sorry for the trouble and could you please suggest me the correct category for this?
Looking forward for your response.
Have a great day.
Th...
Delphi 2007 to Delphi 2009 ConversionCharArrayPtr = ^CharArray;
CharArray = array[0..MaxInt-1] of Char;
How to convert to Delphi 2009?
Bill
Bill Miller wrote:
> CharArrayPtr = ^CharArray;
> CharArray = array[0..MaxInt-1] of Char;
>
> How to convert to Delphi 2009?
>
> Bill
it depends heavelly on how it is used fearther down in your project and
what you want to convert it to.
I you want to simple convert the declarations ignoring UNicode
altogether then the only think you have to change is the CharArray
declaratin from a Char to an AnsiChar eg
CharArrayPtr = ^CharArray;
CharArray = array[0..MaxInt-1] of AnsiChar; //----------- this changed
This Shoold be enough that the procedures using it and are expecting
ANSI characters in the string will work with out any changes.
regards
Yannis.
--
"The difference between pornography and erotica is lighting."
-- Gloria Leonard
> it depends heavelly on how it is used fearther down in your project and
> what you want to convert it to.
>
> I you want to simple convert the declarations ignoring UNicode
> altogether then the only think you have to change is the CharArray
> declaratin from a Char to an AnsiChar eg
>
> CharArrayPtr = ^CharArray;
> CharArray = array[0..MaxInt-1] of AnsiChar; //----------- this changed
>
> This Shoold be enough that the procedures using it and are expecting
> ANSI characters in the string will work with out any changes.
Hi Ya...
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...
Migrate from Delphi 2007 for Win32 to Delphi XEwe use Delphi 2007 for Win32 to support legacy (32Bit) OWL-based pascal applications (yes i know it was a mistake not to switch to VCL 15 years ago).
could our applications still be opened and compiled with Delphi XE?
The existing projects are all plain Pascal-Code, coming back from the times of Turbo Pascal for Windows and later on Borland Pascal.
Are there any improvements we could profit from (i.e IDE, Debugger)?
Thanks
Andrej
> {quote:title=Andrej Dimic wrote:}{quote}
> could our applications still be opened and compiled with Delphi XE?
I'm not sure, but I guess ...
Code PortingHi people,
Basically, I am moving an app from Delphi 5 to Delphi 2009 which is all great (yeah right!) and I am having a couple of issues with some thirdparty components that we have the source code for.
Being that I wanted to make the task as easy as possible, I was able to download the component in Delphi 2007 format. I have now managed to port that to 2009 so it compiles only with warnings and no errors. So all is good at this moment.
Now I am trying to install the component into the IDE by using the install menu option from the project manager. This is where I run into errors. ...
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, you
might notice a slight delay. THis is due to the JIT compiler
transforming the IL to native code.
However, if you then time the execution of the same code without
restarting the program, you will notice that the time take should be
comparable to "native" code; due to the fact that, after the first run,
..NET code *is* then as "native" as regular Delphi code.
Joanna
--
Joanna Carter [TeamB]
Joanna Carter (TeamB) wrote:
> However, if you then time the execution of the same code without
> restarting the program, you will notice that the time take should be
> comparable to "native" code; due to the fact that, after the first
> run, .NET code is then as "native" as regular Delphi code.
Correction: "should be faster than Delphi code"
-- because the jitter is part of the .Net distribution and thu...
can i use delphi 2007 bpls in delphi 2009can i use delphi 2007 bpls in delphi 2009 ?
"Gaetan SIRY" skrev i meddelelsen news:8703@forums.codegear.com...
> can i use delphi 2007 bpls in delphi 2009 ?
No.
--
Finn Tolderlund
The compatiblity between D2006 and D2007 was unique.
Normaly they can't be compatible because new version enhance/change the API. And D2009 defines String = Unicode where older version has String = Ansistring so D200x/Dx-BPL are 200% incompatible with D2009.
...
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 ...
How to use a delphi XE3 obj file in delphi 2007?Hi,
I'm migrating an application from delphi 2007 to delphi XE3 and I would like to do it in several steps. To do this I need to use a part of my new code (XE3) in the current delphi 2007 application. So I want to use the .obj file from my XE3 file. I know I have to use the {$L 'Filename'} and I know that I have to declare the functions that I want to use in external in my D2007 project.
I wanted to make an easy and simple example to see how it works with only 1 function 'hello world' compiled in obj with XE3 but I can't find the way to use it in D2007.
In D200...
What we need to learn as we migrate from Delphi 2007 to Delphi 2012As we prepare to move from Delphi 2007 to the Delphi of next
summer/fall, and 64bit some day, we are looking for a list of
improvements to Delphi (from IDE to the language) that have been done
from Delphi 2007 to Delphi XE, as well as any planned ones for the next
version.
We understand the daunting migration to Unicode that awaits us but know
that we have missed some "new and improved" items where we have to get
all our developers up to speed on that may not be related to Unicode.
So, we will need to plan some training before we jump in.
Is there such a list out there? There used to be one on what has been
done since Delphi 7 to D2007 <?> or so. Maybe there is one to XE.
Thanks!
-Eduardo
> {quote:title=Eduardo A. Salgado wrote:}{quote}
> As we prepare to move from Delphi 2007 to the Delphi of next
> summer/fall, and 64bit some day, we are looking for a list of
> improvements to Delphi (from IDE to the language) that have been done
> from Delphi 2007 to Delphi XE, as well as any planned ones for the next
> version.
>
> We understand the daunting migration to Unicode that awaits us but know
> that we have missed some "new and improved" items where we have to get
> all our developers up to speed on that may not be related to Unicode.
> So, we will need to plan some training before we jump in.
>
> Is there such a list out there? There used to be one on what has ...
Restore Delphi 2007 dbxpress after testing Delphi 2009Over on another thread I mentioned that I was having problems with dbxpress after testing Delphi 2009.
It started that I noticed that Delphi 2007 was compiling against the newer version of dbxpress drivers (dbxmys.dll, rather than dbxmys30.dll). This was spotted after testing an application on a colleagues machine that had the older driver, but not the newer. The application was "pure" 2007.
This continued after uninstalling Delphi 2009.
It was suggested that Delphi 2009 had overwritten my +dbxdrivers.ini+ file - and looking at it that looks like the problem. It was also...
Can I update my Delphi 2007 lincense to Delphi 2009?Hi all!!
I have 12 lincense of Delphi 2007. When I bought these licenses to your partner told us that we could update to Delphi 2009 free. But, now I try to do that and I can't do.
Are there any reason for that?
Can I update my version of Delphi?
> {quote:title=Oscar Estevez wrote:}{quote}
> Hi all!!
>
> I have 12 lincense of Delphi 2007. When I bought these licenses to your partner told us that we could update to Delphi 2009 free. But, now I try to do that and I can't do.
> Are there any reason for that?
>
> Can I update my version of Delphi?
...
Migration from Delphi 2007 Rad to Delphi XE Where is QuickreportsHave installed and finally registered Delphi Xe, I am looking for Quickreports but am unable to find it anywhere, I asked the Distributer and was told its packaged in Delphi XE, Well I should have gone to specsavers......cos I cant see it any where ?
> {quote:title=Colin Coleman wrote:}{quote}
> Have installed and finally registered Delphi Xe, I am looking for Quickreports but am unable to find it anywhere, I asked the Distributer and was told its packaged in Delphi XE, Well I should have gone to specsavers......cos I cant see it any where ?
Hello Colin,
Delphi X...
Delphi 2007 to Delphi XE2 paint order changeHello all,
I have a program here that does some very specific work in the paint
handlers and requires that the controls are painted from bottom to top.
This worked just fine under Delphi 2007 but now that we have migrated to
Delphi XE2, it no longer works.
Tracing the paint order, we discovered that there are cases when the
bottom most component (the form for instance) is drawn last instead of
first, which means that the painting code we do in the program gets a
black area for the bottom most control instead of its background.
This was observed with D2007 and DXE2 on the same c...
Delphi 2010*Upgrading from Delphi 2007 to Delphi 2010*
(as of February 1, 2010)
I bought a new computer in December and decided to upgrade from Delphi 2007 to Delphi 2010. Here are some lessons learned related to the Delphi upgrade, which I hope will make a similar transition easier for others. I still have an insurmountable problem with the speed of the IDE (#13 below).
As background, my old system had 3 GB of RAM, 40GB of unused disk, a 3.8 GHz CPU, and ran under Windows XP. My new system has 12 GB of RAM, 770GB of unused disk, a quad core 2.67 GHz CPU, and runs under Win7 Home Edition.
...
Project Manager Delphi 2007 vs Delphi 5I am in the midst of moving from Delphi 5 to Delphi 2007. I have a .BAT file that I use to do some post processing on the executable after it is built. In Delphi 5, I just added the .BAT file to the project manager. Then when I wanted to execute the .BAT file I just right clicked its entry in the project manager and selected Execute.
There doesn't seem to be anyway to add the .BAT file to the project manager in Delphi 2007. How can I set up something similar to what I had in Delphi 5? I thought about using a Post Build event but I don't necessarily want to execute the .BAT fi...
MOVED: Use Delphi XE TLB importer in Delphi 2007?....to the ActiveX group:
https://forums.embarcadero.com/thread.jspa?threadID=47170
--
Craig Stuntz · Vertex Systems Corp. · Columbus, OH
Delphi/InterBase Weblog : http://blogs.teamb.com/craigstuntz/
...
ArcGIS runtime errors after upgrading from Delphi 2007 to Delphi XE3We have an application written in Delphi Pascal that accesses the ArcGIS 9.3 API through the COM interface. We recently upgraded from Delphi 2007 to Delphi XE3 and ever since we upgraded we have been getting runtime errors in the ArcGIS libraries that we were not getting before.
Specifically the error is always "invalid floating point operation".
The first one that was occurring was happening in the method "sg.SgCoordRefSetZ". I was able to eliminate this error by adding a call to FGeoSpatialReference.SetZDomain(-10000, 100000.0) even though there is nowhere that we...