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

learn more… | top users | synonyms

0
votes
0answers
11 views

create release file in c++ with Directx

I selected "use mfc in a static library" in Use Of mfc part but there are lots of link errors such as "Error 97 error LNK1120: 94 unresolved externals" I can not create release file alone
2
votes
1answer
65 views

Is it safe to set SEM_FAILCRITICALERRORS on startup with VCL?

I've found that it is recommended to call SetErrorMode(SEM_FAILCRITICALERRORS) on application startup: http://msdn.microsoft.com/en-us/library/windows/desktop/ms680621.aspx I know that VCL code sets ...
0
votes
0answers
7 views

Moving data from one to another StringGrid in right order

i have got two stringGrids. In first StringGrid there is one column with the variable names, one with variable addresses and column with checkboxes. What do i want here is that when i check one of the ...
0
votes
1answer
27 views

Delay code execution in VCL Forms Application

Need to animate a sorting algorithm, with source code line by line visualization. INTRO: For the begining, there is a FORM (see it in the picture attached). On top of that form is displayed a ...
1
vote
1answer
40 views

Disable C++ Builder exporting unit names?

Whenever I build an Win32 EXE in release mode with C++ Builder (Version XE4, but previous versions do this also), it always creates an export directory and exports an Initialize/Finalize entry for ...
0
votes
1answer
14 views

C++ Builder - No DragLeave event handler.

I am trying to find or create an event handler for when my item is dragged outside a form, im using C++ Builder 2007. You can use Mouse Leave and also use WndProc but this will only work when the ...
0
votes
0answers
18 views

EditBox inside StringGrid

I have problem with inserting Editbox in StringGrid. I have one StringGrid and one Editbox on my form. The editbox shows just fine in the selected col and row but i can insert just one number in the ...
1
vote
1answer
31 views

User editing cell in TStringGrid [closed]

How do you allow a user to edit text in a TStringGrid cell.
0
votes
1answer
16 views

Why can't I access the width of a THeaderSection

I'm trying to use the width of a headersection in a THeaderControl in C++ Builder XE. The THeaderControl is called "Header" The TStringGrid I'm trying to align the widths with is called "Grid". In the ...
0
votes
0answers
30 views

Code compiles until CreateWnd() is thrown in

I am using XE3 and trying to construct a DLL with my third party component. Since it is a rather large project i will describe it then detail the question at hand. I have multiple cpp files and ...
0
votes
0answers
40 views

TFS and Builder 2009/XE4

I'm building a matrix to compare different source control repositories and which IDEs they integrate with. In essence, I need to make sure the source control integrates with all of the IDEs we use. ...
0
votes
1answer
28 views

Lookup Combo that supports remote data - load data only after user wants to

I'm building a VCL c++ builder application. I would like to see if anyone knows of a component that can load data in the lookup upon drop down only after a user has typed a few letters to limit the ...
2
votes
1answer
47 views

Initializing part of function only once

