Tagged Questions

Embarcadero C++Builder is a RAD C++ environment (compiler system & IDE) and component framework.

learn more… | top users | synonyms

35
votes
3answers
1k views

Recommendations for a docking library for Delphi / C++Builder?

My team is currently thinking of moving our existing MDI-based application to a more modern, docking-based approach. We're still thinking, but we'd like to move it to something like VS2010's docking ...
24
votes
6answers
3k views

How can I “unuse” a namespace?

One of the vagaries of my development system (Codegear C++Builder) is that some of the auto-generated headers insist on having... using namespace xyzzy ...statements in them, which impact on my ...
23
votes
14answers
1k views

Advice for converting a large monolithic singlethreaded application to a multithreaded architecture?

My company's main product is a large monolithic C++ application, used for scientific data processing and visualisation. Its codebase goes back maybe 12 or 13 years, and while we have put work into ...
15
votes
9answers
2k views

C++ Builder or Visual Studio

I own a software development company. We develop software for other companies who brand under their name/titles. And we also have a couple self branded titles in the Accounting/ERP market. Our ...
15
votes
12answers
9k views

C++ Builder or Visual Studio for native C++ development?

I've decided I want to get more into native code development with C++. I'm trying to decide if I would be better served using CodeGear C++ Builder 2009 or Visual Studio 2008. I currently use Delphi ...
13
votes
12answers
4k views

Delphi versus C++ Builder - Which is Better Choice for a Java Programmer Doing Win32

I'm a pretty experienced Java programmer that's been doing quite a bit of Win32 stuff in the last couple of years. Mainly I've been using VB6, but I really need to move to something better. I've ...
11
votes
2answers
649 views

Is the TTimer.OnTimer event handler reentrant?

I have a TTimer in my application that fires every 2 seconds and calls my event handler, HandleTimerEvent(). The HandleTimerEvent() function modifies shared resources and can take 10's of seconds to ...
11
votes
7answers
11k views

Start program on a second monitor?

Is there a way to specify which monitor a application appears on in Delphi or C++Builder? I am developing a simple program for a customer, which displays kitchen orders on a secondary monitor, ...
10
votes
9answers
5k views

RAD Studio 2011 ( ? )

is there any information available for the next version ( 2011 ?? ) of Delphi/cbuilder from Embarcadero ?. Is there some link somewhere pointing to info related to next Delphi / cbuilder , when and ...
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
4answers
174 views

Tool to parse C++ source and move in-header inline methods to the .cpp source file?

The source code of our application is hundreds of thousands of line, thousands of files, and in places very old - the app was first written in 1995 or 1996. Over the past few years my team has ...
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 ...
8
votes
3answers
627 views

Named Pipes from Windows Service to Client Application

