C++Code

Learn How To Use constexpr In Modern C++ With C++Builder For Windows Development

In this tutorial, you will learn how to utilize constexpr variables and constexpr functions. The principal idea is the performance enhancement of applications by doing calculations at compile time rather than run time. The purpose is to allocate time in the compilation and save time and run time. The constexpr keyword was introduced in C++11 and improved in C++14 and C++17. constexpr specifies…
Read more
CodeDelphi

Learn About Using Delphi Methods As Python Functions With Python4Delphi Sample App

Earlier we have seen how to add methods in Python Module using Python4Delphi TPythonModule component’s Add Method. However, the Add Method parameter uses a PyCFunction type parameter. In many cases, we may need to define the method which should return Delphi Type. How to do that? This post will provide a way to do that using the TPythonModule component itself. You can also use Python4Delphi…
Read more
CodeDelphi

uniGUI Is A Compelling Web Application Framework For Delphi Based On Sencha Ext JS

FMSoft uniGUI is a web application framework for Delphi. This framework extends the web application development experience to a new dimension. uniGUI enables Delphi developers to create, design, and debug web applications in IDE using a unique set of visual components. This framework is close to the native VCL application development process which is RAD! The uniGUI web applications can be…
Read more
C++CodeDelphi

Quickly Build Powerful Python Modules In Delphi Using Python4Delphi Sample App

A Module is a file containing Python definitions and statements similar to the unit file in Delphi. To learn more about Python modules check this tutorial. How to create such Python Modules in Delphi using Python4Delphi components? This post will guide you. You can also use Python4Delphi with C++Builder. Python4DelphiDemo5Sample App shows how to create a Module, add a routine to…
Read more