Tagged Questions
Embarcadero is the company that owns the software development tools of RAD Studio, Delphi, C++ Builder, and Rapid SQL, among others.
23
votes
4answers
1k views
how many Delphi users over the world?
A few years ago, in a newsgroup thread, Michael Swindell revealed that there was about 1.75 million single users of Delphi (click Here for the thread).
What is the status today ? Can somebody tell us ...
16
votes
2answers
423 views
Does Embarcadero RAD Studio XE license allow use on multiple machines?
In the past the Borland "no nonsense" license allowed one developer to do multiple installs.
I'm tempted to upgrade to Embarcadero RAD Studio XE, professional edition, but am worried about licensing ...
9
votes
8answers
2k views
The future of C++ Builder [closed]
A few years ago C++ Builder from Borland with its excellent VCL gui library and its gui designer was the best IDE for C++ development on Windows.
Once beloved, for a couple of years now Builder has ...
6
votes
3answers
176 views
How to display values from a VARIANT with a SAFEARRAY of BSTRs
I am working on a COM Object library with function that returns a VARIANT with a SAFEARRAY of BSTRs. How can I display the values from this VARIANT instance and save it inside a TStringList? I tried ...
4
votes
2answers
606 views
Load image from embedded resource
I am trying to assign an image(Image1) a picture at Run-time.
Since I can't set a property to load from resource. So I need to load at run time.
I have the code
procedure TForm1.FormCreate(Sender: ...
4
votes
2answers
831 views
Embarcadero D2010 hide welcome page
Does anybody know how can i disable welcome page without using the < -np > command line option, its very the annoying and blocks the IDE for a few seconds on each start, does anybody know where can ...
4
votes
4answers
519 views
How do I solve “Two different CRTLDLLs are loaded” when using packages in C++ Builder 2010?
We are trying to split up our monolithic EXE into a combination of an EXE and several packages. So far, we have one package that we're trying to use, and when running the EXE Codeguard shows the ...
3
votes
4answers
168 views
Blocking parent form-window in Delphi
I'm trying to create a simple application that show two form-windows. The first one, the main form should be able to display a popup form-window when a bottom is clicked. The second form showed must ...
3
votes
2answers
101 views
InputBox Cancel using C++
I am using the InputBox component in Embarcadero or Borland C++ with a default string. The Cancel key returns the same default string as the Enter button.
According to the documentation, the Cancel ...
3
votes
3answers
683 views
Delphi XE Form and Source in dual monitor
Somoene knows if i can setup my IDE for display source code in one monitor and frm in another? I talk about the same .pas because 2 different .pas i can view in each monitor.
3
votes
1answer
386 views
How to compile a Delphi projectgroup using MSBuild called from an Embarcadero Makefile
I am trying to compile the two components from Virtual Treeview (VirtualTreesR.bpl and VirtualTreesD.bpl) which I combined in a Delphi project group called VirtualTrees.groupproj. They should be ...
3
votes
5answers
209 views
Can objects be unwinded before they are created on stack?
We have been debugging a strange case for some days now, and have somewhat isolated the bug, but it still doesn't make any sense. Perhaps anyone here can give me a clue about what is going on.
The ...
2
votes
2answers
74 views
How to filter the Filelistbox with multiple filetype masking?
Somehow I need to make a custom "file-open form".
I manage to retrieve the file list with filelistbox.
My question is when I enter this in filelistbox1.mask
Image ...
2
votes
1answer
63 views
Setting exception handling in C++ Builder
My question is concerned about group of settings that can be found within development environment. Official help is very brief about this page. Specifically you can display them by clicking
Tools -> ...
2
votes
3answers
242 views
Is Embarcadero C++ Builder a good choice as an IDE?
As we are (me and people I work with) more and more frustrated while working with C++ projects 250 000+ LOC in VS2010 sp1 (the slowness of this IDE is just unbelievable), in my company we were talking ...
2
votes
2answers
106 views
What are Modules when creating COM objects with Embarcadero c++ Buider
I am creating a COM library with Embarcadero C++ Builder. The designer for the ridl file gives several things you can add to the ridl. I think I understand all of them except for creating new ...
2
votes
2answers
280 views
The free Delphi 2006 compiler
On Wikipedia I read:
Borland Delphi 2006 [...] Each version is available in two editions:
Explorer—a free downloadable
version—and Professional
Is this edition still available? Or are people ...
2
votes
3answers
196 views
Is it possible to find out what is leaking GDI Objects
I have an application in Embarcadera RAD Studio 2010 (C++). Is it possible to peek into it to see what would be leaking GDI Objects? A tree structured menu is leaking GDI Objects when text is set to ...
2
votes
1answer
340 views
Errors compiling hello world in C++ Rad studio 2010
I just wrote a small hello world in RAD Studio 2010, the code is this
//---------------------------------------------------------------------------
#include <iostream>
...
2
votes
2answers
526 views
Delphi 2009 using MSBuild in RAD Studio Command Prompt F1026 File not found
I have been stuggling to get the MSBuild to successfully build my .dproj file for the last few days on a build machine.
First, I needed the EnvOptions.proj file from the developer's machine, which ...
1
vote
2answers
143 views
KSOAP 2 with complex objects
I have a problem with KSOAP2 for android with dependencies on an Android device.
I followed the instruction from seesharpgears ...
1
vote
0answers
25 views
Embarcadero TCategoryButtons: prevent DoReorderButtons
Im developing a software in Embarcadero C++ Builder 2006 which uses the component "TCategoryButtons". This component gives me the possibility to reorder the buttons (TButtonItem). Whenever I do this, ...
1
vote
2answers
117 views
Create TNotifyEvent in C++ for use at Application level
I need to hook on to the Application property "OnDeactivate" in C++ Builder. So I need to write my own function to run when the OnDeactivate event fires for the application, but I don't know where or ...
1
vote
5answers
224 views
embarcadero delphi and widechar : simple function that doesn't work
I really don't understand why this function doesn't work:
function GetNomRepertoireTemporaire:WideString;
var
PathLocal : array[0..MAX_PATH+1] of WideChar;
begin
Result := '';
if ...
1
vote
1answer
321 views
Unresolved external SHCreateItemFromParsingName referenced VCL.LIB / Dialogs
I have a C++ Builder application I'm porting from C++ Builder 6 to XE on Windows XP.
A number of 3rd party controls are in use as well.
I'm compiling with Dynamic RTL = False
If I compile without ...
1
vote
3answers
207 views
Should app using VCL migrate?
Is VCL dead, or does it have a future as a GUI library? As CLX ended, is there any chance for cross-platform support in future releases?
I've had to do some work with legacy app that uses Borland's ...
1
vote
6answers
6k views
64-bit Support in C++ Builder
I'm looking at upgrading the Borland/Codegear/Embarcadero C++ builder suite we use for some of our code. I would like to see 64-bit support but that doesn't seem to be a feature in the 2009 edition. ...
0
votes
0answers
22 views
C++ Embarcadero TTcpServer and TTcpClient
I want to know how to work with connected clients on TTcpServer class?
I got a client connected on method "ServerAccept" whats next? How can i work with them?
I need to start from ServerAccept a new ...
0
votes
0answers
13 views
Will Embarcadero RadPHP XE2 scale to an e-commerce site?
In a nutshell: is RadPHP a toy? or can you build real web sites, such as a e-commerce/shopping carts app that will:
Support 100s of simultaneous users on a reasonably good web server, like any other ...
0
votes
3answers
58 views
How can I compile C source code using Emabarcadero C++?
I am wondering if it is possible for me to use Embarcadero c++ 2010 in order to compile a source code which i got from internet. I have this software installed in my PC, and i don't know to download a ...
0
votes
0answers
25 views
Resize an Jpg by using CreateThumbnail fails in osx :-(
Hope you can help me
I am trying to resize a jpg image (Firemonkey app).
I am using
ImageControl2.Bitmap:= ImageControl1.Bitmap.CreateThumbnail(100,100);
ImageControl1 is holding the original ...
0
votes
3answers
112 views
Create an animated credits text for my about box
in my application i've created an about box and i am wondering if i can show an animated text as credit ! Text animating from bottom to top of the dialog. Which components can i use for that or should ...
0
votes
2answers
71 views
How to play a music from a .MID file in Delphi?
Goal : I want to auto play a .mid file whenever the about us box appear and stop when user close that box.
Hello, i am coding an application in Embarcadero Delphi 2010 and i am wondering how can i ...
0
votes
0answers
102 views
Delphi XE2 - starting PAServer on Mac throws error
I just installed the PAServer from XE2 Update3 onto my Mac following Embarcaderos instructions. Then when starting ./paserver all I get is the following output:
dyld: Library not loaded: ...
0
votes
1answer
44 views
Changing cell data
For a project I need to work in RadPHP XE2
In this project I created a DBGRid.
This is all working fine.
Now I need to change the cell color for each cell.
The color for the cell is depending on ...
0
votes
2answers
120 views
RapidSQL (Embacadero) error db2abind.dll is missing
I just installed rapidSQL 8.0.1 and tried connecting to a valid database. I'm fairly certain I have the right connection data (it was imported from another developer), but I'm getting the following ...
0
votes
1answer
71 views
How to debug dll in C++ Builder XE?
My core project which is a standard windows application is being developed under C++ Builder XE. This project is using dll file written in older version of development environment, namely C++ Builder ...
0
votes
1answer
76 views
Printing Raw Data in Terminal Server
Here is the Scenario:
Windows Server 2008 with Terminal Server (No Domain Controller, No join to Domain)
Client with Windows XP SP3 updated (.NET 3.0 SP1 and .NET 4.0)
I'm Using Embarcadero ...
0
votes
1answer
20 views
Embarcadero xe: what is the maximum function size (lines)? [closed]
Embarcadero xe: what is the maximum function size (lines) ?
0
votes
1answer
36 views
Build a DLL with all packages included
In BDS 4.0 I've build a VC-Style DLL, I want that this DLL includes all packages in order to be independant as well, I can use it and deploy it even on PC that haven't the Borland RTL installed.
...
0
votes
3answers
334 views
OpenCV 2.3 in Embarcadero C++ Builder
When compiling a OpenCV 2.3 project in Builder I get multiple errors starting with "_fm_atan2l is not a member of 'std'" and continuing with other math related errors in that form. I also get ...
0
votes
1answer
31 views
How to hide border around TRadioGroup
I have two radiobuttons in a TRadioGroup. All the logic behind how they are supposed to work is fine. But the TRadioGroup controler has a frame around it that I thought I would be able to delete using ...
0
votes
1answer
275 views
Why are TClientSocket and TServerSocket deprecated and what should I use instead?
I'm just starting to get familiar with Embarcadero RAD Studio 2010 after living a life of Eclipse, Emacs, Visual Studio and notepad :)
I'm jumping into quite a large C++ application (500.000 - ...
0
votes
4answers
128 views
When is the inherited Constructor code called
If the constructor of my class inherits a parametrized constructor of another class, will that inherited constructor code be executed before or after the code that I place in my constructor?
For ...
0
votes
3answers
267 views
Using a Very C# DLL in C++
I am trying to use a C# DLL which has multiple references to .NET classes and C# Classes in Embarcadero C++ Builder.
Things like the Point class and String class as well as Delegates.
I am wondering ...
0
votes
0answers
611 views
Download ISO of RAD Studio XE [closed]
I want to find (again) the link to download the ISO on the site Embarcadero of RAD Studio XE.
Do you have it ? It has about 1,2x GB.
I found it one time on a website, but i forgot it !
Thank you !
0
votes
0answers
141 views
How can I open debug inspector in Delphi 7? [closed]
I use Delphi 7 lite 7.3.4.1, I saw someone using the "debug inspector" on it, but I don't know how to open it. How can I?
0
votes
2answers
180 views
Problem with syntax for std::binary_function usage
I'm a newbie at using the STL Algorithms and am currently stuck on a syntax error. My overall goal of this is to filter the source list like you would using Linq in c#. There may be other ways to do ...
0
votes
4answers
175 views
TurboPower Abbrevia in C++Builder2009
I want install TurboPower Abbrevia 3.05 from http://sourceforge.net/projects/tpabbrevia/ but its not working. :(
docu says:
_4. Open & compile the runtime package specific to the IDE being
used ...
0
votes
2answers
467 views
Problem using Embarcadero ER/Studio with Postgres (With Serial PK)
I created a table using ER/STudio 8.0.3 ... The table has a serial pk (SERIAL/INTEGER in ER/Studio)...
But the ER/Studio Physical Model generated convert the Serial to Integer...
And The generated ...