Tagged Questions

Borland Software Corporation is a software company first headquartered in Scotts Valley, California, Cupertino, California and finally Austin, Texas. It is now a Micro Focus subsidiary.

learn more… | top users | synonyms

10
votes
6answers
309 views

Tool for debugging Borland & Visual Studio applications

sometimes I have to debug an application that was written with Borland C++ Builder. This application loads dlls compiled with Visual C++. Is there a debugger that can debug both parts of the ...
9
votes
8answers
2k views

The future of C++ Builder [closed]

A few years ago C++ Builder from Borland with its excellent VCL gui library and its gui designer was the best IDE for C++ development on Windows. Once beloved, for a couple of years now Builder has ...
8
votes
3answers
575 views

Is there any way to obtain antique versions of Borland's Turbo C++ compiler for free?

I am looking for an old version of the Borland Turbo C++ compiler. However I have to get it in legal way. Has anyone heard something about discounts for such old compilers? [EDIT] I would like to ...
7
votes
7answers
1k views

Why is the destructor ignored in this C++ code? (Turbo C++ Explorer, Borland C++ Builder 2006)

The following code demonstrates a weird problem I have in a Turbo C++ Explorer project. One of the three stack objects in D::D() is not destroyed after going out of scope. This only happens if ...
7
votes
11answers
3k views

Borland x86 inlined assembler; get a label's address?

