Posts by Felipe Chiarotti • 153 points
6 posts
-
1
votes1
answer390
viewsQ: Installing Qt in Visual Studio
I would like to know how to install QT in visual studio 2015, I did everything, but I can not use it. Whenever I give a #include for example, it says that there is no file or directory. I’ve tried…
-
3
votes1
answer77
viewsA: Algorithm Turning Off PC Screen after Run
Problem Solved. And thanks to Luiz Vieira for guiding me, and to Bacco for helping me. The solution was to start INPUT, set it to 0: setMousePos(int posX, int posY){ INPUT Input={0} // A resolução…
-
3
votes1
answer77
viewsQ: Algorithm Turning Off PC Screen after Run
I am using windows. h in conjunction with C++, for the purpose of creating a routine through INPUT events. Such as setting the mouse position on the screen, clicking and things like that, but every…
-
0
votes0
answers55
viewsQ: Retrieve data from another process
I wonder if there is some way in C++ to take some data (value) of a process, but without using a pointer to the memory, because when I try to use the Cheat engine, until I find the dynamic address,…
-
8
votes2
answers1023
viewsQ: Get Screen Resolution C++
I am developing a system and would like to know if there is any function / library, anything, to get the screen resolution, if it is for example: 1280x720, 1920x1080, 1366x768, etc... Is there any…
c++asked Felipe Chiarotti 153 -
0
votes3
answers973
viewsA: Subcategories within their respective Category in the menu
Have you considered adding an id_cat field (example), in which the id of the parent category, is inside the table subcategories? This way, you could select by calling only the subcategories…