Tagged Questions

C++Builder 2007 is a specific version of C++Builder. Use this tag for issues related to development in C++Builder 2007.

learn more… | top users | synonyms

1
vote
1answer
96 views

Using SwapMouseButton( TRUE ); to allow right click dragging of a window

I am required to somehow allow a window to be moved using a right click drag option. I have done this via some sneeky code which I don't really like but it works. Currently I am trapping the ...
1
vote
1answer
85 views

Not showing Design tab in borland C++ builder

Not showing "Design" tab, while loading the .cpp file in Borland C++ Builder. I have three the extension files like .cpp, .dfm and .h. I'm using Borland C++ Builder 2007. please provide me a work ...
1
vote
1answer
621 views

Borland C++ Builder 2007 - [Linker Error] Unable to open file 'CHARTGROUPFRAME.DFM'

IDE had been working very well, until today. When I try to compile my priject I get this : [Linker Error] Unable to open file 'CHARTGROUPFRAME.DFM' CHARTGROUPFRAME.CPP Unit is a part of a ...
0
votes
1answer
28 views

Borland Builder 2007 Child VCL controls and the WindowProc method

I have managed to override a controls WindowProc function in order to determine more events than are supported by Builder (i.e. double middle mouse clicks etc..) The trouble is when I override say a ...
0
votes
1answer
134 views

Error Message: “Recource ExperimentFrame.res not found”

I'm trying to create a frame VCL inside my project using factory pattern something like this: TFrame* newToolbarFrame = FrameFactory::getInstance().createObject(toolbarFrameClassId); When the ...