C++Code

Learn About Using C++ rvalue References In The C++Builder BCC32 Compiler

BCC32, which is the classic C++Builder 32 bit compiler, includes the use of rvalue references, which allow creating a reference to temporaries. Also, rvalue references avoid unnecessary copying and make possible perfect forwarding functions. This feature is one of the C++11 features. Rvalue references are a compound type like standard C++ references, which are referred to as lvalue references.
Read more
C++CodeDatabaseDelphiRAD Studio

Quickly And Easily Build A REST Based Notes App With RAD Server In Delphi And C++

EMS.NotesResource Sample is a server-client EMS demo. It requires InterBase to be installed on the machine or to connect to a remote server. Make sure that the server is running before you run the sample. InterBase is used to store the information with the server connections. Use theRAD Server Consoleto display the statistics. The first part consists of creating an EMS Package…
Read more
DelphiNews

RAD Studio with Delphi - The Original Low Code!

These days low-code development is en vogue. Various research groups, such as Gartner, put the low-code application development platform market at ~$10M billion in 2019 and project CAGR to be greater than 20% from 2020 to 2027. In contrast, the market for developer tools has…
C++Code

Quickly Learn How To Migrate Legacy C++ Builder Applications To The Unicode

In this CodeRage session, you can see how you can migrate your legacy C++ Builder code to new and fresh C++ easily with a strategy. What can you get from this session? Here is the overview: Unicode in C/C++, VCL & WinAPIVCL String ClassesConverting text to and from UnicodeLoad and save Unicode characters to fileNew C/C++ data types for C-style strings“_TCHAR maps to&#8221…
Read more
C++CodeIDERAD Studio

C++ Builder 10.4.x Platform APIs

C++ Builder provides three levels of development: ⦁ Components (VCL and FMX) ⦁ Common Libraries (RTL). ⦁ Platform APIs (iOS, Android, Mac OS) In this post we will discuss and show how to use the Platform APIs (iOS, Android, Mac OS). Specifically, we’ll look at how to use the iOS APIs to obtain Apple iOS device information for the Operating System (OS) version, the OS name and the iOS…
Read more