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 of options to select, may be they are in groups, so user may reach the right menu item by using groups. Menus are one of the…
Learn C++ With Back to Basics: Algebraic Data Types by Arthur O'Dwyer (CPPCon 2020) Video
January 8, 2021
In this session, the video will clarify the math behind the name and discuss the meaning and use of all algebraic data types in C++17: pair, tuple, optional, and variant. The video will also demonstrate how to use std::optional for delayed initialization and how to…
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…
Learn C++ Standards through this panel discussion lead by members of the C++ Standard Committee. Alongside the C++’s creator, the panelists also include leaders of key subgroups, who are the ones responsible for the evolution of language and library and subjects. The panel discussion also provides a portrayal of new forward-thinking with the members of some of the newest national bodies to…
Learn The Basics Of Dev-C++ With This Jackpot Demo In C++
January 5, 2021
Welcome to our new Embarcadero Dev-C++ video series and in this session you learn the basics of the C++ language using Dev-C++.
Jackpot demo is a number guessing game which covers, C++ basics that covers the function prototypes, switch, while if statements and generating…
Developing a full Web Browser may take a lot of time, instead of this there are many components and libraries that you can use in C++ development. In RAD Studio, C++ Builder 10.4 and above, there is new feature called EdgeBrowser which is using Edge Canary, it has new…
360 Degree Spherical photos are good to capture all around in that moment. In this post here we give a simple example to display this pictures in eyeview with ability to rotate in any angle. This method can be used on drawings or generated drawings too. In this method we use…
Quickly Learn About Basic Windows C++ Components (QuickLook Part 4)
December 31, 2020
TrackBar
Trackbar is a slider on the form that allows users to get numeric values by dragging the track. A track bar can set integer values on a continuous range. It is useful for adjusting properties like color, volume and brightness. The user moves the slide indicator…