Tagged Questions

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 ...
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
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
3answers
241 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
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
339 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> ...
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
116 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 ...
0
votes
0answers
20 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
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
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
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
2answers
179 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 ...