C++Code

Create and use Static Library (.Lib) and Dynamic DLLs in C++ Builder

Introduction: This post describes how to create and use Static Library (.Lib) and Dynamic (Run-Time) DLLs in C++ Builder. A library is a collection of pre-compiled code that can be re-used by programs. There are 2 types of libraries: static library and dynamic library. Static Library (.lib) vs Dynamic Library (.dll) A static library (.LIB file) (or archive) contains code that is linked to users’…
Read more
C++CodeIDERAD Studio

How C++ Works With Libraries and More

Hello everyone, we have new great posts about C and C++ coding that may help and motivate you, your kids, or your students to start new apps on Windows, iOS, Android, Linux, iOS, or on IoT systems. This week’s topics are a round-up of some new great C and C++…
C++CodeDelphiIDERAD Studio

6 Ways To Improve Your C++ (And Neural Network!) Knowledge

Hello C++ Developers, LearnCPlusPlus.orgis packed full of great articles on new modern C++ topics for professionals and beginners. In this article, we point you toward some recent great posts about how to open old project files like *.mak and *.bpr files, how to create a DLL in FMX projects, and 64bits VCL Component. Do you want to set the runtime process priority of your applications in…
Read more
C++Delphi

How To Use A C++ DLL In Any Delphi Program

There is a glorious wealth of useful C++ libraries available on the internet. We have featured many great uses of C++ here on this blog too. C++ is typically extremely high performance. If we can have the source code of the C++ library, we can create a package that will…