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

RAD Studio 10.2: Windows 10 VCL UWP/WinRT Support

Windows 10 VCL Universal Windows Platform (UWP)/WinRT Services and Components has been added to the Run Time Library (RTL). For example, the Windows 10 Notifications Componentand Windows 10 Sharing/Contract Component, for both Object Pascal and C++ is included in RAD…
News

CodeRage XII - Nov 7th - 9th - Call for Papers!

It is time for your favorite online developer conference: CodeRage. This year for CodeRage XII we are adding more platforms, more technology, and more learning. Join us for 3 full days November 7th through 9th. Now is the time to submit your sessions for CodeRage XII.
Delphi

Cross Platform Business Stats Dashboard App For Delphi 10.2.1 Tokyo On Android And IOS

The Hospitality Survey Client project is part of the Hospitality Survey App template for Delphi 10.2.1 Tokyo that Embarcadero has released through their GetIt platform. The Hospitality Survey App consists of four different projects plus a Survey Question Editor. And now there is a sixth project I am releasing for the Hospitality Survey App which is a Hospitality Survey Admin Client built in Delphi…
Read more
C++

Build iOS 11 ready apps with RAD Studio 10.2.1

Target iOS 11 with RAD Studio 10.2.1 and the newly released iOS 11 patch. We’ve released a patch that adds support for building and debugging iOS 11 apps on supported devices, as well as creating App Store, Ad Hoc, or In-House Distribution ready apps. It also addresses…
News

Ext JS, Kitto and uniGUI, Oh My!

As a craftsman, it is important to have a good collection of tools in your toolbelt to address all the different types of projects you encounter. Join us tomorrow for our latest in a series of webinars on integrating Sencha’s Ext JS with your Delphi and C++Builder…
News

A Busy Summer!

It was a busy summer. There has been so much happening lately that it is difficult to decide where to start. Earlier this year we launched the milestone RAD Studio 10.2 (aka Tokyo). This August we released Update 10.2.1 that provided a number of highly anticipated quality and feature updates. So, what happened with the BIG September release? As stated before, we are no longer looking for the next…
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++

Implement CreateAnonymousThread with BCC32.

Author: h.mohri C++Builder 10.2 BCC32 can not write lambda.So write an implementation inInvoke() with TCppInterfacedObject<>. struct T_thread_proc : TCppInterfacedObject<TProc>{ TNotifyEvent f_ev_; struct T_sync_proc : TCppInterfacedObject<TThreadProcedure>{ TNotifyEvent f_ev_; T_sync_proc(TNotifyEvent& ev2){ f_ev_ = ev2; } …
Read more