My intention is that you can not run a certain application (prueba.exe) on a computer with windows.
That equipment is usually always on and with my program running, and with the screen locked, so other users can enter.
The application checks the...
I have the doubt to know if the event Close of a MessageBox can be captured.
Clearly the application runs on windows
CODE:
MessageBox(0,"Title","description",1);
Now it's working, that is, it jumps a MessageBox on...
I'm trying to create and use a pointer to a string and join it with another reserved string pointer with malloc , but I always get this error message:
This is the code:
int wmain(int argc, WCHAR *argv[])
{
LPWSTR str1 = L"So...
I need to do a program in c to copy the content of a file in another file. I'm using HANDLE objects to open the source and destination file and I'm using DWORD to read the content. The code is as follows
HANDLE hIn = CreateFile...
Good morning, I want my code to be able to play one song after another, I managed to do it with "wait", but the problem is that I do not want to "freeze" the program while it is running the mp3, but it is available for the other functions like "...
Good morning, I would like to know how to use double linked lists in Winapi, more specifically, where to initialize the list? and within the CALLBACK, how to use the list? (or simply by declaring it in the right place can it be used without prob...
On the official Microsoft documentation the function RegSetValueEx of the Windows API is defined as follows:
LONG WINAPI RegSetValueEx(
_In_ HKEY hKey,
_In_opt_ LPCTSTR lpValueName,
_Reserved_ DWOR...
I'm making an application in c, in windows, with mingw.
Currently just write on the screen (in a console) something, and what I want is to dispense with console and print things in a simple window with a memo field and go writing things in that...
Cordial greetings colleagues, it turns out that I am developing an MFC Dll C ++, which contains a script with certain functions and I have a dialog box created, since I need that from this dialog box, the user can by keyboard enter values to a v...