Delphi XE2 Third party componentsIm using in Delphi XE the following third party components:
-DBIsam from Elevate Software (www.elevatesoft.com)
-SecureBlackBox from Eidos (www.eidos.com)
-SuiPack from Sunisoft (sunisoft.com)
-PivotCube from PivotCube (pivotCube.com)
And other visual (based in VCL) and non-visual components developed by myself, and dll for 32bits.
I guess that will work XE2 if compiled in Delphi for 32 bits. But what happens when I want to want to generate a 64-bit executable? I need a separate 64-bit version of these components or dll, or the compiler performs the required conversion?
Juan Carlo...
Delphi 2009 Compatible Third Party Tools & ComponentsCDN Delphi 2009 Compatible Third Party Tools & Components page lists
GExperts as compatable with Delphi 2009, but when you go to the GExperts
website there is nothing mentioned about Delphi 2009 at all.
Whats up?
Bill
"Bill Miller" wrote in message <news:17719@forums.codegear.com>:
> CDN Delphi 2009 Compatible Third Party Tools & Components page lists
> GExperts as compatable with Delphi 2009, but when you go to the GExperts
> website there is nothing mentioned about Delphi 2009 at all.
I've asked this question before in thirdparty.gener...
Delphi 64 bit / Future Direction of DelphiI am responding to the various requests for 64 bit and the discussion
about the future direction of Delphi. I have a small company - we write
software for new and used auto dealerships - sales and finance - coming out
with accounting now and parts and service in the next few years.
Our customers don't care about 32 bit vs 64 bit, etc. They want me to
provide simple and convenient solutions to make their jobs easier.
We have stuck with Delphi 5 for many years - I should have upgraded 5
years ago but it did the job. We are now in the early stages of a
significant up...
Third party refactoring tools for DelphiCan anyone tell me their experiences with the more recent versions of
TwoDesk Castalia or ModelMaker Code Explorer? I'm coming from VS and
really liked Resharper and Coderush so I'm looking for a more robust
refactoring experience than what Delphi has built-in. Are there any
other refactoring tools than these two I may have overlooked?
Thanks in advance,
Kenny
Kenneth Cochran wrote:
> Can anyone tell me their experiences with the more recent versions of
> TwoDesk Castalia or ModelMaker Code Explorer? I'm coming from VS and
> really liked Resharper an...
DesignIDE package and porting Delphi 7 components to Delphi XE2HI
I am porting components from Delphi7 to Delphi XE2, and started run in problems regarding MaskProp.dcu, some of the components uses this, and is looking for TMaskProperty class.
After a lot of browsing on the net i figured out that all these units is packaged in the designide.dcp.
So i have the design time component in a package that requires the designide.dcp and then the runtime component package that reguires the designtime package for the component.
In the runtime component package i get errors regarding the MaskProp.dcu and the TMaskProperty class.
I dont know what to do from ...
Delphi 7 to Delphi XE2Hi,
Still using that old workhorse, Delphi7, but am going to the conference in
London hosted by Embarcadero on Delphi XE2.
Although I would like to "move with the times" and am keen to get the
UNICODE and 64-bit support offered by the latest IDEs, I confess to being
more than a little scared about all the UNICODE/String/AnsiString and 32/64
bit issues I'm probably going to fall over. Anyone recently upgraded from
Delphi7 to one of the latest Delphi IDEs?
Thanks,
Alain
On 03/02/2012 08:55, Alain Dekker wrote:
> Still using that old workhorse, Delphi7, but...
Delphi XE2: debugging a 64-bit Excel add-inHi all,
I'm trying to update a 64-bit Excel add-in to export threadsafe functions. So far the exported functions are registered as not threadsafe.
I've run into a problem debugging this add-in. Basically, debugging doesn't work: breakpoints are ignored, F4 has the same effect as F9.
Environment: W7 64-bit, Excel 2010 64-bit, XE2 update 4. Target platform Win64, with build configuration Debug. In Project Options, Compiler, Linking I have Debug Information=true and Include remote debug symbols=true as well.
Any ideas?
Many thanks,
Jan
Hm, no responses yet. Nobody doin...
Delphi XE2/XE3 Starter and Windows 64 bitHello.
If I create some application in Delphi XE3 Starter, compile it (as 32 bit, because Starter does not supports 64 bit compiler), will it run on Windows x64 ?
Which problems I can experience in it?
Artemij Shepelev wrote:
> If I create some application in Delphi XE3 Starter, compile it (as 32
> bit, because Starter does not supports 64 bit compiler), will it run
> on Windows x64 ?
As all other 32 bit apps on Win64,
> Which problems I can experience in it?
No problem in general. :-)
--
Alex
My question arised from Delphi Features Matrix Document. Fr...
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...
Using Delphi XE2 to write a 64-bit UDF with BLOBsHello,
We are upgrading a product to Interbase XE (x64) and we use a UDF with BLOBs (written in Delphi).
Previously (in x86 land) we have used the TBlob definition in IBExternals to allow GetSegment and PutSegment with blobs in the UDF, but in this causes an AV when we build a the UDF as a Win64 DLL in Delphi XE2 for Interbase XE (64-bit on Win7 Pro).
All the other UDF functions work correctly. The TBlob definition from XE2 is below - what is wrong?
Regards,
Graham
TISC_BlobGetSegment = function(BlobHandle: PInt;
Buffer: PByte;
...
Issues writing Interbase XE 64-bit UDFs in Delphi XE2I am having major issues trying to convert our old UDFs to 64-bit UDFs in Delphi XE2. The *only* success I have had is in returning a constant value!
{*****************************************************************}
{code}library SixtyFourUDF;
uses
SysUtils,
Classes;
function ReturnFive: Integer; export;
begin
Result := 5;
end;
Exports
Return_Five;
begin
end. {code}
{*****************************************************************}
I can't even get a simple multiply function to work.
{*****************************************************************}
...
is there a support for 128 bit at 64 bit delphi?Hi,
There is one bcd number has 20 digit. But it doesn't fit into 64 bit.
It
needs 66 bit to store. Anyway I need to convert this 20 digit number
to hex format. I mean, input is 20 digit bcd number as string, output
should be hexadecimal number as string.
What is the pratical way to do this?
Thank you.
> {quote:title=Mehmet Fide wrote:}{quote}
> Hi,
>
> There is one bcd number has 20 digit. But it doesn't fit into 64 bit.
> It
> needs 66 bit to store. Anyway I need to convert this 20 digit number
> to hex format. I mean, input is 20 digit bc...
is there a support for 128 bit at 64 bit delphi?Hi,
There is one bcd number has 20 digit. But it doesn't fit to 64 bit. It
needs 66 bit to store :/ Anyway I need to convert this 20 digit number
to hex format. I mean, input is 20 digit bcd number as string, output
should be hexadecimal number as string.
What is the pratical way to do this?
Thank you.
Am 22.02.2012 19:20, schrieb Mehmet Fide:
> Hi,
>
> There is one bcd number has 20 digit. But it doesn't fit to 64 bit. It
> needs 66 bit to store :/ Anyway I need to convert this 20 digit number
> to hex format. I mean, input is 20 digit bcd numbe...
Excel 64-bit and Delphi 32-bitHi,
Any known issues with using Excel 2010 64-bit with a Delphi 32-bit app
(Delphi 2009)
My app uses the ExcelXP TExcelApplication object and nothing real
fancy. I basically opens Excel, gets a list of all the ranges, and
then updates the cells.
It works fine with Excel 2007 but I have one customer who is reporting
problems and he has Excel 2010 64-bit.
Also, is there a way for my app to determine if Excel is 32 or 64-bit
so that I can log an appropriate message.
--
Bob Small
I think one the main points of the new Delphi 64-bit compiler was that it was required to be able...