c++builder

  1. FireWind

    OverByte Internet Component Suite v8.66 announced

    OverByte Internet Component Suite v8.66 announced ICS V8.66 has been released at: http://wiki.overbyte.eu/wiki/index.php/ICS_Download ICS is a free internet component library for Delphi 7, 2006 to 2010, XE to XE8, 10 Seattle, 10.1 Berlin, 10.2 Tokyo, 10.3 Rio and 10.4 Sydney, and C++ Builder...
  2. FireWind

    RAD Studio Learn about Deleted Copy Constructor (Avoiding Implicit Generation of the Copy Constructor)

    Learn about Deleted Copy Constructor (Avoiding Implicit Generation of the Copy Constructor) By Yilmaz Yoru June 24, 2021 Do you want to learn about Deleted Copy Constructor? Do you want to avoid Implicit Generation of the Copy Constructor ? This post explains how you can avoid Implicit...
  3. FireWind

    C++Builder Learn what is Trivial Default Constructor in C++

    Learn what is Trivial Default Constructor in C++ By Yilmaz Yoru June 21, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new object...
  4. FireWind

    C++Builder Learn to use Deleted Implicitly-Declared Default Constructor

    Learn to use Deleted Implicitly-Declared Default Constructor By Yilmaz Yoru June 20, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a...
  5. FireWind

    C++Builder Learn Implicitly Declared Default Constructor in C++

    Learn Implicitly Declared Default Constructor in C++ By Yilmaz Yoru June 19, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new...
  6. FireWind

    C++Builder Learn about Deleted Default Constructor in C++

    Learn about Deleted Default Constructor in C++ By Yilmaz Yoru June 18, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new object of...
  7. FireWind

    C++Builder Learn Defaulted Default Constructor in C++

    Learn Defaulted Default Constructor in C++ By Yilmaz Yoru June 14, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this function. Whenever a new object of a...
  8. FireWind

    C++Builder Learn Definition of the Default Constructor Outside of a Class Definition

    Learn Definition of the Default Constructor Outside of a Class Definition By Yilmaz Yoru June 13, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this...
  9. FireWind

    C++Builder Learn about Declaration of a Default Constructor Inside of Class Definition

    Learn about Declaration of a Default Constructor Inside of Class Definition By Yilmaz Yoru June 12, 2021 The Constructor in C++ is a function, a method in the class, but it is a ‘special method’ that is automatically called when an object of a class is created. We don’t need to call this...
  10. FireWind

    RAD Studio Whitepaper: RAD Studio – Should I Choose Enterprise?

    Whitepaper: RAD Studio – Should I Choose Enterprise? By Hagop Panosian June 13, 2021 AD Studio, Delphi® and C++Builder® are available in Professional, Enterprise and Architect editions. This paper explores the differences between the Professional and Enterprise editions to help you choose the...
  11. FireWind

    RAD Studio The Future Of Desktop Apps Is Native Code

    The Future Of Desktop Apps Is Native Code By Emad Bin Abid June 11, 2021 Desktop apps are powerful execution tools that can natively run on your local machine to provide holistic application navigation and utilization experiences. With the advancement of modern web technologies, the desktop...
  12. FireWind

    FMX Видеоуроки "Стили в FireMonkey"

    Видеоуроки "Стили в FireMonkey" Начинаем изучение стилей в FireMonkey с аспектов создания кроссплатформенной библиотеки с точки зрения внешнего вида. Разбираемся, какими способами можно реализовать отображение внешнего вида компонентов. Выявляем отличия концепций скинов и стилей. Учимся...
  13. FireWind

    RAD Studio Quickly Deploy Powerful Cross-Platform Machine Learning OCR Technology

    Quickly Deploy Powerful Cross-Platform Machine Learning OCR Technology By Victory Fernandes June 10, 2021 Are you familiar with the concept of OCR? Wouldn’t it be nice to be able to easily convert images of typed, handwritten or printed text into machine-encoded text? Take a look at the two...
  14. FireWind

    C++Builder Learn to Use Timer Component in C++ Builder on Windows

    Learn to Use Timer Component in C++ Builder on Windows By Yilmaz Yoru May 29, 2021 C++ Builder is the easiest and fastest C and C++ IDE for building simple or professional applications on the Windows, macOS, iOS & Android operating systems. It is also easy for beginners to learn with its wide...
  15. FireWind

    VCL TurboPack PowerPDF for VCL

    TurboPack PowerPDF for VCL PowerPdf is a VCL component to create PDF docment visually. Like Forms, you can design PDF document easily on Delphi IDE.
  16. FireWind

    C++Builder Learn C++ Inheritance :: Ambiguity in Multiple Inheritance

    Learn C++ Inheritance :: Ambiguity in Multiple Inheritance By Yilmaz Yoru May 28, 2021 Let’s remember that, Object Oriented Programming (OOP) is a way to integrate with objects which can contain data in the form (attributes or properties of objects), and code blocks in the form of procedures...
  17. FireWind

    C++Builder Learn C++ Inheritance :: Hybrid Inheritance

    Learn C++ Inheritance :: Hybrid Inheritance By Yilmaz Yoru May 27, 2021 Let’s remember that, Object Oriented Programming (OOP) is a way to integrate with objects which can contain data in the form (attributes or properties of objects), and code blocks in the form of procedures (methods...
  18. FireWind

    FMX TurboPack OnGuard for FMX

    TurboPack OnGuard for FMX OnGuard is a library to create demo versions of your Embarcadero Delphi and C++Builder applications. Create demo versions that are time-limited, feature-limited, limited to a certain number of uses, or limited to a certain number of concurrent network users. This is a...
  19. FireWind

    VCL TurboPack OnGuard VCL

    TurboPack OnGuard VCL OnGuard is a library to create demo versions of your Embarcadero Delphi and C++Builder applications. Create demo versions that are time-limited, feature-limited, limited to a certain number of uses, or limited to a certain number of concurrent network users. This is a...
  20. FireWind

    C++Builder Learn C++ Inheritance :: Multilevel Inheritance

    Learn C++ Inheritance :: Multilevel Inheritance By Yilmaz Yoru May 24, 2021 Inheritance allows us to define a class in terms of another class, and it makes easier to create and maintain an application. This also provides an opportunity to reuse the code functionality and fast implementation...