0
votes
2answers
49 views
VCL multiple inheritance
Hi,
I'm trying to develop a set of controls which all have a number of common behaviours with respect to sizing. I think that this is an instance where multiple inheritance is required (although am …
1
vote
2answers
44 views
To restrict size of components at design time: CodeGear C++ Builder
Hi,
I am trying to inherit from TButton in order to provide some size aware capabilities, where the buttons are able to resize themselves and/or their font size (within certain constraints) to allow …
0
votes
1answer
62 views
Associate file extension with vcl forms application
I would like to know the cleanest way of registering a file extension with my VCL Forms application so that when a data file associated with my program is double clicked, the VCL forms application is …
0
votes
1answer
38 views
Indenting in Codegear
Is there a way to indent/tab multiple lines in one action in the Codgear RAD Studio IDE?
I.e. I would like to be able to highlight multiple lines and indent them all by one tab simultaneously.
0
votes
1answer
68 views
Problem with IDropTarget when using with a VCL Form
I have a VCL gui developed in Codegear. I have created a DropTarget for the mainform and the DropTarget object implements the IDropTarget interface which allows me to drag and drop files from …
2
votes
4answers
148 views
How do I use the registry in codegear c++ builder?
In the simplest possible terms (I'm an occasional programmer who lacks up-to-date detailed programming knowledge) can someone explain the simplest way to make use of the registry in codegear C++ …
0
votes
0answers
13 views
Other way to create transaction than TBXTransaction::BeginTransaction()
I am having a problem with my code.
I get an intermittent error that the capacity/limit for the transaction is already reached.
However, I already checked the BeginTransaction and CommitFreeAndNil …
0
votes
2answers
111 views
Codegear RAD Studio C++ Go to Definition - Control Click
I am using CodeGear RAD Studio C++, I know that to go to a definition of a variable or class you must press control and click on the method name, or any identifier where you want to go to a …
1
vote
2answers
218 views
Why is CodeGear C++Builder failing to create pre-compiled headers?
Problem
In CodeGear C++Builder 2009 we are using the pre-compiled header injection to greatly reduce our compile times. We have the same header file being injected into multiple projects. When …
6
votes
4answers
256 views
#region equivalent in CodeGear RAD Studio? Similar way to group code?
I was wondering if there is an equivalent to Visual Studio's #regions in RAD Studio.
We use CodeGear's delphi and c++builder IDEs where I work and I would love to be able to use something like …
1
vote
2answers
204 views
What happened to CodeGear’s TBitBtn and TButton inheritence chain?
I've recently began to upgrade my RAD Studio 2007 project to RAD Studio 2009. One thing I noticed is when seemingly simple code all of a sudden failed to compile.
Example Code:
class …
3
votes
2answers
273 views
Default File Layout in Codegear C++ Builder (and Delphi)
I've had a major annoyance with the Borland/Codegear C++ Builder IDE for some time now. When I code I always use a standard layout for the code files. I have a standard header that I use, including, …
1
vote
1answer
190 views
log4cpp in borland codegear 2007
I'm trying to make work the library and run the tests provided with the latest version of log4cpp on Borland Codegear 2007, in which it's included a bpr project for Borland C++ Builder 5, which it's …
0
votes
1answer
283 views
how to open bpr projects in Borland Codegear C++ Buider 2009 ?
I'm trying to import the log4cpp project into Borland Codegear C++ Builder 2009 . The rar file of the project contains a bpr file which corresponds to a project. When trying to open it, an error popup …
0
votes
2answers
577 views
How to write files with (readable) UTF8 characters in C?
I read a file that has utf8 characters like this:
FILE *FileIN,*FileOUT;
FileIN=fopen("filename","r");
char string[600];
WideChar C[600],S[100];
fgets(string,600,FileIN);
…
