Posts by Draek • 133 points
8 posts
-
0
votes1
answer693
viewsQ: Load JPG image and show in window
How should I proceed to load an image in jpg format from a directory and then show in the following window? int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int…
-
1
votes2
answers117
viewsQ: Transfer all files from a directory
I have an application that transferred files via socket, but one at a time. I need this application to transfer an entire directory. I must provide a directory, EX: "c: users PASTA_DOWNLOAD Server"…
-
0
votes1
answer530
viewsQ: Send and Receive data via Socket
I am beginner in socket, I would like to know what is the best way to send and receive data. I would like a better explanation about how it works.
-
0
votes1
answer121
viewsQ: Conversion of STRING, Writeprocessmemory()
I have the following situation, the user must enter a memory address: (I’m using this method, may not be correct for the following situation) std::string TEMP_MEMORY_ADDRESS; std::string…
-
1
votes1
answer79
viewsQ: Passing address to Writeprocessmemory
I’m trying to pass a memory address to WriteProcessMemory(), only that this address should be typed by the user, I am in doubt of how I can do this, I tried with strings, wstring, did not succeed.…
-
1
votes0
answers102
viewsQ: Screen Capture, decrease bitmap file size
One of the functions of the project that I am working makes the capture of the user screen, however the bitmap file is getting too big, from 6MB to 8MB, It is bad to be able to send via socket or…
-
2
votes2
answers975
viewsQ: How to get the directory the program is running?
I have an application running on the Windows platform. In one of my methods I need to capture the directory where the application is running, which is the correct way to do this?
-
8
votes2
answers1854
viewsQ: Capture Computer and User name
I am developing an application and in one of its methods accurate capture the name of the computer and the user logged into the machine, then present on screen to the user. What’s the best way to do…