Tagged Questions

0
votes
0answers
27 views

Stubborn Borland VCL designer inserts incorrect #include statement

I'm working with Borland C++ 2007. My project group consists of a package and several projects that use a component within that package. When I use this component using the design editor, the IDE ...
0
votes
0answers
76 views

tlibimp.exe output differs on different OSes (Borland)

I'm trying to import a third-party .NET type library (COM server DLL) using tlibimp.exe (version 11.0). This basically works fine, but the results differ when I run it on different computers, one ...
0
votes
2answers
141 views

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

A single class derived from TForm appears to hold onto GDI handles until the application is closed. class TTestForm : public TForm { public: TTestForm(TComponent*); }; ...