C++Language FeatureLearn C++

Easily Play Sounds In Modern C++ On Windows With This Snippets

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…
Read more
C++ComponentsLanguage FeatureLearn C++

Quickly Learn About Basic Windows Components In C++ Development (QuickLook Part 5)

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…
Read more
C++ComponentsLanguage FeatureLearn C++

Easily Learn About Basic Windows Components In C++ Development (QuickLook Part 7)

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…
Read more
C++Game DevelopmentLanguage FeatureLearn C++

Learn To Display 360 Degree Spherical Images In C++ Builder On Windows

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 a 3D environment, we put the camera to the center of this environment and we put a 3D Sphere with a texture which has this…
Read more