c++

  1. FireWind

    C++Builder This Is How To Visualize Kinematics In Windows C++ Apps

    This Is How To Visualize Kinematics In Windows C++ Apps By Yilmaz Yoru November 18, 2021 What is kinematics? How can we use kinematics in programming? How can we draw kinematic drawings in C++? How can we simulate kinematic animations in C++ Builder? Let’s answer these questions. What does...
  2. FireWind

    C++Builder How To Set Runtime Process Priority On Windows In A C++ App

    How To Set Runtime Process Priority On Windows In A C++ App By Yilmaz Yoru November 11, 2021 How I can set runtime process priority on my Windows C++ application? Can I change the process priority level on runtime? May I apply specific process priorities in different actions? How can use full...
  3. FireWind

    C++Builder What Is An Identity Activation Function in Neural Networks?

    What Is An Identity Activation Function in Neural Networks? By Yilmaz Yoru November 10, 2021 Do you want to learn what is simplest activation function in neural networks? What is an Identity Function? What do we need to know about Activation Functions and Transfer Functions as an AI term? Is...
  4. FireWind

    C++Builder How To Use Smart Pointers For Dynamic C++ Memory Management

    How To Use Smart Pointers For Dynamic C++ Memory Management By Yilmaz Yoru November 4, 2021 In computers, all data and operations during runtime is stored in the memory of our computers, IoTs, or in other microdevices. This memory is generally a RAM (Random Access Memory) that allows data...
  5. FireWind

    C++Builder How To Define Vectors In Modern C++ On Windows

    How To Define Vectors In Modern C++ On Windows By Yilmaz Yoru November 1, 2021 What are the Vectors in C++? How can we use std::vector? How can I define vector in different data types? Can I define structs or other datatypes in std::vector? Let’s answer these questions. Arrays and structs in...
  6. FireWind

    C++Builder How To Create And Add Icon Images To Windows Apps

    How To Create And Add Icon Images To Windows Apps By Yilmaz Yoru October 28, 2021 An icon in digital world is a pictogram or ideogram displayed on a computer screen in order to help the user navigate a computer system. The icon itself is a quickly comprehensible symbol of a software tool...
  7. FireWind

    C++Builder How To Create App Splash Screens For Android And iOS In C++

    How To Create App Splash Screens For Android And iOS In C++ By Yilmaz Yoru October 27, 2021 A Splash Screen is a graphical control element consisting of a window containing an image or a logo and sometimes includes the details about the current version number of the software and components...
  8. FireWind

    C++Builder How To Use C++ front() And back() Methods Of Vectors

    How To Use C++ front() And back() Methods Of Vectors By Yilmaz Yoru October 20, 2021 What are the Vectors in C++? How can I use front() iterator method on vectors? How can I use back() iterator method on vectors? Can I get the last member of a vector by using back() method? How can I access to...
  9. FireWind

    C++Builder How To Delete A File On Windows In C++ Builder

    How To Delete A File On Windows In C++ Builder By Yilmaz Yoru October 14, 2021 How can I delete a file in C++ Builder? How can I use DeleteFile method in C++ Builder? Let’s answer these questions. C++ has a lot of great libraries to operate on every case, on every item. We can create or...
  10. FireWind

    C++Builder How To Add C++ Vector Members on Windows

    How To Add C++ Vector Members on Windows By Yilmaz Yoru October 11, 2021 What are the Vectors in C++? How can I add a new member to std::vector? How can I delete a vector member in C++? How can we use push_back() method in vectors? How can we use pop_back() method in vectors? How can we use...
  11. FireWind

    Delphi Everything You Need To Know About C++ Data Bindings

    Everything You Need To Know About C++ Data Bindings By Yilmaz Yoru October 4, 2021 What are LiveBindings? How can I create LiveBindings in C++ Builder applications? How can I use LiveBindings in applications? What are the LiveBindings Visual Components? Are there any official LiveBindings...
  12. FireWind

    C++Builder How To Get Windows Environment Variables In C++ Builder

    How To Get Windows Environment Variables In C++ Builder By Yilmaz Yoru October 1, 2021 C++ Builder has a lot of specific methods in its SysUtils library that is included in VCL and FMX libraries. Some of these are grouped as Path Manipulation Routines which allow users to edit, extract, get...
  13. FireWind

    C++Builder How To Understand File And Folder Paths In Programming

    How To Understand File And Folder Paths In Programming By Yilmaz Yoru September 30, 2021 What is difference between the Dir, Directory and the Folder terms? What is a Drive? What is a Directory? What is a Path? What does Full Path mean? What does Absolute Path mean? What is the Current Path...
  14. FireWind

    C++Builder How to Use GetHomePath Method in C++ Builder

    How to Use GetHomePath Method in C++ Builder By Yilmaz Yoru September 29, 2021 How can I get Home Path of the System. How we can use GetHomePath Method in C++? How can I easily find the location of Roaming Directory? Let’s answer these questions. C++ Builder has a lot of specific methods in...
  15. FireWind

    C++Builder How To Check If A Directory On Windows Is Empty In C++?

    How To Check If A Directory On Windows Is Empty In C++? By Yilmaz Yoru September 28, 2021 How can I check if a Directory on Windows is Empty or Not? How can I use IsEmpty() Method on Directories? Let’s answer these questions. C++ has a lot of great libraries to operate on every case, on every...
  16. FireWind

    C++Builder 5 Simple Ways To Optimize C++ Arithmetic Operations

    5 Simple Ways To Optimize C++ Arithmetic Operations By Yilmaz Yoru September 27, 2021 What is optimization in arithmetic operations? How can I optimize my equations or functions? Which arithmetic operation is faster than another one? Where should I optimize? Optimization is one of the...
  17. FireWind

    C++Builder How To Include And Exclude Path Delimiters On Windows

    How To Include And Exclude Path Delimiters On Windows By Yilmaz Yoru September 24, 2021 How can I add path delimiter to a path string? How can I remove path delimiter from the end of path string? What is the C++ ExcludeTrailingPathDelimiter? What is IncludeTrailingPathDelimiter method? What is...
  18. FireWind

    C++Builder How To Use ProcessMessages Method In Windows Applications

    How To Use ProcessMessages Method In Windows Applications By Yilmaz Yoru September 23, 2021 How can I use ProcessMessages method? What about if I have loop and the app’s GUI becomes unresponsive at runtime while the loop is running? How can I receive clicks on the components when I have a...
  19. FireWind

    C++Builder How To Set And Print Vector Members On Windows

    How To Set And Print Vector Members On Windows By Yilmaz Yoru September 22, 2021 What are the Vectors in C++? How can we define std::vector? How can I print a vectormember? How can I change the number of vectors? How can I use resize() method with vectors? How can I iterate a vector in for...
  20. 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, 2021 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++...