Yesterday we released RAD Studio 10.2.3, and we have a number of new C++Builder features. I wrote earlier about rename refactoring for C++, but today I also want to mention one small but useful one for our power users: a new compiler driver called bcc32x.
It’s a minoraddition, but useful.
Our compilers
In 10.2.3, we ship a number of compilers.
First, our classic compilers: the C++…
New in C++Builder 10.2.3: C++ Rename Refactoring
March 14, 2018
Yesterday, we released RAD Studio 10.2.3! Over the next week, we’ll be blogging about some of the new features. Today I’d like to look at the introduction of rename refactoring for C++.
Whatis refactoring?
Over time, code grows and…
On iPhone X(iOS11.2), use Regular Expressions library.
January 29, 2018
Author: h.mohri
The 35th Developer camp will be held in Japan on March 15, 2018.
The venue is Tokyo Akihabara UDX GALLERY NEXT.
C++Builder 10.2.2 is one of the merits of being able to use RTL and STL.
For RTL, the classes on Regular…
C-To-Delphi Converter Tool Can Quickly And Easily Help You Convert Standard C Code To Delphi
November 11, 2017
Developer Wouter Van Nifterick has a C-To-Delphi converter tool available over on GitHub under an MIT open source license. The tool contains a split view where you can write standard C code on the left side of the split view and it will show you translated code in Object Pascal (Delphi) on the right side of the split view. The DelphiAST library is used to perform syntax checking on the Delphi code…
When programming is pure fun: creating mazes - at CodeRage
November 5, 2017
CodeRage XII is this week! (Nov 7-9.) And I have something very cool to show in one session,a weekend project that has been pure fun to write, reminding me of the days when I was a teenager learning to code and writing just because I enjoyed it.
I’m…
To get the NetworkInfo using the ConnectivityManager of Android
October 10, 2017
Author: h.mohri
Using ConnectivityManager with C++Builder
With C++Builder 10.2 Tokyo Android ConnectivityManager class is available.
Use the ConnectivityManager, you can get NetworkInfo.
NetworkInfo see various network information.
inside that…
How to enqueue TQueue from TTask with bcc32
October 3, 2017
Author: h.mohri
When considering migration from oldC++Builder 10.2 Tokyobcc32project.You can use functions such asTThread::CreateAnonymousThread()andTTasktoimprove performance.In addition toTCriticalSection, you can also useSystem.TMonitorwhich supports multiple devices.I will show you how to programbcc32project using…
Get Started with RAD Studio 10.2.1 using Sample Projects
September 13, 2017
Guided Tour
The Guided Tour is a step-by-step bubble pop-up tour that shows you how to build your first multi-device FireMonkey application using the FireUI Designer. Following the steps in the tour is a good starting point for anyone new to the FireMonkey framework.
How to control "the system audio volume" of iOS
September 5, 2017
Author: h.mohri
Use C++Builder 10.2 to control audio volume of iOS.
I used the MPVolumeView class of iOS.
The MPVolumeView class is declared in “iOSapi.MediaPlayer.hpp”.
Include two files.
#include <iOSapi.MediaPlayer.hpp>
#include <iOSapi.UIKit.hpp>
Form design
Arrange “Up” and “Down” two TButton. Use this button to control the volume.
Add MPVolumeView to…