I have a function with a small bit which I want to initialize once e.g. void SomeFunc() { static bool DoInit = true; if (DoInit) { CallSomeInitCode(); DoInit = false; } // The rest of the ...
1
vote
2answers
42 views

ofstream output of std::map<UnicodeString, UnicodeString> yields addresses not strings

I have a stl map container filled with pairs of vcl UnicodeString objects. I'm trying to dump it to file with the code quoted below but instead of my strings I'm getting a file full of hex addresses. ...
1
vote
1answer
78 views

Warnings when compiling Boost libraries in C++ Builder

I am getting warnings when I am trying to include <boost/thread.hpp> in C++ Builder. For every unit I am including it C++ Builder shows up these 2 lines: thread_heap_alloc.hpp(59): W8128 Can't ...
0
votes
1answer
69 views

Order of TForm creation and destruction and threads

I have a thread which calls functions of certain form to update this form. When task is done, thread updates form with results, using Synchronize and it all works fine while the program is running. ...
1
vote
1answer
41 views

What is the meaning of “extern PACKAGE TMyForm * MyForm”

In C++Builder XE2 the IDE will place this line of code in the header file associated with TMyForm immediately after the TMyForm class. I'm certain this relates to the the fact that all of the ...
1
vote
1answer
58 views

TApplication and splitting a C++Builder application into DLLs

While taking an existing monolithic C++Builder VCL application and splitting it into an exe + DLLs, I'm running into problems with TApplication. The DLL projects and the exe project have the ...
1
vote
0answers
21 views

TFontDialog is not displaying all fonts that are installed on the machine

I have a problem where the TFontDialog class is not getting all of the fonts installed on my Windows 7 machine. For some reason XP machines does not have this problem. It's multiple fonts that are ...
0
votes
2answers
92 views

CUDA with C++ Builder

How can I use CUDA with C++ builder? Do I have to use a wrapper to do a basic CUDA computation? I searched and there is no info how to set the CUDA SDK for C++ builder.
0
votes
3answers
109 views

Vector-based fonts on OpenGL

I started working at this company that uses an 2D OpenGL implementation to show our system's data (which runs on Windows.) The whole system was built with C++ (using C++Builder 2007). Thing is, all ...
0
votes
0answers
110 views

C++ Pattern Design

Have a nice day Actually i am new to c++ pattern design and i had doubt its like that i want to create set of objects in a class A when i create class A i passed vector parameter to class A ...
-1
votes
1answer
36 views

Builder c++ TButton problems?

I'm using Builder C++ 6. in the folowing code I want my function KreirajPOlja() to generate random AnsiString characters on the buttons but what i always gain is just matrix 9*9 with just one ...
0
votes
4answers
151 views

C++ Read only random lines in a file

I had requirement to read text file but its too large then I decide to only read some lines in this file. Can I use seek method for jump given line? Then I can only read that line because that text ...
0
votes
1answer
47 views

Math functions undefined although present in the Borland C++ Builder 6 help under Math unit

I want to use the function Sign() in a Borland C++ Builder 6 application. I cannot however find the correct header file. When I use this function I get a compiler error saying undefined symbol, Sign. ...
1
vote
1answer
61 views

Multiple client program

I was wondering if I have a single server application and a bunch of clients connected. What if the first client asks for some data and then in the middle of that the second client asks for data. What ...
0
votes
2answers
69 views

C++-builder: access violation 0x0000002c in window.cpp

I am modifying a program in C++ Builder XE2. The program doesn't use vcl yet, but owlnext. and contains multiple MDI-child-forms. There I use a routine to load a file and open a new window. ...
0
votes
1answer
25 views

VCL Exceptions in C++ Builder 5

I'm trying to control exception raised in the code, however this sample is not working as it should under C++ Builder 5. void __fastcall TForm1::Button1Click(TObject *Sender) { try { ...
0
votes
3answers
127 views

Differences using std::string in C++ Builder and VC++

since I can get hands on the new RAD Studio Xe4 I thought I'd give it a try. Unfortunatly, I am not so experienced with C++ and therefore I was wondering why the Code that works perfectly fine in VC++ ...
0
votes
0answers
21 views

C++ BuilderXE3 ribbon font

I use C++ BuilderXE to develop ribbon application. The problem : if one of buttons on a ribbon tab has large image and its multi word caption is slplitted on two lines, the ribbon height in not ...
2
votes
1answer
83 views

C++ Builder and chm help file

I'm trying to implement CHM help file into my app written in C++ Builder but I always get "no context-sensitive help installed". I added these lines: #include "HtmlHelpViewer.hpp" OnCreate.. ...
0
votes
0answers
28 views

Does C++ Builder 2009 Work with Git?

Can you manage source control with C++ Builder 2009's IDE with Git? I know I can do it outside of the IDE, I'm curious if it will work in an integrated way.
1
vote
1answer
27 views

C Builder remove border on FMX ImageControl

I'm displaying a bitmap image on my Firemoney desktop form using an ImageControl in RAD Studio XE3. The image displays correctly but has a border around it. The image has a white background and is ...
0
votes
3answers
118 views

How to logically organize source files in C++ [closed]

My source file pane is quickly growing (in terms of the number of files in my project) and it is getting a bit cumbersome to quickly locate the specific source file I need to access at any given time. ...
3
votes
1answer
113 views

C++ autorun in win 8

Is it right to use old techniques for win 8 to autorun my program? I don't have win 8 to test, so I hope somebody already knows. when PC was restarted, my program is not started, what can cause this ...
0
votes
0answers
36 views

What to do if tgamma() function is not defined?

I am trying to use tgamma() from the standard library. When I try to compile, I get the error message: Call to undefined function tgamma I have the directive #include <cmath>. I use ...
0
votes
2answers
88 views

Suggestions for quick GUI development tool with C++? [closed]

I am looking for an RAD C++ development tool that can let me put together a not-too-complex GUI project (for video processing & display) very quickly. I would use a Active Control in the GUI, and ...
0
votes
2answers
37 views

Variables in c++ builder XE2 not initializing when unit was called by component

I have a unit (WebFunctions.h) with the declaration String RawURLAllowedChars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ~.-_"; This unit works well in the app. But when I add a ...
0
votes
1answer
37 views

ADO database - how to edit

I want my server application to have the possibility to edit the database that i have created, when a client wants me(server) to edit something of his. Database table is quite simple, i need to know ...
0
votes
1answer
105 views

Installing VCL component in Delphi & C++ Builder

I created a VCL component in Delphi XE2 and want to install it in entire RAD studio (both Delphi & C++ Builder). The problem is, if I install the component in Delphi then I get linker error like ...
1
vote
0answers
42 views

C++ Bulder - File transfer

seeing that this is my first question hope it goes well.. :) I am using Embarcadero C++ Builder and i am trying to collect as much info as i can so that i can start making my program. I want to make ...
1
vote
1answer
64 views

