Custom component 64 bit [Edit]I have a custom component compiled on target platform Win32, everything works fine.
For Win64bit application it needs 64bit-compiled component. In doc is written simply create 32bit and compile and next set Target platform to 64bit and compile. When i open the package with component, in Project manager/Add platform there is NO selection for 64-bit windows( only OSX and 32bit win).
When i create application, there IS a selection 64-bit in Project manager/Add platform. Linker needs "package.a" library instead of "package.lib" but how to create "package.a"?
What ...
Using C++ Code in Delphi XE4 64-bit [Edit]I am interested in using C++ code in a Delphi XE4 Pro 64-bit app (no iOS, I did not want to pay the "nominal fee", at least not yet). I don't want to use a DLL, I want to link the C++ right into the 64-bit EXE. It is not easy finding info on this online, there's some stuff but not enough to answer all my questions.
1) Do I need to use C++ Builder 64-bit to create object files that can be linked via $LINK in Delphi XE4 64-bit? Or can I create them using Visual Studio?
2) Do I need to "flatten out" C++ classes in order to share them with Delphi or to share them ...
XE3, C++ Builder, GetHitTestInfoAt not works correctly under 64 bit [Edit]Hi,
The following code works on Win32 target, but not works on Win64 target.
On Win64 target never reach the,
{code}
clicked_item = pItem;
{code}
line, when I click on the tree view item.
{code}
void __fastcall TfMainForm::tvBrowserMouseDown(TObject *Sender,
TMouseButton Button, TShiftState Shift, int X, int Y)
{
_browser_mousedown( Sender, Button, Shift, X, Y );
}
void TfMainForm::_browser_mousedown(TObject *Sender, TMouseButton Button, TShiftState Shift, int X, int Y)
{
TTreeNode* pItem;
THitTests HT;
AnsiString text_label;
int idx, old_idx;
...
Having problems with Components that use other Custom Components [Edit]I need to understand how the components work and interact with each other better.
I have three components that I have created for my software so they can be included in a bunch of related applications.
Host.bpl - Low level Disk I/O, Licensing, INI file functions, encryption, etc.
Database.bpl - Database functions for many different databases
Resource.bpl - GUI level functions. Any visual components
My Database component uses the Host component for some of its functions
My Resource component uses the Host and Database component functions
All I need to place on my high level applicati...
C++ Builder XE4: Need to upgrade a custom widget for 64-bit compileTen years ago I subclassed TStringGrid to create a widget that added a few features I needed. I've installed this widget into XE4, and it works fine for 32-bit builds.
But now I'm rewriting the product, and it needs to be published in both 32- and 64-bit versions. This would work fine if I could figure out how to make a 64-bit version of my widget, but I'm stumped.
In C++ Builder XE4, if I select Component->New and create a new project, my only compiler options are 32-bit and OSX. Same thing if I use File->New->Other and choose Package from the project types list.
...
New-blank 64 bit C++ Builder XE3 VCL ApplicationI just installed C++Builder XE3 tonight, with 64 bit support.
I created a new project. I built it. And ran it. It built and ran fine. (32 bit).
Then I added a 64-bit windows target platform. Instead of it building, it complained it couldn't find the vcl.bpi and rtl.bpi, and even though they are both in the same folder and I clicked "remember this folder", it asked me twice to find the .bpi files that should have been in the default lib/bpi folders.
Then, if that wasn't annoying enough, it couldn't find any of the headers when I built in 64 bit mode. I had to find...
Real 64-bit compiled perl on HPUX 11.11, using proper ANSI 64-bit capable C compiler
I'm using the latest stable release (5.6.1), and perl compiled in
64-bit mode on HPUX (yes, I passed the correct parameters to Configure). It
fails a couple of routines under the test suite (numconvert and b). I also
read the README.hpux, and saw the rather disheartening remark in there about
64-bit compiled perl and perl not being fully 64-bit compliant yet.
However, I'm kindof stuck, because I need to build Sybase extensions
onto my perl, and as of Sybase 12.5 I only get 64-bit libraries, no more
32-bit libraries ...
This can be a major show-stopper, and although I...
Using a component from c++ builderHi:
I have a component I wrote in c++Builder, how can I reuse this component in delphi? This component is non-visual and is not on any pallet--if this makes a difference!
Any help apreciated.
Sean.
Hello,
you can't use C++ code from Delphi.
You could however declare an interface or an abstract base class in Delphi and derive your class from it.
--
Moritz
"Hey, it compiles! Ship it!"
...
C++ 64 bit [Edit]I just succeded in getting XE3 running. The most interesting feature is the ability to use a 64-bit address space. The Delphi documentation suggests that one set the <Target Platform> setting to 64-bit Windows. This exists and probably would work, if I knew Delphi. The C++ compiler was advertised to support 64 bit windows as well. But the <Target Platform> selection set in the C++ projects seems to lack the 64-bit Windows Option. I check the VCL and FireMonkey target sets. I can'f find any document
ation. Am I missing something? My question is: How does one designate...
Probable Stupid Question: Using 64-bit Code on 64-bit Processors running 32-bit Windows...Hi,
Does anyone know if it is possible to do 64-bit processing (probably by
writing some assembly language code) when running on a 64-bit CPU under
32-bit Windows?
As near as I can tell, one has to develop all 64-bit code on a 64-bit
machine running 64-bit windows and the target machines for 64-bit code have
to be 64-bit machines running 64-bit windows.
What might be useful, if it is possible, would be being able to detect a
64-bit processor when running 32-bit windows and take advantage of that to
speed up some calculations.
DanH
...
How Can I use the compliers used under Dev-C++ in C++ builder?How Can I use the compliers (for instance GCC, ...) used under Dev-C++ in C++ builder?
In my program,I used boost lambda expression under Dev-C++ due to the fact that C++ builder 2009 do not support such expression.
But Dev-C++ do not support RAD(rapid application development). It is hard to establish the common graphic GUI under windows.So I want to use the compliers of Dev-C++ in C++ builder.
And I do not know how to manage it. Where can I get the related materials or advices?
Can any one with kindness help me?
Il Tue, 11 Aug 2009 23:29:59 -0700, lserjt lserjt <> ha scritto:...
Probable Stupid Question: Using 64-bit Code on 64-bit Processors running 32-bit Windows... #2Hi,
Does anyone know if it is possible to do 64-bit processing (probably by
writing some assembly language code) when running on a 64-bit CPU under
32-bit Windows?
As near as I can tell, one has to develop all 64-bit code on a 64-bit
machine running 64-bit windows and the target machines for 64-bit code have
to be 64-bit machines running 64-bit windows.
What might be useful, if it is possible, would be being able to detect a
64-bit processor when running 32-bit windows and take advantage of that to
speed up some calculations.
DanH
Dan Hale wrote:
> Does anyone k...
Create a production build of Firefox for Microsoft 64-bit OSs (Vista 64, MS Windows 2008 Server 64-bit)Name: Dmitry Viazmin
Email: dmitrydotviazminattutdotby
Product: Firefox
Summary: Create a production build of Firefox for Microsoft 64-bit OSs (Vista 64, MS Windows 2008 Server 64-bit)
Comments:
Hi,
It would be great to get a production build of Firefox for Microsoft
64-bit OSs (Vista 64, MS Windows 2008 Server 64-bit).
Do you plan to do that?
Best Regards,
Dmitry Viazmin
Browser Details: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3
From URL: http://hendrix.mozilla.org/
Note to readers: Hendrix gives no expectation of a...
How to create the component in C++BuilderXE2 [Edit]Hello developers, I need your help please. I have the .h file with my own class(with all needs for component, __properties and etc), I want to make from this header component, but I don't know how to do it... Can any one explain me how to create component from .header file? thx ...
Edited by: Kakha Amashukeli on Dec 15, 2011 5:43 PM
Edited by: Kakha Amashukeli on Dec 15, 2011 6:38 PM
Kakha wrote:
> Hello developers, I need your help please. I have the .h file with my
> own class(with all needs for component, __properties and etc), I want
> to make from this header com...