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
1
vote
1 answer

C++ Builder F1007 Irreducible Expression Tree

I'm using C++ builder XE under Windows 7 pro. I'm currently stepping through a function and want to inspect the value of some of my variables. There's a character array I've got, local to a function. char result[80]; When I try to inspect this…
Nigel Stevens
  • 131
  • 1
  • 1
  • 7
1
vote
1 answer

Fixed Step in Chart in C++ Builder

There is a TChart component in C++ Builde with one serie. I add the data using AddXY method but I want the Y-Axis to have fixed minimum and maximum values and fixed step. I've managed to understand how the first two things are done. So my question…
1
vote
1 answer

dcef3 child process doesn't quit

I'm trying dcef3 to make a simple browser which opens a fixed url. I've set CefSingleProcess as false. As soon as I run the application, two processes of the same name are created (watching in the process explorer). Quit the application, and only…
Avnir Soni
  • 41
  • 5
1
vote
0 answers

C++Builder program does not run (but if I delete file.close() line it does!)

I'm developing my first game application since this winter, and now I meet one very strange problem. Using Embarcadero C++ Builder XE my app always normally compiled and ran, but today it fails to start, but still compiled successfully! I just press…
AlexeyGorovoy
  • 591
  • 3
  • 22
1
vote
2 answers

Function not found from global namespace if there's an overload with different argument types

If we have a function in the global namespace and an overload with different argument types in another namespace, it seems that C++Builder compiler doesn't find the function from the global namespace. namespace A { class a { friend void…
Samuli Hynönen
  • 652
  • 1
  • 8
  • 22
1
vote
0 answers

TFS and Builder 2009/XE4

I'm building a matrix to compare different source control repositories and which IDEs they integrate with. In essence, I need to make sure the source control integrates with all of the IDEs we use. I'm trying to find out if Team Foundation Server…
James Oravec
  • 16,761
  • 25
  • 77
  • 145
1
vote
0 answers

TFontDialog is not displaying all fonts that are installed on the machine

I have a problem where the TFontDialog class is not getting all of the fonts installed on my Windows 7 machine. For some reason XP machines does not have this problem. It's multiple fonts that are not being displayed but the main font I'm…
themaniac27
  • 1,047
  • 3
  • 13
  • 26
1
vote
3 answers

Firemonkey: TGrid usage on Embarcadero C++ Builder XE3

I'm try to build a tool that reads data from a database and displays it as a table using a TGrid in Firemonkey. I need to use different types of columns like TCheckColumn and TPopupColumn but can't find any good guide or example on how to use them…
1
vote
1 answer

How to replace Day of TDateTime type on runtime

I have TDateTime variable named dtBegin. dtBegin is containing value "7/3/2000". I need to replace the Day only with "2" to change the value into "2/3/2000". How to do this? I've been suggested to use RecodeDay() method in C++ Builder XE but the…
Andromeda
  • 431
  • 1
  • 8
  • 23
1
vote
1 answer

Is there a way to create a shared directory/folder using WINAPI or Embarcadero C++ Builder XE?

Possible Duplicate: Windows Folder Share API I need my C++ application to occasionally create shared directories. I am using Embarcadero C++ Builder XE which has only the CreateDir() function which has no way to specify shared access. Is there…
mathematician1975
  • 20,311
  • 6
  • 52
  • 93
1
vote
2 answers

Indy documentation

I think to start using Indy to replace the old and deprecated TSocket delphi component. Indy seems to be a very rich collection of components but I have found no good documentation about it. The only docs I found are both old or empty template…
enzo1959
  • 369
  • 2
  • 4
  • 12
1
vote
1 answer

C++ Builder XE, Passing and handling user-defined messages

I am trying to learn how to pass and handle messages in a VCL forms app. I've been digging the internet for some time and found this Suppose I have a progress bar I want to update using messages (btw if there's any other better way, I am eager to…
Gear54rus
  • 207
  • 4
  • 11
1
vote
1 answer

How to determine if form is docked?

How to determine in C++ Builder XE, if window is currently docked? All windows in my application are derived from base class TForm. How to catch change from docked to undocked state and vice versa?
truthseeker
  • 1,122
  • 3
  • 21
  • 54
1
vote
2 answers

Ambiguity between 'function1' and 'function2' (C++)

Let the source code speak for itself: MLine::MLine(int x1, int y1, int x2, int y2) { } MLine::MLine(double x1, double y1, double x2, double y2) { } void __fastcall TVctDiag2::PrepareArrowTail(int x, int y) { double length_x1; double…
truthseeker
  • 1,122
  • 3
  • 21
  • 54
0
votes
1 answer

C++ Builder XE, dbExpress with MySQL 5.x

I'm trying to get the dbExpress TSQLConnection to work with a MySQL 5.x server. I have searched the net but not found any helpfull instruction for C++ Builder XE. I downloaded the dbxopenmysql50.dll driver from just software solutions and followed…
Max Kielland
  • 5,259
  • 7
  • 49
  • 86