Tagged Questions
The rad-studio-2009 tag has no wiki summary.
10
votes
4answers
149 views
RAD Studio 2009 Persistent Selection Issue: Bug or Feature?
Sometimes, when coding in RAD Studio 2009 (Delphi), suddently the behaviour of the code editor changes. After such an event, a selection is no longer cleared on character input. This often happens ...
4
votes
2answers
210 views
RAD Studio 2009 Ctrl+Z Buffer Corruption Bug
Now this has happened to me twice this week alone: when I press Ctrl+Z a number of times in RAD Studio 2009, the editor buffer gets corrupted. The current and nearby lines get filled with nonsense ...
2
votes
1answer
168 views
Locking down RAD Studio internal browser security
I use Firefox as my web browser, mostly for access to add-ins such as Flashblock and No-script. I noticed yesterday that the RAD Studio internal browser used for the Welcome Page etc has scripting and ...
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 ...
2
votes
5answers
663 views
Where to store Delphi code in windows 7?
I just noticed that some of my new Delphi controls get installed in the Public Documents folder in windows 7 (TMS Smooth controls and Virtual Treeview). Is there a reason for this, is this a ...
2
votes
2answers
526 views
Delphi 2009 using MSBuild in RAD Studio Command Prompt F1026 File not found
I have been stuggling to get the MSBuild to successfully build my .dproj file for the last few days on a build machine.
First, I needed the EnvOptions.proj file from the developer's machine, which ...
2
votes
2answers
3k views
Can I use Delphi or C++Builder for Windows Mobile 6.1 Development?
I'm curious about what it takes to program for mobile devices (Windows Mobile 6.1) and if I can use the IDE's we're already used to (RAD Studio 2009).
Is there a Mobile Development Community around ...
2
votes
1answer
1k views
MSB4057 Error when using MSBuild with RAD Studio 2009
Summary: I'm able to compile a RAD Studio 2009 project using MSBuild on a Build Server using the RAD Studio Command Prompt, but not with a batch file. This same batch file, however, works ...
1
vote
1answer
138 views
Tips to speed up debugging in Codegear
Are there any tips to speed up debugging in Codegear?
For example, when I set breakpoints it can sometimes take a long time for the IDE to be active once the breakpoint is reached and likewise when I ...
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
234 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
2answers
388 views
How to create a simple pascal-program in Codegear RAD Studio 2009?
For example, this simple program:
Program Helloworld;
Begin
writeln ('Hello world!');
readln;
End;
1
vote
3answers
209 views
Delphi 6 alongside RAD Studio 2009
I need to migrate to RAD Studio and have this installed on a new workstation. At the moment I still need to develop with Delphi 6 until we get all the necessary control updates and sort out the ...
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 ...
1
vote
2answers
476 views
What should I do in order to succesfully link a C++ Builder 6 project in C++ Builder 2009 without unresolved external references to CodeGuard things?
Here's what I did:
I've opened a C++ Builder 6 - project in C++ Builder 2009.
Auto-converted it to a C++ Builder 2009 project.
Told it (C++ Builder 2009) to build everything.
Here's what it did:
...
0
votes
1answer
206 views
Delphi 2009 - res file is not recreated
I'Ve just created a small application with a toolbar, some toolbar buttons and an TPngImageList.
I have saved the project and compiled it.
Now I've deleted the .res file in the project folder.
When I ...
0
votes
2answers
221 views
Delphi 2009 RAD Studio - Desktop Selector not Working
In the Delphi 2009 RAD Studio, there is a drop-down combo box where you can select the desktop configuration, i.e. "Default Layout", "Debug Layout, "Classic Undocked", etc. This has stopped working ...
0
votes
4answers
528 views
Project links in RAD Studio Welcome page do not work
As you know, welcome page in RAD Studio shows a list of recent projects, and you can open each project by clicking on its name.
My problem is that if the project is located somewhere My Documents ...
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.
0
votes
3answers
637 views
F1001 Internal code generator error in RAD STUDIO 2009
I'm getting this worthless error in my code. it's very consistant and restarting the compiler hasn't done anything. Has anyone else ever solved this?
while( int CharPos = _Message.Pos(_What) )
{
...