TComboBox
ComboBox is used to select list of texts (i.e. Categories). Gets the item that is currently selected in the combo box. Selectedreturns the selected item in the combo box as…
Learn C++ With Back to Basics: Pointers and Memory by Ben Saks (CPPCon 2020) Video
December 10, 2020
In modern C++, the common wisdom is to prefer smart pointers over raw pointers. But since they are still so common in C++ code and C++ libraries, many C++ programmers do not stop using them. If that’s the case, then they should learn how to use them efficiently. This…
How To Analyze Video Camera Images In C++ Builder On Windows
December 9, 2020
C++ is a strong and faster programming language, this feature really important on dynamic operations running less than in milliseconds of intervals. C++ is one of the best to analyze video camera images, it is good to analyze video image operations by using very modern…
Learn Basic Components in C++ Builder (QuickLook Part 1)
December 8, 2020
In this article we will add some quick methods to show how to use basic components in C++ Builder. Most of component properties and methods are same in VCL and FMX projects. If you are a beginner we highly recommend you to watch this Introduction To C++ Windows Development…
This video introduces what generic programming is, along with the different kinds of functions, namely: function, class, and method templates. After tackling the basics, this will help you keep in mind that codes should not be all about the templates. This is mostly for the C++ developers who has not been using templates so far.
The second part of the discussion is where Templates go into more…
Reverse Iterators in C++
December 6, 2020
By using bidirectional iterator or random access iterator (see Iterator Categories in C++) it’s possible to traverse the sequence in backward direction by using operator -- or by using the special adapter template class std::reverse_iterator. But why to bother with…
Learn C++ With Test Driven C++ by Phil Nash (CPPCon 2020) Video
December 6, 2020
The importance of testing can never be underestimated. Although sometimes, writing tests can be difficult and can be a little time-consuming. But there are other ways to make testing easier, like writing tests first. This video will give you insights on how to get you…
Categories of Iterators in C++
December 5, 2020
Conceptually, iterators are consists of five categories:
input iterator is intended to traverse sequences in the forward direction and provides the read access to the pointed sequence element;output iterator is intended to traverse sequences in the forward direction and provides the write access to the pointed sequence element;forward iterator is intended to traverse sequences in the forward…