RAD Studio 11.3 Alexandria Now Available! Más información

3 For 1 on Maintenance - Get 36 Months Instead of 12! Más información

See What's New in RAD Studio 11.3 Alexandria Ve la repetición

Save Big on Delphi’s 28th Más información

InterBase 2020 Update 4, released! Más información

Descubre la Nuevísima Página de Getit

Grandes descuentos disponibles en InterBase 2020 para OEM o VARs – Comunícate con ventas

Renovar ahora su licencia de Update Subscription Lee mas

C++Builder Videos

Desarrolle aplicaciones nativas de Windows C++ e iOS 10 veces más rápido con menos código

Using Futures from the Parallel Programming Library in C++Builder

This How To Video shows you how to use C++11 lambda functions with the Parallel Future feature in the Parallel Programming Library. Parallel Future uses TTask::Future to launch a function that returns a specific type. TTask::Future, where the type parameter, T, represents the return type. Using a future allows you to calculate something or run some query and at the same time you can do other tasks, getting the value when you want via future's value. If the value is not completed yet, the...

TOOL
C++Builder
TAGS

Advanced

Using the For Loop from the Parallel Programming Library in C++Builder

This How To Video shows you how to use the TParallel::For method from the Parallel Programming Library (PPL). TParallel::For splits a for loop into pieces that run in parallel and uses tasks to run those pieces. The VCL and FMX demo applications find the first X prime numbers. This calculation is done with a serial version using the classic C++ for loop and a parallel version using the TParallel::For method.

TOOL
C++Builder
TAGS

Advanced

Using Tasks from the Parallel Programming Library in C++Builder

This How To Video uses the Parallel Programming Library's TTask class to manage procedures that can be executed in parallel threads. The TTask class creates and manages task instances represented by the ITask interface. The task procedures, including C++ lambdas, provided to the constructor are considered ready for execution after calling the Start method. The WaitForAll, WaitForAny, and the Wait methods of ITask are used to explicitly suspend execution of the calling thread to wait upon any...

TOOL
C++Builder
TAGS

Advanced

How to Use Cameras in a FireMonkey 3D Application in C++Builder

Learn how to add camera to your simple C++Builder FireMonkey 3D application and use mouse or touch events to control camera's position.

TOOL
C++Builder
TAGS

Beginner

Creating a FireMonkey 3D Application in C++Builder

Create your first C++Builder FireMonkey 3D interactive visualization of a rotating sphere with a custom texture.

TOOL
C++Builder

Creating Your First Multi-device Application for Desktop Platforms (C++)

How to start a new multi-device project in C++ Builder, with a breif explaination of the generated files.

TOOL
C++Builder
TAGS

Beginner FMX

Using the Web Browser Component in C++Builder

Embedding the TWebBrowser in your desktop or mobile app to allow users to browse the web or view web documents using C++Builder.

TOOL
C++Builder
TAGS

Beginner

Using Location Services on iOS and Android in C++Builder

Using the TLocationSensor to obtain the current latitude and longitude and responding to the OnLocationChanged event displaying a map to the user in a TWebBrowser on both iOS and Android using C++Builder.

TOOL
C++Builder
TAGS

FMX

Creating a REST Server Application from Scratch with C++Builder

TOOL
C++Builder

Using the REST Client Library to Access REST-based Web Services with C++Builder

Using the REST Client Library to connect to a REST service over HTTPS/SSL, obtaining a GZIP compressed JSON response, parsing it , and placing it in a memory table. Binding it to a grid and displaying it to the user. Compatible with VCL, FireMonkey, Windows, iOS, Android and OS X.

TOOL
C++Builder
TAGS

Beginner