In this tutorial I’ll try to cover all the actions, to work with system string type (most commonly faced in GUI programming), to make it work with C++ and your functions. In this article you will find out: System String to string System String to integer/float So lets start with first one, Converting System String Full Article…
Find your piece of code
Viewing 1 to 4 of 4 items
Using blocking socket connection in C++ (server & client)
In this tutorial I am going to teach you how to use blocking socket connection in C++. When you run function, the program “blocks” until the operation is complete. For example, when you call function to connect, control isn’t returned to your program until someone connects or an error occurs. The same is with sending and recieving Full Article…
How to connect MySQL and C++
If you want to empower your C++ app’s with powerfull database system MySQL this tutorial is for you. By default it’s not so easy and requires some additional files, libraries and actions to make it happen. This guide is written for Visual Studio IDE. So here is step by step guide how to connect MySQL database with C++. Full Article…