In this post, you’ll discover how we can display two-dimensional data? Can we display data in X and Y? In C++, how can we make a 3D rectangular prism? How do we generate random two-dimensional data? How can we display 2D data with rectangular bars? How can we rotate a 3D visualization? How do we zoom in and out of a 3D visualization?By learning how to do 3D visualization in c++, it will help…
C++ Builderis the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, macOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide range of samples, tutorials, help files, and LSP…
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…
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 caninstallandusePostgreSQL through theofficial documentation. They have also support with PostgreSQL Community, it provides many…
Learn To Use MySQL Database Connections On Windows With MyDAC Components
February 28, 2021
In this post we would like to give a very simple example to connect to a MySQL database in C++ Builder with MyDAC Component.MySQL is one of the world’s most popular open source database and it is very easy and very useful touse small to large scale databases.
3-D in digital platforms are 2D projection drawings of 3D objects. We can mathematically calculate a solid object, its position, its projection on our 2D screen, we can add colors on it, light effects, textures, camera, movements and some other techniques to show our 3D…
Learn About Working With 3D In Modern Windows C++ Development
January 26, 2021
In application development 3D Objects can be displayed with 2D projection methods by using 2D / 3D mathematical calculations . That may be hard and needs much coding to display them. You can use OpenGL and DirectX with their own 3D commands to display them. You can also use and port a 3D Engine SDK. Simply, In C++ Builder 3D Objects can be easily displayed in the Viewport3D component. You can…
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…
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…
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…