C++ComponentsLanguage FeatureLearn C++

How To Set Properties Of A New Windows VCL Component In C++

How can I add custom properties to my new component in a VCL application? What is the syntax for the component property? How can I add a visual property to my VCL component that can be read or written by the Object Inspector? How can I create a property that can be edited via the Object Inspector at design time and via code at run-time? What is the __published: section in Classes (Type Objects) in…
Read more
C++ComponentsLanguage FeatureLearn C++

How To Make Controls Have A Glow Effect In C++?

Is there an easy way to add glow effects to components? How can I add glow to alpha images on my applications? What is Glow Effect in C++? How can I use TGlowEffect in C++ Builder? What are the visual tips to add glows in the development of C++ applications? Let’s answer these questions. C++Builder is a c++ IDE that provides the easiest and fastest way to build simple or professional C++…
Read more
C++Language FeatureLearn C++

How to Create a New 64bits VCL Component in C++ or Delphi

How can I create a new 64bits VCL Component? How can I use the New Component menu? How can I use and fill the New Component Wizard for the 64bits VCL applications? What is a Component in C++? What is an Object in C++? Let’s answer these questions. Note that this article uses C++ Software for its example, but the process for Delphi applications is exactly the same. One of the most…
Read more
C++Introduction to C++Language FeatureLearn C++

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

One of the most powerful features of the C++ Builder is its own Components that can be used with or without visuals. Components make programming easy; you can do many operations easily without knowing techniques like low coding or some specific functionality – you just let the component do the hard work for you. Every component that you drag into an app’s forms is an object of the…
Read more