Questions tagged [c++builder-xe]

The August 2010 release of C++Builder, a rapid visual C++ development environment. Use this tag for issues related to development in C++Builder XE.

It was released on 30 August 2010. It was preceded by C++Builder 2010 and succeded by C++Builder XE2.

See for more information.

83 questions
9
votes
3 answers

Keep the scrollbars hidden in a Delphi dbgrid (even on resize)

For our dbgrid we want the scrollbars to be constantly hidden. Since TDBGrid doesn't have a 'scrollbars' property, we use: ShowScrollBar(DBGrid1.Handle, SB_VERT, False); ShowScrollBar(DBGrid1.Handle, SB_HORZ, False); However when we resize the…
user729103
  • 621
  • 2
  • 10
  • 24
8
votes
1 answer

IDE generated USEFORM macro calls changing their order

We have a C++Builder XE project (VCL Forms Application) that has a few dozen forms and units in it. Whenever a file belonging to the project is added, deleted, or renamed, the IDE should do two things: A call to USEFORM macro is added to or altered…
Samuli Hynönen
  • 652
  • 1
  • 8
  • 22
7
votes
2 answers

How to use Delphi "in" operator in C++ Builder

I'm a newbie programmer. I need to use Delphi's in operator in C++ Builder XE like this: if (dgColLines in DBGrid->Options) // include vertical lines in total (one per column) TotalColumnWidth = TotalColumnWidth + ColumnCount; if…
Andromeda
  • 431
  • 1
  • 8
  • 23
5
votes
1 answer

Border around a form with rounded corner in c++ builder XE

I have made a C++ Builder XE form with rounded corner with the help of the following code BorderStyle = bsNone; void __fastcall TForm1::FormCreate(TObject *Sender) { HRGN frmrgn; frmrgn = CreateRoundRectRgn (0, 0, ClientWidth,…
rudasagani
  • 147
  • 2
  • 11
5
votes
1 answer

How can I load an updated component package without restarting the IDE?

When developing a new component in Delphi, I run into this inefficiency. Every time I make incremental changes to the source code (for example, a bug fix), I build the new component and install it on the Component Palette. This is OK. In another…
4
votes
1 answer

C++ Builder XE not linking all runtime DLLs

When I compile my project with the option to exclude runtime packages (to do a static library linking) everything goes fine. But when I run my application on a C++ Builder "virgin" (no packages installed) it won't start and shows the following…
Max Kielland
  • 5,259
  • 7
  • 49
  • 86
4
votes
2 answers

go to source with custom messages during compile?

In Visual Studio I can include the following macros in the source and during build the message is printed out. I can then double click on the message in the build message window and go to the line of source. #define _QUOTE(x) # x #define QUOTE(x)…
Gregor Brandt
  • 7,439
  • 34
  • 56
4
votes
4 answers

How to get rid of this annoying W8123 warning in my IDE

This is what happened. We downloaded Quickreports 505, installed it, but had to revert to QR504. Now we are getting [BCC32 Warning] W8123 Path 'C:\Program Files\Embarcadero\RAD Studio\8.0\Quickrep505C' not found - path ignored in option…
themaniac27
  • 1,047
  • 3
  • 13
  • 26
4
votes
1 answer

Writing C++ Builder/Delphi component and save a binary property to DFM files

I wrote a C++ builder component to display SVG files perform some stuff on them. For now, I published a property named SvgFile (UnicodeString) which can be initialized in the IDE with the file name of the SVG file. This works fine. This property is…
A.G.
  • 1,126
  • 9
  • 25
3
votes
2 answers

Are template arguments required everywhere when mentioning a template base class?

Here's a simple template; template class tt { private: T x; public: tt() {x=0;}; Add(T p) {x += p;}; }; ... and then a subclass of it; class cc : public tt { public: cc() : tt()…
3
votes
1 answer

why C# program is closed when I used my OCX method with string return type?

I made a c++ builder ActiveX Library. When I made my fist OCX that connect to socket and check connection and also read from socket and write on socket. All of the function is working but the function (Read from socket and send the string to…
H.Ghassami
  • 962
  • 1
  • 15
  • 38
3
votes
1 answer

"Unable to perform link" error when compiling in RAD Studio XE8

The compiler is giving me an error (shown in the pic) even if I run the IDE as an administrator. Can anyone help to solve the problem?
3
votes
3 answers

How do I display both header and source file in Borland Builder XE?

Does someone know how to display both the header and source file at once in the builder XE? I know I can toggle between them, but I'd rather have a tab for each file. Thanks
3
votes
1 answer

C++Builder XE3 needs to be restarted after each run in the debugger or app crashes on next run

This is kind of weird, and I only seem to be seeing this on Windows 7 (when I build the app in windows 8 this does not seem to be happening). I see this with C++Builder XE through XE3. I will compile an app (statically linking the packages and the…
hvanbrug
  • 1,261
  • 2
  • 12
  • 25
2
votes
1 answer

C++ Builder XE can't successfully convert project from BCB6

I am trying to convert old BCB6 project to C++ Builder XE project. Version of development environment is following: Embarcadero C++ Builder XE Version 15.0.3953.35171 First step was to create blank new project (File -> New -> VCL Forms Application -…
1
2 3 4 5 6