What to learn in order to compose an app for manage an equipment?
I have a x-ray equipment that consists of 3 parts.
Update USB WiFi device driver
Device is detected under Device Manager under Other devices
as 802.11ac NIC
device. I need to automate driver update in same way as it can be done with Device Manager ‘Update Driver Software – 802.11ac NIC’ -> ‘Browse my computer for driver software’ wizard. What API can be used?
Developing a windows application as a beginner
I am a beginner in software developing (like no knowledge at all) and I want to develop a windows application for managing a store. I want it to help tracking sales, managing stock, and other features that are used for managing a store in general.
Uninitialized static variable is not being stored to bss segment
#include <stdio.h> static int test; int main () { return 0; } and after i compiled the file and check the size of bss segment nothing changed. here’s the ouput of the terminal after i check the bss segment size before adding the uninitialized static variable C:UsersUserDocumentsProgrammingC>size a.exe text data bss dec hex filename 14584 […]
How capture mouse clicks or keybooad key presses in C++
I looked in several places but couldn’t find it out, or if I found something code doesn’t seem to work properly. Like the code below for example (I don’t have much idea what it does, cause I don’t know the cpp language)
Reassigning stderr handle to parent handle doesn’t seem to work
I have a simple program that uses FreeConsole()
and AllocConsole()
to run in a separate console window. I want to redirect the new console’s stderr
to the parent console, but this code still prints stderr
messages to the new console window.
How to identify which process hooks into a keybinding?
For some reason Alt+R does not work on my system as keybinding at all. I am sure it did use to work. I am wondering if there is an API on windows that can tell me which processes are hooking into keybindings, because in the past it was GeForce Experience, but now some other process seems to intercept the keybinding.
How to get the allocated memory of a process?
I want to get the allocated memory of a process.
Because I want to kill it if it uses too much memory.
How to get the allocated memory of a process? (C++, Windows)
I want to get the allocated memory of a process.
Because I want to kill it if it uses too much memory.
c++ and IStream.Read()
I am trying to capture the screen,then transfer it to byte stream, in order to send it to the network.
But the stream->Read()
doesn’t work.The once_read always 0, and the there is not data on buf. I don’t konw if there are better ways to do this.