c++

  1. FireWind

    C++Builder How To Define And Use An Idle Loop In A Windows Application

    How To Define And Use An Idle Loop In A Windows Application By Yilmaz Yoru September 21, 202 How we can define and use C++ Builder’s idle loop on Windows? How can set a method to OnIdle method of Application? What is OnIdle ? How can I detect if my application is currently idle? In C++...
  2. FireWind

    C++Builder How To Use The HandleMessage Method In Windows Applications

    How To Use The HandleMessage Method In Windows Applications By Yilmaz Yoru September 20, 2021 How can I use HandleMessage method? I have loop and I can not click to components on runtime. How can our application receive clicks on the components when I have a loop? How can I receive user inputs...
  3. FireWind

    C++Builder How To Generate A Random File Name on Windows

    How To Generate A Random File Name on Windows By Yilmaz Yoru September 17, 2021 How can I generate a random file name? Can I generate a unique temporary file? Can I generate a GUID file name? What is the GetRandomFileName method? What is the GetTempFileName method? What is the GetGUIDFileName...
  4. FireWind

    C++Builder How To Include Or Exclude Trailing Backslashes On Windows

    How To Include Or Exclude Trailing Backslashes On Windows By Yilmaz Yoru September 16, 2021 How can I add a trailing backslash to a path string? How can I remove trailing backslash from the end of path string? What is the C++ ExcludeTrailingBackslash method? What is the...
  5. FireWind

    C++Builder How To Check Characters of File Names and Paths on Windows

    How To Check Characters of File Names and Paths on Windows By Yilmaz Yoru September 15, 2021 How can I check a file name to see if it has extension or not ? How can I check whether a given file name has an extension part? How can I check whether a given file name contains only allowed...
  6. FireWind

    C++Builder How to use SameFileName method on Windows

    How to use SameFileName method on Windows By Yilmaz Yoru September 14, 2021 How can I check if two files are actually the same file? What is SameFileName method in C++? How can I compare file names based on the current Windows locale? Let’s answer these questions. C++ Builder has a lot of...
  7. FireWind

    C++Builder How to Get Disk Information in C++ on Windows?

    How to Get Disk Information in C++ on Windows? By Yilmaz Yoru September 10, 2021 How can I get disk size information in C++ Builder? How can I get disk free size information in C++ Builder? How can I calculate free percentage of a disk? Let’s answer these questions. C++ has a lot of great...
  8. FireWind

    C++Builder Boost

    Boost Boost is a set of libraries for the C++ programming language that provides support for tasks and structures such as linear algebra, pseudorandom number generation, multithreading, image processing, regular expressions, and unit testing. It contains 164 individual libraries (as of version...
  9. FireWind

    C++Builder How To Use GetTempPath Method In C++ Builder?

    How To Use GetTempPath Method In C++ Builder? By Yilmaz Yoru September 9, 2021 How can I get a GetTempPath from the operating system? How we can use GetTempPath Method in C++? How can I easily find the location of the Temp Directory? Let’s answer these questions. C++ Builder has a lot of...
  10. FireWind

    C++Builder How To Use Malloc() And Free() Functions In C/C++

    How To Use Malloc() And Free() Functions In C/C++ September 7, 2021 By Yilmaz Yoru How can we use memory in C and C++? How can I allocate something in memory? How can I manage memory dynamically? What kind of memory methods or functions are used for the Dynamic Memory Management? How can I use...
  11. FireWind

    MS Visual Studio C++ coding styles

    C++ coding styles 05/09/202 by Serguei Tarassov Unlike Java or C#, the C++ world does not have a unified coding standard. The naming convention is still the choice of programmer teams or enterprises. However, there are several standards widely used in the software industry. C++ standard...
  12. FireWind

    C++Builder The Easy Way To Create A Windows Directory In C++

    The Easy Way To Create A Windows Directory In C++ September 3, 2021 By Yilmaz Yoru How can I create a directory in C++ Builder? How can I use the directory creation method including the creation of its subfolders? How can I use System Commands to Create a Directory? Can I use the DOS command...
  13. FireWind

    C++Builder How To Use C++ To Get And Set Current Directory On Windows

    How To Use C++ To Get And Set Current Directory On Windows By Yilmaz Yoru September 2, 2021 What does “current directory” mean? In C++ Builder, how can we can get current directory? How can I use GetCurrentDir method in C++ Builder? How can I use the GetCurrentDirectory Method in C++ Builder...
  14. FireWind

    C++Builder How To Use ForceDirectories Method To Create Folders In C++

    How To Use ForceDirectories Method To Create Folders In C++ By Yilmaz Yoru September 1, 2021 ForceDirectories Method (System:SysUtils:ForceDirectories) is a SysUtils Method listed in Disk And Directory Support Routines that creates a new directory, including the creation of parent directories...
  15. FireWind

    C++Builder How To Change A File Extension On Windows Using C+

    How To Change A File Extension On Windows Using C+ By Yilmaz Yoru August 30, 2021 C++ Builder has specific Path Manipulation Routines that allows user to edit, extract, get and set drive name, directory name, file name, file extensions, .. etc and these methods are combined in Vcl.FileCtrl...
  16. FireWind

    C++Builder How To Use The Realloc() Function In C++ Programs

    How To Use The Realloc() Function In C++ Programs By Yilmaz Yoru August 26, 2021 How can we use memory in C and C++? How can I reallocate something in memory? How can I manage memory dynamically? What kind of memory methods or functions are used for the Dynamic Memory Management? How can I use...
  17. FireWind

    C++Builder Learn Encoding And Decoding Data Files By Using Bit Shifting

    Learn Encoding And Decoding Data Files By Using Bit Shifting By Yilmaz Yoru August 20, 2021 What is the fastest data encoding and decoding method ? How you can secure your data by a fastest method ? Can we use shifting to encode or decode a data ? Can we use shifting on Strings or on Binaries...
  18. FireWind

    C++Builder How To Extract The File Directory Name From A File Path In C++

    How To Extract The File Directory Name From A File Path In C++ By Yilmaz Yoru August 19, 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...
  19. FireWind

    C++Builder This Is How To Make Your Non-Rectangular Apps Draggable

    This Is How To Make Your Non-Rectangular Apps Draggable By Yilmaz Yoru August 12, 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...
  20. FireWind

    C++Builder Learn to Generate Beautiful Color Gradients in C++ Builder

    Learn to Generate Beautiful Color Gradients in C++ Builder By Yilmaz Yoru August 11, 2021 How we can generate our own color gradient as simple as possible? In this post we will explain how to use Color Gradients in Modern C++, in C++ Builder. Colors are very important in application...