rad-studio-2007

Reading proxy details in a vcl.net application using Rad Studio 2007

How to read the proxy details (address and port) from a vcl.net application (Rad Studio 2007) ?. Heard about InternetGetProxyInfo. But didnt find the details any where. Thank you. ...

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 definition. However, as most of you would notice this does not work all the time. Does anyone have any trick on doing this? ...

Evaluate Expression in RAD Studio 2007's Watch

I know that most of you might have noticed now. When you try to evaluate an expression using watch on RAD Studio 2007, it does not evaluate. For example, if I had a vector, I could not do "vecData.size()", if I do "vecData.size", it just gives an address. Is there any other way to watch the size and view each element of the vector in R...

Virtual Treeview in RADStudio 2007

Hi all, I succesfully built Virtual TreeView under RADStudio 2007 to use it in Delphi project, but I cannot get it to work in C++ projects. Any help highly appreciated!!! ...

How to explicitly release GDI handles allocated by TForm derived class owned by the Application?

Hi. A single class derived from TForm appears to hold onto GDI handles until the application is closed. class TTestForm : public TForm { public: TTestForm(TComponent*); }; std::auto_ptr<TTestForm> test(new TTestForm(NULL)); test->ShowModal(); I'm quite new to VCL, so please bear with me. This test was done with a form that con...