C++Introduction to C++Language FeatureLearn C++

How to Create a New Windows VCL DLL In C++

In this post, you’ll get answers to these questions: What is a Static Library?What is a DLL? How can I create a new DLL Dynamic Library?Can I create a new DLL using the VCL framework?How can I create and call a function in a Dynamic Library?Where can I find a simple DLL example in C++?Can we develop Dynamic Link Libraries in C++ Builder? By learning how to create a new Windows VCL DLL in…
Read more
C++

Tutorial: TwineCompile IDE Integration For C++ Parallel Compilation

Learn how to better integrate TwineCompile with your C++Builder IDE for maximum productivity. TwineCompile is available for 10.4 and newer through the GetIt Package Manager for developers with Update Subscription. TwineCompile lists its features as: Advanced compile system uses multi-threading technology and caching techniques to make C++ compiles 50x faster! Automatic background…
Read more
C++Game DevelopmentLanguage FeatureLearn C++

How To: Develop A Fun 3D Game Like Minecraft In C++

Minecraft is one of the most popular game in the world, it is a good game to improve creativity of kids. It has very basic graphics with very useful game mechanism. Developing a 3D gamemight be little bit hard for all developers, requires good math skills, higher programming logics, requires optimization techniques, understanding 3D digital environment, matrix operations, camera movements, texture…
Read more
C++Code SnippetGeneric ProgrammingLanguage FeatureLearn C++

Quickly Learn To Check OS Platform Compiled In C++ Builder With Predefined Macros

Sometimes it is needed to understand compilation platform during compile or acting and designing UI elements in accordance with the platform. In this post we would like to give some examples to check some options in application codes. The C++ compiler predefines certain global identifiers, known as manifest constants. Most global identifiers begin and end with __ (two underscores) in C++.
Read more