C++

New in C++Builder 10.2.3: a new Win32 compiler front-end, bcc32x

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++…
Read more
C++

C-To-Delphi Converter Tool Can Quickly And Easily Help You Convert Standard C Code To Delphi

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…
Read more
C++

How to enqueue TQueue from TTask with bcc32

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…
Read more
C++

Get Started with RAD Studio 10.2.1 using Sample Projects

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.
C++

How to control "the system audio volume" of iOS

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…
Read more