【Delphi / C++Builder】Starter無償提供1周年記念!アプリケーション開発の基礎が学べるWebセミナー(2限目)[JAPAN]
September 26, 2017
Delphi / C++Builder Starter Edition が無償でご利用いただけるようになって、1年が経ちました。そこで無償提供開始1周年を記念して、2017年9月22日(金)に「Delphi / C++Builder Starter チュートリアルシリーズ…
Learn How To Use AngularJS To Quickly And Easily Connect And Consume JSON From RAD Server
September 13, 2017
The Hospitality Survey Admin dashboard project is part of the Hospitality Survey App template for Delphi 10.2 Tokyo that Embarcadero has released through their GetIt platform. The Hospitality Survey App consists of four different projects. In this blog post I am going to…
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. You…
Implement CreateAnonymousThread with BCC32.
September 13, 2017
Author: h.mohri
C++Builder 10.2 BCC32 can not write lambda. So write an implementation in Invoke() with TCppInterfacedObject.
struct T_thread_proc : TCppInterfacedObject{
TNotifyEvent f_ev_;
struct T_sync_proc : TCppInterfacedObject{
TNotifyEvent f_ev_;
…
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
#include
Form design
Arrange “Up” and “Down”…
Convert CSV file to TFDMemTable format JSON file.
September 1, 2017
Author: h.mohri
Convert from CSV file to “JSON file” of “TFDMemTable format”.
This program uses C++Builder 10.2 Tokyo Release 1.
include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include…
C++ Builder Header Dependencies
August 30, 2017
Why should you care about header dependencies in C++? One reason is header dependencies can have an impact on building, refactoring, testing and on the structure of your software.
And reducing header dependencies in C++ also reduces compile time dependencies – the…
Try condition_variable using C++Builder(C++11).
August 12, 2017
Author: h.mohri
std::condition_variable is a class for waiting for thread execution until the condition is satisfied.Used in combination with std::mutex.
I tried the wait() function in std::condition_variable.This is combined with std::unique_lock.
I thought of the…