how to manage navigation pane in Windows fileopen dialog?

The standard OpenFile Dialog available in vista and win7 allows you to add "Application Links" which appear at the top of the navigation pane on the left side of the dialog. In the included screenshot ...
0
votes
2answers
265 views

Efficient database access to various DBMS from Delphi XE2

My needs I work with Delphi/C++Builder XE2. I need to access at least these DBMSs: Firebird DB2/400 SQL Server SAP HANA (a new in-memory DB, available interfaces: JDBC, ODBC, ODBO, SQLDBC) I ...
2
votes
1answer
78 views

Delphi/Cpp Equivalent to RawURLEncode in PHP

I was looking for a equivalent function to PHP RawURLEncode (and Decode) in cpp builder (or delphi). I use the following string to test: _%_&_+_=_ _"_'_a_b_c_d_e_f_g_h_ (I wish to encode only var ...
-3
votes
1answer
78 views

undefined refernce to [closed]

In the following code map<nsaddr_t, Rating*>::iterator it; generate error for the following line (it->second)->updateRating(alpha, beta, TRUST_FADING, 1); the error of "undefined ...
-2
votes
1answer
113 views

Error: expected type-specifier before [closed]

The following block of code generated the errors rating* TrustManager::initNewRating(double alpha, double beta, double fading) { rating* rating = new rating(1.0, 1.0); ...
2
votes
1answer
52 views

Is passing a NULL Owner argument for dynamically created TComponent derived class instances OK?

I work with C++ RAD Studio and Builder 6 quite a bit and often create forms dynamically or create non-visual components dynamically when writing non-visual code. When designing forms, the Owner ...
1
vote
0answers
31 views

IDE generated USEFORM macro calls changing their order

We have a C++Builder XE project (VCL Forms Application) that has a few dozen forms and units in it. Whenever a file belonging to the project is added, deleted, or renamed, the IDE should do two ...
0
votes
1answer
74 views

Limiting the scope of a static member to n specific classes

how to limit the scope of a static member to a n specific classes? for example if i create a1 object of class A and a2 object of class A, i want these objects(a1, a2 created with A) could have ...
1
vote
1answer
65 views

How do you handle exceptions when using TServerSocket in blocking mode?

I am writing a C++ application using Embarcadero RAD studio and TServerSocket component in blocking mode. I have overridden the OnGetThread handler for the socket to create a custom class derived from ...

1 2 3 4 5 18