My story is that I am designing a new app which must communicate with a Windows service. After much research I have come to the conclusion that Named Pipes are the recommended method ( How do I send ...
8
votes
3answers
232 views

Which COM smart pointer classes to use?

I'm confused by the choices for COM smart pointers classes for C++ programming: There's three four I'm aware of: CCOMPtr from ATL _com_ptr_t from the MS Com Support Classes TComInterface (because ...
8
votes
6answers
2k views

FindNextFile fails on 64-bit Windows?

using C++Builder 2007, the FindFirstFile and FindNextFile functions doesn't seem to be able to find some files on 64-bit versions of Vista and XP. My test application is 32-bit. If I use them to ...
7
votes
2answers
310 views

Recommendations for plotting (chart) component?

I am searching for a widget or control to plot a time-series of data. Basically plot(x,y) where x and y are Nx1 vectors. I am looking but haven't found much and any suggestions would be great! ...
7
votes
1answer
318 views

Unhandled Exception in Rad Studio Debugger Thread

I have a large application that recently started exhibiting rather strange behavior when running in a debugger. First, the basics: OS: Windows 7 64-bit. Application: Multithreaded VCL app with many ...
7
votes
4answers
579 views

How do I debug a difficult-to-reproduce crash with no useful call stack?

I am encountering an odd crash in our software and I'm having a lot of trouble debugging it, and so I am seeking SO's advice on how to tackle it. The crash is an access violation reading a NULL ...
7
votes
4answers
621 views

#region equivalent in CodeGear RAD Studio? Similar way to group code?

I was wondering if there is an equivalent to Visual Studio's #regions in RAD Studio. We use CodeGear's delphi and c++builder IDEs where I work and I would love to be able to use something like ...
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
3answers
2k views

Expose an event handler to VBScript users of my COM object

Suppose I have a COM object which users can access via a call such as: Set s = CreateObject("Server") What I'd like to be able to do is allow the user to specify an event handler for the object, ...
6
votes
3answers
176 views

How to display values from a VARIANT with a SAFEARRAY of BSTRs

I am working on a COM Object library with function that returns a VARIANT with a SAFEARRAY of BSTRs. How can I display the values from this VARIANT instance and save it inside a TStringList? I tried ...
6
votes
2answers
258 views

How create an standalone (without dll dependencies) c++ builder console app like a delphi app?

When I create a delphi console app, I can deploy the generated exe without worry about externals dll. But if I create very simple c++ builder (version 2007) console app (no vcl) the exe requires the ...
6
votes
5answers
316 views

let C++Builder/Delphi create TForms at launch, or create manually?

When a TForm is created in Builder (or Delphi) code is added to main to create these forms at application launch: Application->CreateForm( __classid( TxForm), &xForm ); this makes things ...
6
votes
3answers
700 views

How should I embed Python in a C++ Builder / Delphi 2010 application?

I'm interested in experimenting with embedding Python in my application, to let the user run Python scripts within the application environment, accessing internal (C++-implemented) objects, etc. I'm ...
6
votes
1answer
141 views

Producer/Consumer For Talking to Devices Serially

Here is my problem: I have to be able to send and receive to a device over serial. This has to be done in a multi-threaded fashion. The flow is as follows: Wait for device to send me something - or ...
6
votes
2answers
859 views

How do I access Delphi Array Properties using RTTI

I'm familiar with using Delphi RTTI to access "simple" properties (ints/enums/strings, etc) but I cannot grasp how to work with Array properties. I'm starting by looking for array equivalents for ...
6
votes
3answers
4k views

HTML Editor for CBuilder/Delphi

I need to find basic WYSIWYG HTML editor component for C++Builder 5 to let users to create some simple text that I will paste into existing HTML page template. Just a simple support to create links, ...
6
votes
2answers
776 views

Are there guidelines for updating C++Builder applications for C++Builder 2009?

I have a range of Win32 VCL applications developed with C++Builder from BCB5 onwards, and want to port them to ECB2009 or whatever it's now called. Some of my applications use the old TNT/TMS unicode ...
5
votes
2answers
183 views

How to disable MouseWheel if mouse is not over VirtualTreeView (TVirtualStringTree)

TVirtualStringTree behaves by default if it is focused - it will scroll on mouse wheel even if mouse is not over control (except if it is over another TVirtualStringTree). Is there a quick and ...
5
votes
3answers
181 views

Borland / Delphi alternative to __super keyword

Keyword __super is Microsoft specific. It is used to access virtual methods of parent class. Do you know alternative keywords for borland c++ / delphi compilers? class MyBaseClass { virtual void ...
5
votes
1answer
172 views

What explains this strange PeekMessage behaviour (trying to deal with a full message queue, filtering for specific messages)?

Our application acts as a COM server where all automation occurs within a single STA apartment (in the application's main thread), and some VBS scripts which make lengthy (>10 minute) calls are ...
5
votes
2answers
114 views

How can I enable DEP/NX and ASLR on a Delphi 2006 or earlier executable?

Delphi 2007 (and newer) supports enabling DEP and ASLR via any of these three techniques: add the command-line switch –dynamicbase when compiling with dcc32 add the preprocessor command ...
5
votes
1answer
456 views

Understanding TBitmap.Scanline in Delphi & C++ Builder

Delphi & C++ Builder have a TBitmap class with a Scanline property which returns the memory of pixels of the bitmap. This seems to be different when I look in a hex editor of the BMP file. I'm ...
5
votes
5answers
1k views

Anchoring GUI components in FireMonkey

Just started testing FireMonkey and can't find a way to make dynamically sized/positioned components. VCL had the Anchor property, FM does not. Anybody see something I missed Update: Simple ...
5
votes
2answers
500 views

Components in delphi and C++ Builder?

Hi all Professional Delphi developers. I have some components ( alpha controls ) I can install them to Delphi or C++ builder it works well. But when I Install Delphi version package I can't use ...
5
votes
1answer
408 views

Why is my C++ Builder program so much smaller than my Delphi program?

Today I downloaded the Delphi and C++ Builder XE trial. I was worried about the size of Delphi exes for a long time (in XE it is 850 kb), and I thought, why such a big size of app even it is just has ...
5
votes
1answer
585 views

Should I use ApplyUpdates(0) or ApplyUpdates(-1)?

The Delphi XE dbExpress tutorial in the online documentation uses ApplyUpdates(-1): // Client data set has provider do update. ClientDataSet1.ApplyUpdates(-1); Some online sources however say ...
5
votes
5answers
1k views

TVirtualStringTree - resetting non-visual nodes and memory consumption

I have an app that loads records from a binary log file and displays them in a virtual TListView. There are potentially millions of records in a file, and the display can be filtered by the user, so ...
5
votes
3answers
1k views

Delphi - form within form

For aesthetic reasons, I want to show a form on top of another form, just as if it were a component, say like a TPanel. It should resize with the parent, move around as th eparent is drageed by its ...
5
votes
2answers
468 views

How can I visually design a component in C++ Builder?

I have been away from C++ for a couple of years now doing AS3/Flex work. I have gotten used to being able to create a component and place it in design mode with very little fuss and I am struggling to ...
4
votes
2answers
159 views

How to structure database for quick node access

I am looking for a way to structure database wit VirtualTreeView and SQLite database for quick retrieval of data. With VirtualTreeView there is a OnNodeInit event bu it is not always practical for ...
4
votes
1answer
329 views

Border around a form with rounded corner in c++ builder XE

I have made a C++ Builder XE form with rounded corner with the help of the following code BorderStyle = bsNone; void __fastcall TForm1::FormCreate(TObject *Sender) { HRGN frmrgn; ...
4
votes
2answers
242 views

std::getline for a comma delimited table file with quotations around certain fields

I'm basically running the following code. This code goes through line by line and grabs the different fields of a generic comma-delimited table file. My problem is that sometimes the "title" field can ...
4
votes
3answers
451 views

Internet Radio player component for Delphi/C++Builder

I'm looking for an Internet Radio player (SHOUTcast/IceCast) component for Delphi/C++Builder. Does such a thing exist? ActiveX component OK too. Thanks.
4
votes
1answer
579 views

Porting Borland C++ Builder to Qt

I have to port a project from Borland C++ Builder 5.0 under Windows XP to Qt 4.7.1 using g++ under Windows 7/mingw. The libraries and command-line utilities are done, and now I have to tackle the GUI ...
4
votes
1answer
356 views

Can you help translating this very small C++ component to Delphi?

I'm translating the following C++ component to Delphi: http://borland.newsgroups.archived.at/public.delphi.vcl.components.using.win32/200708/0708225318.html But it's not working... I'm attaching the ...
4
votes
1answer
323 views

Can I step into the VCL (Pascal) code while debugging a C++ app?

I have a Delphi app that we're migrating to C++. One thing I often do while debugging my Delphi code is step into the VCL itself to understand exactly what's going on, to track some bugs. Is this ...
4
votes
1answer
602 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
4answers
519 views

How do I solve “Two different CRTLDLLs are loaded” when using packages in C++ Builder 2010?

We are trying to split up our monolithic EXE into a combination of an EXE and several packages. So far, we have one package that we're trying to use, and when running the EXE Codeguard shows the ...

1 2 3 4 5 11