I am using Borland Turbo C++ with some inlined assembler code, so presumably Turbo Assembler (TASM) style assembly code. I wish to do the following: void foo::bar( void ) { __asm { mov ...
6
votes
2answers
104 views

Can you explain this mysterious code?

Found this while debugging C++ code in Embarcadero RAD Studio. It appears to compile, but frankly, while it seems obvious what it's meant to do, I can't figure out what it's actually doing. TObject ...
5
votes
2answers
201 views

Algorithm smbPitchShift (Pascal)

thank so much, Rudy Velthuis. it is running pretty cool... be stored here at stackoverflow //*************************************************************************// // ...
5
votes
2answers
476 views

How to use FastMM4 in a Delphi 6 package?

I have been using FastMM4 version 4.92 in my Delphi 6 Pro application smoothly. I now want to use it in a package I created (BPL). I tried putting the units in the Contains section and then moving ...
5
votes
2answers
923 views

any code conversion tool for converting borland c++ to visual studio C++

I have a old windows application written in borland C++ 5.0. this uses the OWL library very much in it's code. this has to be ported to Visual studio 2005/2008 (C++ or C#). search in google shows lot ...
4
votes
1answer
598 views

How To Scroll a TStringGrid dynamically?

I am working in the Borland C++Builder IDE, using VCL controls. I am trying to get a TStringGrid component to scroll down to a row and highlight that row, based on user input in a different form. I ...
4
votes
3answers
3k views

How to compile RES file from commandline (Delphi 7)

I never worked with Delphi before, so maybe the question looks a simple minded, But I need to change FileVersion in RES resource file parameter from command line... Many thanks.
4
votes
3answers
2k views

Open a Specified File in Excel from a GUI - Borland C++

I am using Borland Builder C++ 2009. I want to add a button to a form that allows the user to open a file in Excel that I specify. I can't think of how to do this. I know how to link with other code ...
4
votes
7answers
6k views

Why is Borland C++ better than Visual C++

Why is Borland C++ better than VC++?
3
votes
1answer
95 views

C++ Same program: two different results. Maybe due to operator >>?

I need your opinion of what is going wrong. From home I wrote a program using Bloodsheed and got the wanted result. The purpose of the programm is to display lines from a source file to output a ...
3
votes
1answer
114 views

Link graphic library in Borland C++ 3.1

I want to use graphic library in the DOS application. I add #include <graphics.h> to my source file and build the application with the bcc: bcc -3 -ms -P -IC:\BC3\INCLUDE -LC:\BC3\LIB AMtest.c ...
3
votes
2answers
101 views

InputBox Cancel using C++

I am using the InputBox component in Embarcadero or Borland C++ with a default string. The Cancel key returns the same default string as the Enter button. According to the documentation, the Cancel ...
3
votes
1answer
91 views

Borland C++: cannot dynamically link to components in a custom bpl (solved)

While drafting the following post I found a solution, but I thought it might be still worthwhile to post here for reference. See solution below. In RAD studio (C++), I have a project group with ...
3
votes
1answer
144 views

Is there a faster component than TMemo on CodeGear C++ Builder?

I'm using CodeGear C++ Builder 2009 and have problems with the TMemo component. It's to slow. I use it to display ASCI text from the COM serial port. I need to display every single symbol when it ...
3
votes
3answers
217 views

Delphi 7 Borland IDE Line Length

In Delphi 7 IDE, do the lines need to be a given length? I see a gray line in some Delphi code I'm working with, and it looks like ever line ends right before it.
3
votes
4answers
152 views

Destructors and inheritance in C++?

I use Borland C++ Builder. And i had o problem #include <Classes.hpp> class TMyObject : public TObject { __fastcall TMyObject(); __fastcall ~TMyObject();//I would like to inherite my ...
3
votes
2answers
221 views

how to solve libCurl linker error in Borland c++ (version 5.02)?

I am new in c/c++.... Recently I am trying to compile a program using libCurl. But it shows me these errors: Error: Error: Unresolved external '_curl_easy_init' referenced from ...
3
votes
2answers
598 views

Using a Visual C++ DLL in old Borland C?

I've got to support an old app written in C using the old Borland Compiler (BC 5). Unfortunately the old TCP/IP library that we'd used is starting to show it's age and is having problems with Vista ...
3
votes
5answers
332 views

C++: overloading list.end() and list.begin() methods for constant iterators

I'm still trying to implement my own version of LinkedList class and now I have problems with overloading methods for constant iterators. For example, when I try to print out list using this code: ...
3
votes
2answers
556 views

Default File Layout in Codegear C++ Builder (and Delphi)

I've had a major annoyance with the Borland/Codegear C++ Builder IDE for some time now. When I code I always use a standard layout for the code files. I have a standard header that I use, including, ...
3
votes
2answers
587 views

What is the comparative robustness of C++ Builder versions?

Our development team work with Borland C++ Builder 6 and CodeGear C++ Builder 2007 (as well as Visual Studio). I hear a lot of comments that the Builder 2007 IDE crashes a lot more than BCB6 does. ...
2
votes
2answers
72 views

How to filter the Filelistbox with multiple filetype masking?

Somehow I need to make a custom "file-open form". I manage to retrieve the file list with filelistbox. My question is when I enter this in filelistbox1.mask Image ...
2
votes
2answers
119 views

Trim Char fields

We are currently using Delphi with Borland database. We are planning to move from borland to Firebird libraries, (borland lib has mem leaks). The problem that we are having now is, Firebird library ...
2
votes
2answers
135 views

Memory Access violation C++ Borland

class Register { private: DWORD ax,dx,cx,bx; // POH DWORD bp,sp; DWORD flag, ip; public: //==================================================== Register() ...
2
votes
4answers
211 views

Visual c++ to turbo c++

Hi I have written a program in visual c++ and for whatever reason now i need to run/compile this same program in turbo c++ 3.0. I have managed to get the compiler from some source but I get a lot of ...
2
votes
2answers
129 views

C++ screen partition

I want to partition the output screen into two parts (just like frames do it in HTML). So that one part may remain fixed and display some content which is updated based on input received from the ...
2
votes
2answers
279 views

The free Delphi 2006 compiler

On Wikipedia I read: Borland Delphi 2006 [...] Each version is available in two editions: Explorer—a free downloadable version—and Professional Is this edition still available? Or are people ...
2
votes
1answer
333 views

Configure OpenCV 2.2 with Borland on C::B

Hii all,, I have some project that requires me to do Image processing, I used to work with MATLAB but it is just too slooowww, Searching for an alternative lands me up to OpenCV. I am used to C::B ...
2
votes
2answers
129 views

borland builder c++ oracle question

I have a Borland builder c++ 6 application calling Oracle 10g database. Operating over a LAN. When the application in question makes a simple db select e.g. select table_name from element_tablenames ...
2
votes
2answers
230 views

__cdecl forcing prefix with underscore

My company provides a third party with a DLL which provides them with API functions they can use to connect to our application. The DLL was written in VC9, and the API functions used VC's default ...
2
votes
1answer
57 views

Is there any IDE compatible with VCL and C++?

I'm (still) using Borland Turbo C++ 2006. Is there any (non-borland) IDE that can import and compile my (VCL-based) projects?
2
votes
1answer
339 views

Errors compiling hello world in C++ Rad studio 2010

I just wrote a small hello world in RAD Studio 2010, the code is this //--------------------------------------------------------------------------- #include <iostream> ...
2
votes
0answers
519 views

Using Frame Buffer Objects (FBO) in Borland C++ Builder 6

I have an "access violation" on the Frame Buffer Object (FBO)'s command glGenFramebuffersEXT : void TGLForm::DrawScene() { wglMakeCurrent(ghDC, ghRC); glEnable(GL_TEXTURE_2D); ...
2
votes
2answers
403 views

Problems using borland c++ compiler (version 5.5)

Declaration: namespace a { namespace b { class Classe { public: Classe(); }; } } Definition: #include "sample.h" namespace a { ...
2
votes
1answer
165 views

Finding past revisions of files in StarTeam w/ .NET SDK / C#

I'm trying to write a C# program to compare files from different revisions in a StarTeam repository (see if there have been any changes between the current version of a file and a given prior ...
2
votes
12answers
647 views

Find the biggest 3 numbers in a vector

I'm trying to make a function to get the 3 biggest numbers in a vector. For example: Numbers: 1 6 2 5 3 7 4 Result: 5 6 7 I figured I could sort them DESC, get the 3 numbers at the beggining, and ...
2
votes
5answers
1k views

How do I create “undo” in c++?

I've got a couple of codes to do some things but I need to create a function that undoes the previous task/addition/change.How do I do this in Borland C++? (the program stores strings of text in a ...
2
votes
1answer
201 views

How to enable BDS2006's C++ WARN & TRACE macros

I am trying to find out how to enable (& use) Borland's WARN & TRACE macros. My starting point was this link: ...
2
votes
2answers
536 views

CMake not using appropriate output command line argument for compiler

I'm working with CMake, and my program compiles fine with g++. However, I also wish to compiled it with bcc32 and cl. I am running into an issue -- I'm telling cmake to use those compilers by doing a ...
2
votes
3answers
697 views

How to debug Delphi project?

I'm a .NET developer, but I have got quest - must find errors in Delphi project. After opening a project (Borland Delphi 7) and trying to debug it ('Run' menu), I've noticed all debugging options ...
2
votes
4answers
888 views

TADoConnection and pooling

I am working on all application that uses multiple threads that access a sql server 2005 db, i am currently using implicit connections by setting up the connection string property of the TADOQuery ...
2
votes
2answers
1k views

Windows Subclassing in Borland C++ Builder

We're trying to convert a piece of C++ code written in MFC which uses the CWnd.SubclassWindow method, into Borland C++ Builder code. Does anyone know how to do subclassing (subclass with a TForm ...
2
votes
6answers
2k views

Borland C++ Builder 5 - Cancel Via Escape Key Not Working

I'm having a rather perplexing problem with the Escape key handler on a dialog box in Borland C++ Builder 5. Are there any other requirements for the Escape key to fire a cancel event (other than ...
2
votes
3answers
2k views

Best way to connect to Interbase 7.1 using .NET C#

Could someone please explain the best way to connect to an Interbase 7.1 database using .NET/C#? The application will be installed on many end user computers so the less "add-ons" that I will have to ...
2
votes
4answers
643 views

How to keep track of the references to an object?

In a world where manual memory allocation and pointers still rule (Borland Delphi) I need a general solution for what I think is a general problem: At a given moment an object can be referenced from ...
1
vote
1answer
143 views

Can I convert a C++ project to Delphi?

Is there any way to take an old Borland C++ (v6) project and convert it to Delphi (v7, or maybe XE if that helps, but preferably D7)? I seem to recall that BCB could compile Pascal, but not the other ...

1 2 3 4 5