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 files.MediaPlayer (TMediaPlayer)is used with TMediaPlayerControl. Set MediaPlayer to link aTMediaPlayerto…
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…
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 C++ Builder Project, save all project and unit files to a folder.
2. To define Audio Capture Device we need FMX.Media…
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…
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…
40 Amazing Years Of Powerful C++ And C++20 Features By Bjarne Stroustrup (CppCon 2019)
January 13, 2021
This presentation by Bjarne Stroustrup who began developing C++ (initially called “Cwith Classes”) in 1979, is about to explain what’s great about C++, C++20, as a modern language. Bjarne explains how do classes, templates, and lambdas fit together? What have constructors and destructors to do with exceptions? What’s in the standard library? How can we start using…
Quickly Learn How To Use Canvas Drawing In C++ On Windows
January 11, 2021
In C++ Builder, it is easy to draw images on Bitmaps by using Canvas property and methods to draw, Canvas can be used on both VCL and FMX applications. Canvas provides an abstract drawing space for objects that must render their own images. TCanvas provides properties…
In this post MainMenu, PopupMenu and MenuBar, ToolBar, SpeedButton that are basic components of C++ Builder are listed. You can get more information about each of these components from the Offical DocWiki Web Page of Embarcadero. Menus are really important if you have a lot…
If you want to analyze browsed web pages, first you need a web browser component. We can use Script Injection methods to get more details about the HTML or XML documents, for example to get Title of that webpage, or full Body of that page, or value of an element. This is very useful for data mining or for analyzing web pages, this can be applied with time intervals for refreshing web pages, like…