Tagged Questions

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

learn more… | top users | synonyms

8
votes
0answers
126 views

How can I remove the margin between a page control and its tab sheets?

I noticed that the Left property for TTabSheet in the TPageControl is always 4. Because of this there is always at least a 4-pixel margin between the TPageControl border and controls within the ...
1
vote
6answers
1k views

Borland C++ Builder 6 compiler problem

Why BCB 6 always compile all files. I make come changes on one file but BCB 6 compile all files when i start app. Any idea? I use WinXP SP2.
0
votes
0answers
25 views

Disabling editing option on TDBGrid doesn't function

When creating TDBGrid components dynamically at runtime, i can't forbid user to edit values in cells. This is how I am trying to accomplish this type of behaviour: TDBGrid * DbGrid = new ...
0
votes
1answer
24 views

How to get row number in OnDrawColumnCell event?

This is how my drawing routine for TDBGrid component looks like. I am replacing values from database based on some rules: void __fastcall TForm_Loadpoint_Details::DBGrid1DrawColumnCell( TObject ...
0
votes
3answers
32 views

Why is empty string transformed to “(null)”?

I have following code sample: double t_values[FFT_SIZE]; AnsiString prefix; double multiplier; AutoScaleData(t_values, FFT_SIZE, prefix, multiplier); AnsiString str; str.printf("Voltage [%sV]", ...
0
votes
1answer
42 views

VaComm component doesnt fire OnRxChar event

VaComm component encapsulates communication with external devices through COM port. My program is communicating with measuring device using following code: void Form::OnButton_Click() { ...
0
votes
1answer
30 views

C++ Builder 6 - global paths for include directories

Is there a way to set global paths (i.e. independent from currently opened project) to include directories?
0
votes
1answer
64 views

Debugging in Borland C++ builder version 6.0

I just wanted to know how to see the debugger window using this software. So that I could see the flow of the code during run time. Thanks.
0
votes
2answers
45 views

Saving “.txt” to specific directory using Windows XP and 7

I'm trying to save a text file to specific directory using ofstream (C++ Builder). I'm having problems with Windows 7. std::ofstream file1("Name.txt"); Works fine at Windows XP and Windows 7 ...
0
votes
1answer
64 views

Fixing big system font on some machines that is warping font in C++ program?

I have written a program (using Borland C++ builder) that works fine with normal default windows settings. But certain users have changed their systems to have a bigger font than normal (as in, they ...
0
votes
0answers
174 views

Visio ActiveX (TDrawingControl). Using SetFormulas() method to set color value

I use Borland C++ Builder 6.0 and Visio TDrawingControl ActiveX to create a vsd-file. My problem is I can't change color of a shape using RGB-model approach and SetFormulas(..) method. When I use ...
0
votes
0answers
199 views

MDI app not receiving WM_ACTIVATE and DWM messages from Windows 7 Taskbar

I have an MDI app written in Borland C++Builder 6 (upgrading to a newer version is not an option) and am using the ITaskbarList3 interface to integrate the MDI child windows into the Windows 7 ...
0
votes
4answers
926 views

Get program files directory from Windows in Borland C++ 6

I had to create an executable (using Borland C++ Builder 6) in place of a batch file for Windows 7, since permissions didn't allow ordinary users (non-admins) to run the necessary batch. We've got a ...
0
votes
1answer
317 views

Porting DLL code from Borland C++ Builder 6 to Microsoft Visual C

I need help with some old C++ code from/for DLL wich was written in borland c++ builder 6, I must recompile it in VS2008 or VS2010. Since all our test have shown that MSVC optimizes code more than 4 ...
0
votes
1answer
154 views

ClientDataSet CalcFields' odd trouble

I've got an odd and persistent problem... (Also my right shift key just stopped working, so please bear with my possibly odd caps & symbols; trying to get my fingers trained to use the left shift ...
0
votes
2answers
330 views

C++ Builder - Problem with TShape component

I have this piece of code: TShape* T[256]; /* Other code ... */ for (int i = 255; i > 0; i--) { T[i]->Brush->Color = T[i - 1]->Brush->Color; T[i]->Pen->Color = T[i - ...
0
votes
1answer
349 views

Borland C++ builder 6 linker error

I am recompling a project using Borland C++ Builder 6. The recompile process failed due to linker error. The message was: "[Linker Fatal error] Fatal unable to open file ABCC.lib" I removed all ...
0
votes
1answer
1k views

Store a screen capture (Bitblt) in a memory buffer to send over IdTCPClient

In c++ builder 6 on windows vista ... Graphics:: TBitmap * bmpscreencapture = new Graphics::TBitmap; bmpscreencapture-> Height = Screen-> Height; bmpscreencapture-> Width = Screen-> ...