Tagged Questions

2
votes
2answers
94 views

Ambiguity between IID_IDropTarget and Virtualtrees::IID_IDropTarget

I'm currently going through a process of refactoring includes to reduce compile time, and I've come across the following compile error: [C++ Error] some_class.cpp(53): E2015 Ambiguity between ...
1
vote
4answers
361 views

Printf used in unfamiliar fashion

I found this line of code when upgrading a C++ Builder project to RAD Studio 2009: mProcessLength->Text.printf("%d",mStreamLength); It doesn't compile in 2009, however what is the intent of this ...
1
vote
3answers
642 views

Are redundant include guards necessary?

Are 'redundant include guards' necessary in Codegear RAD Studio 2009? Is the compiler smart enough to deal with this on it's own? For example, I might have the following 'include guard' in foo.h: ...
1
vote
2answers
233 views

#pragma once equivalent for Codegear RAD Studio

Is there anything equivalent to #pragma once for Codegear RAD Studio 2009? I am using the precompiled header wizard and I would like to know if it is still necessary to use include guards when ...
1
vote
3answers
230 views

C++ Compiler Optimization for Fastest Possible Code in RAD Studio 2009

I would like to select the compiler optimizations to generate the fastest possible application. Which of the following settings should I set to true? Dead store elimination Eliminate duplicate ...
1
vote
4answers
1k views

How do I convert System::WideString to a char* in C++ and vice versa?

I have a situation where I need to compare a char* with a WideString. How do I convert the WideString to a char* in C++?
1
vote
1answer
568 views

Implement IDropTarget

I would like to drag and drop files from windows explorer onto my application which is being built in Codegear RAD studio 2009. Then I would like to be able to access data from the object I am ...
1
vote
2answers
672 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 ...
0
votes
3answers
461 views

How come I am getting weird results with istream::get(char*, streamsize n, char delim)?

I am reading in a file with a format similar to: TIME, x, y, z 00:00:00.000 , 1, 2 , 3 00:00:00.001 , 2 , 3 , 4 etc, and code similar to the following: std::ifstream& istream; char buffer[15]; ...
0
votes
1answer
154 views

Indenting in Codegear

Is there a way to indent/tab multiple lines in one action in the Codegear RAD Studio IDE? I.e. I would like to be able to highlight multiple lines and indent them all by one tab simultaneously.