Constants
In C++ we learnt that a variable is a container (storage area in memory location) to hold data (integer numbers, floating numbers, strings etc.), Also we explain that the placement of variable definitions as given above is very important. Generally they should be declared before all, at least before the usage. You can declare all given types above as a global variable or local…
Learn To Develop Powerful C++ Windows Applications To Connect With An InterBase Database
March 12, 2021
InterBaseis a powerful database developed and supported by Idera / Embarcadero, it has a zero-administration, small-footprint database engine that can power your server and even run on your mobile devices as an embedded database.The InterBase 2020release…
InterBase is a powerful database developed and supported by Idera / Embarcadero, it has a zero-administration, small-footprint database engine that can power your server and even run on your mobile devices as an embedded database. The InterBase 2020 release adds a number of…
Learn To Use Printing In Modern C++ Windows Applications
March 10, 2021
In C++ Builder, it is easy to use full features of the attachedPrinter Deviceby usingRTL(Run Time Library) features is that both FMX (FireMonkey) and VCL frameworks provide similar coding and both are capable to use printer dialog which allows users to select and set up printer device.
The printer property (TPrinterfor VCL orTPrinterfor FMX ) is…
In this post we would like to give a very simple example to connect to a MySQL Database in C++ Builder with FireDAC Component which comes with RAD Studio officially.
MySQL is one of the world’s most popular open source database and it is very easy and very useful…
If you are looking to a way to reliably determine whether C++ code is being compiled in 32 bits or 64 bits there is way to check in C++ code.
For a cross platform compilation (cross compiler environments like FireMonkey framework in C++ Builder) there is no single…
Clipboard, also called as the paste buffer, is is a buffer which operating systems provide to copy things (texts, bitmaps, tables etc.) for short term and transfer within and between application programs. The clipboard is usually temporary and unnamed, and its contents reside in the computer’s memory.
In C++ Builder there are good components to use Excel forms, excel supported Grid…
Learn To Use PostgreSQL Database Connections With C++
March 5, 2021
PostgreSQL is another popular database which is powerful, open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance You…
Learn To Modernize Appearance Of Multi-Platform C++ Builder FMX Applications By Using Styles
March 3, 2021
Syles are sets of graphical details that define the look and feel of a application visually and they are one of most beautiful and useful UI feature of RAD Studio, that makes your UI elements skinned with professionally designed with different Styles. Official Styles are…
Sylesare sets of graphical details that define the look and feel of an application visually and they are one of the most beautiful and useful UI features ofRAD Studio, that makes your UI elements skinned with professionally designed with different Styles. Official Styles are designed by Embarcadero’s Designers and there are other 3rd party Styles, also users may generate their…