This article is about Color Components which is used to select or display Colors. If you are new to ARGB color please refer to this article about Colors in Modern C++
ColorButton (TColorButton)It is a standard button that displays a color. It can be used to pop up color picker window then backs with selected color. May be to show foreground background colors, etc. It can be used with…
Media Players are good to play sounds or videos. You can easily create your own media player in C++ Builder. MediaPlayer (TMediaPlayer) component is very good to develop your media player application. You can use aTMediaPlayercomponent for easy access to media…
Easily Learn To Find Prime Numbers In Modern C++
January 22, 2021
Prime numbers are interesting area to research. A prime number, it is also called prime shortly , is a natural number (a positive integer) greater than 1 that is not a product of two smaller natural numbers. If a number is not prime then it is called as a composed…
Easily Play Sounds In Modern C++ On Windows With This Snippets
January 21, 2021
Sounds are one of the important part of applications. Basically playing sound is sending signals to audio device / audio card of your computer to generate sounds in its voltage and frequency.
In C++ Builder, simply if you want to warn for something beginning or done we can use Beep(frequency, duration) command as below;
Beep(1000,100);
We can directly play wav, mp3 files by using play…
Learn C++ With Exploration Of Powerful C++20 Meta Programming by Inbal Levi (CPPCon 2020) Video
January 20, 2021
This video will be focusing on compile-time. It will talk about adding templates to the existing software, overview overload resolution, and conditioning at compile time. It will then explore the new iteration of the meta programming template modified with the release of…
Learn How To Easily Record Sound In Powerful Modern C++ On Windows
January 19, 2021
Sounds are in wave format and in digital form sound has its volume change in timeline. In C++ Builder it is easy to use recording devices on Windows. To record a sound in Multi-Device applications we must use FMX.Media.hpp header.
1. Let’s create a new MultiDevice…
Quickly Learn To Draw Powerful Mathematical Functions Dynamically in Modern C++ on Windows
January 17, 2021
Most of engineering applications needs to display data in part of time or in real time. There are many ways to draw mathematical functions or data series. There are also components which makes easy to display, zoom, arrange, save or load data. In this post we will explain…
Learn C++ With Building Coroutine Based Job System Without Standard Library by Tanki Zhang (CPPCon 2020) Video
January 16, 2021
Job system is a popular game engine component to increase total CPU performance. This video will walk you through the creation of coroutine-based work system and describe the benefits of using coroutines over the traditional ways of constructing a work system. This will…
Panel
Panel (TPanel) is ageneral-purpose panel used to hold multiple controls for organizing purposes. It is used to hold some group of your components. Generally they are used with Alligns. We highly recommend you to align Panels to Left, Right, Top, Bottom or Client. Thereby, your application with contents in different panels may resize itself by the change of resolution, by the change…