The c++builder-5 tag has no wiki summary.
6
votes
3answers
164 views
Is it possible to debug a C++builder dll from Delphi if I have the dll sourcecode?
I have an application written in Delphi 7 which uses a c++ dll written in BCB 5.
I want to debug this dll from the Delphi IDE is this possible?
If it's possible which are the steps to debug?
As ...
2
votes
7answers
348 views
Function Should Return Value Question
Given a function like so
bool RequestStatus()
{
...
if (code == myCode) {
return true;
} else {
return false;
}
}
Why would the compiler complain that "Function ...
1
vote
3answers
280 views
Handling TCP Streams
Our server is seemingly packet based. It is an adaptation from an old serial based system. It has been added, modified, re-built, etc over the years. Since TCP is a stream protocol and not a packet ...
1
vote
9answers
1k views
Iterate Over Struct; Easily Display Struct Fields And Values In a RichEdit Box
Is there an easier way to display the struct fields and their corresponding values in RichEdit control?
This is what I am doing now:
AnsiString s;
s = IntToStr(wfc.fontColor);
...
0
votes
1answer
49 views
How to use BCB 5 with mapx 5.0 to add a Feature in a Layer
How to use BCB 5 with mapx 5.0 to add a Feature in a Layer
String strFeature;<br>
CMapXPointDisp point;<br>
CMapXFeature * fNewSymbol = NULL;<br>
double X,Y;<br>
...
0
votes
1answer
67 views
Borland C++ Builder: Some UI-Events not available anymore?
I'm currently porting old code from Borland C++ Builder 5 to C++ Builder XE (the newest version). There seem to be a lot of properties and some events that are not anymore supported in XE. Most of ...
0
votes
1answer
346 views
Building an STL application in Borland C++ Builder 5.0
I am new to Borland C++ builder 5.0.I have used small STL application which is compiled successfully in one machine(Window 2003 Server SP2), but not in another machine (Windows XP machine SP3). I have ...
0
votes
1answer
267 views
What is the difference between building C++ Builder project from IDE and command line?
I have different behaviour of compiler, when building project from IDE and from command-line, which I can not explain.
The detailed issue's description is rather big, but it's really simple.
I have ...
0
votes
1answer
624 views
C++ Builder - Spawn TThreads On the Fly
I'm looking for the ability to spawn a thread or function so that it returns immediately to the calling line and continue on with the program but continues with the thread work.
For instance, if you ...
0
votes
2answers
208 views
How to avoid use of timer when using TThread to communicate with UI thread
I have a TThread which receives and sends to a device on a COM port. After I read the data, I want to activate the GUI (not in the same thread) using Synchronize(function name). However, when I call ...
0
votes
1answer
162 views
C++ Builder Does Not Always Allow Breakpoints After Make
In C++ Builder 5, when I set a breakpoint after 'making' my project, the breakpoint does not take. Usually there are dots next to the lines where you can set a breakpoint. I have to re-build the ...