The Win32 API is the core set of application programming interfaces (APIs) available in the Microsoft Windows operating systems. This tag is for questions about developing native Windows applications using the Win32 API.
0
votes
1answer
40 views
How can I do that without WIN32 API?
So, here is a countdown.
My aim is the next: if you don't do anything for the given time (ent_sec) the countdown will reach 0 after a time and return with 0, BUT if you press down the letter c ...
3
votes
0answers
41 views
How to drop files onto .MAPIMail
Given some files (or shell file objects) how do i invoke the .MAPIMail registered shell extension handler with them?
The Question
i have some files on the computer:
...
1
vote
0answers
51 views
VLC Like seekbar in Win32 C
I am coding a media player in VC++ using pure Win32 API's. Everything is done so far. But for a seek bar currently I am using slider control. But the problem with slider control is that when a user ...
3
votes
2answers
48 views
How does the Windows shortcut know about renaming the file to which it refers?
How does the Windows shortcut know about renaming the file to which it refers? How to intercept the message when the file was renamed? Is there a corresponding function Win32 API for this?
2
votes
2answers
39 views
win32 main loop interval issue C++
I'm making a keylogger that logs key strokes (duh..). Now when I've implemented the basic keylogger in C++, I wanted to add a new feature to the application: I want it to mail the logs to my email. So ...
0
votes
1answer
25 views
gdi32.dll not linked to Code::Blocks?
I can't use GetStockObject in my program. Apperently I'm not linked to gdi32.dll. It's in the system32 folder so I don't see why it can't access it. I'm using Code::Blocks. I know this is a stupid ...
0
votes
2answers
32 views
CreateFileMapping and MapViewOfFile with interprocess (un)synchronized multithreaded access?
I use a Shared Memory area to get som data to a second process.
The first process uses CreateFileMapping(INVALID_HANDLE_VALUE, ..., PAGE_READWRITE, ...) and MapViewOfFile( ... FILE_MAP_WRITE).
The ...
2
votes
1answer
41 views
How network event FD_WRITE is generated when using Event Driven Sockets?
I am working on newtwork event based socket application.
When client has sent some data and there is something to be read on the socket, FD_READ network event is generated.
Now according to my ...
1
vote
1answer
29 views
fread() fails after reading complete contents of text file
I have written this code which reads contents of text file into a buffer and sends the buffer over the socket until end of file.
The code works fine and after complete file is sent to over the ...
1
vote
2answers
46 views
Read a text file line by line and save each line in the buffer irrespective of data type and length of each line
I want to read one line of the text file, save it to a buffer, send the buffer over a udp socket and then go and read the second line and so on..
So far, since I knew the data type of the text to be ...
0
votes
0answers
58 views
How can I hook backspace key correctly?
I came this convention, I want to process the backspace in special way.
so I use:
SetWindowsHookEx(WH_KEYBOARD,(HOOKPROC)LauncherHook, NULL, GetMainThreadId(id));
in my process.
but the problem ...
0
votes
1answer
67 views
Changing taskbar icon programatically (Win32,C++) [duplicate]
I have a C++ win32 program, and I'd like to edit the taskbar icon at runtime to display alerts, etc about the program, however I'm not too experienced with the win32 api, and I haven't been able to ...
1
vote
0answers
34 views
InternetReadFileEx doesn't read full HTML
My program runs through a list of 500 websites and reads and prints the bytes read and the status code. InternetReadFileEx works fine on the very first website and reads all 50,000 bytes for ...
0
votes
2answers
82 views
How to prevent a borderless Windows Form from flickering when resizing (C#)?
[C# .NET 4.0]
I'm learning C# and I'm trying to build a Windows Form using C# that has FormBorderStyle = FormBorderStyle.None and can be moved/resized using the Windows API. As an example, I'm using ...
0
votes
1answer
48 views
Wait for all child thread to finish (in C)
Code first
while(running)
{
memset(&tcp_client, 0, tcp_client_len);
FD_ZERO(&readFDs);
FD_SET(tcp_server_s, &readFDs);
tv.tv_sec = 1;
if(select(0, &readFDs, NULL, ...
0
votes
1answer
47 views
Threading in C with CreateThread()
I am very much a novice to C, and I am trying to make a program to run MIDI sequences, and basically, I have two functions, both running a different MIDI pattern, and I need them to run in parallel. ...
0
votes
1answer
40 views
Can't seem to figure out how this works [closed]
I'm trying to determine the password in this challenge code, but can't figure out how it works. Does anyone have some tips on how to go about figuring out what it does?
.text:00401000 ...
0
votes
0answers
29 views
Group desktop items via Sendmessage
is it possible to group the items of the desktop listview via sendmessage?
Or, other question, is it generally posibble to group listview items via sendmessage?
Thank you!
0
votes
1answer
25 views
The main form is frozen after finishing copying file (with a progress indicator) using CopyFileEx?
I have a main form, this form has a button clicking on which will show the copying window with a progressbar. I use a thread to do the copying job, however after finishing the copying (the file is ...
0
votes
2answers
147 views
Inline Assembly Code to Get CPU ID
I found a nice piece of code here that executes ASM instructions using API calls in order to obtain the serial number of the CPU:
using System;
using System.Text;
using ...
4
votes
0answers
18 views
Not receiving messages after sometime
I am using JNA to access User32 functions (I dont think it has got to do with Java here, more of concept problem). In my application, I have a Java process which communicates with the Canon SDK. To ...
0
votes
1answer
14 views
CreateDirectory creates folder under current directory?
I am using vs 2010 in windows.
In my program, I want to create a new directory under the current directory.
I use
TCHAR szPath[MAX_PATH];
GetModuleFileName( NULL, szPath, MAX_PATH );
And the ...
1
vote
1answer
46 views
fopen() opens the text file successfully for sometime and fails after a specific time
I am trying to send a text file at a socket after every 10ms. The code works fine and keeps on sending the text file over the socket after an interval of 10ms. But after some period of time (like ...
0
votes
1answer
21 views
Mimicking ::DialogBox() for a custom Win32 modal dialog
I have an old school Win32 modal dialog written in C++. The layout is constructed in code (not loaded from a resource) and displayed using a custom modal message loop like this:
// Spin message ...
1
vote
0answers
45 views
“Debug Assertion Failed. Expression: (_osfile(fh) & fopen)” error and Fatal Error in visual studio 2008
My following code is compiled successfully and runs perfectly for sometime handling 40 clients but after sometime, it gives an error "Debug Assertiion Failed expression: (_osfile(fh) & fopen)".
I ...
3
votes
4answers
63 views
Windows thread scheduler is unfair?
Sometimes, when I run this simple program
#include <Windows.h>
DWORD WINAPI ThreadStart(LPVOID)
{
for (;;) { }
return 0;
}
int _tmain()
{
SetPriorityClass(GetCurrentProcess(), ...
-2
votes
2answers
45 views
Why is the thread status dead?
That is the question. I called a function using a thread, but when I return to main control, main becomes in sleep status within a few moments.
Example (Look here is a line that calls a Win32API ...
1
vote
0answers
15 views
Getting hWnd for CommandButton of UserForm
I'm using Excel(2003) VBA. I have "UserForm1" with a command button, "bHide". I'm using FindWindow to get the hwnd for UserForm1. With that I'm successfully changing the window style (removing the ...
3
votes
1answer
47 views
Get remote address by SOCKET-identifier in a recv-hook
I've installed a hook on the recv-function in Ws2_32.dll. Now, when recv is called, I want to get information about who sent the information. So I tried the following to get the remote address of the ...
1
vote
1answer
38 views
Subclassing notepad’s Edit class (WINAPI)
I have set a SetWindowsHookEx on the Edit class of notepad, but I am not sure how to continue from here.
I wish to subclass the Edit class to my own procedure, then manipulate the text or just save ...
1
vote
1answer
29 views
Why WaitForMultipleObjectsEx acquires mutex during APC?
I have 5 threads (on a multicore system) that simultaneously wait for:
A mutex M to be acquired
An event E to be signaled
I'm using WaitForMultipleObjectsEx(..., TRUE, INFINITE, TRUE) since the ...
0
votes
2answers
46 views
How to receive messages using a message-only window in a console application?
I've created a simple Win32 console application that creates a hidden message-only window and waits for messages, the full code is below.
#include <iostream>
#include <Windows.h>
...
0
votes
2answers
43 views
masm assembly how to use getpixel to build a color picker
I would like to build a color picker. I have tried this code
invoke GetDC,NULL
mov esi,eax
invoke GetPixel,esi,400,400
invoke lstrcpy,string ,eax
invoke SetDlgItemText,hWin,textbox1,string
invoke ...
0
votes
1answer
19 views
Correcting live IMFMediaSource time stamps
I have two cameras, listed below, that I am trying to use in a Media Foundation topology. Here is a summary of my topology:
Webcam --> MJPG Decoder --> Custom MFT --> H264 Encoder --> MP4 File Sink
...
0
votes
2answers
45 views
C++ Win32API WM_KEYDOWN and buttons
I'm having a problem receiving message in WM_KEYDOWN. WM_KEYDOWN works just fine until I click any button in my app. From that point it no longer receives my input from the keyboard. How to fix it?
1
vote
1answer
56 views
C#/Native: Reading HDD Serial Using SCSI PassThrough
I have written three different methods that make use of native CreateFile and DeviceIoControl calls in order to retrieve the HDD Serial Number (not the Model Number). The first one uses S.M.A.R.T., ...
0
votes
1answer
34 views
Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted
My following code gives an error "Run-Time Check Failure # 2 - Stack around variable 'thread no' was corrupted." if I add a "break" inside my if statement. I have also hghlighted this "break" inside ...
0
votes
2answers
31 views
DestroyIcon after SHGetFileInfo?
I'm using SHGetFileInfo to get the icon of specific file type. The MSDN says about the SHFILEINFO:
hIcon
Type: HICON
A handle to the icon that represents the file. You are responsible
...
1
vote
0answers
13 views
Flash player not registering in Windows Core Audio API
I'm developing an application that needs to control the volume level of other processes on a Windows 7+ system. To do this I plan to make use of Windows Core Audio, in particular I am testing out the ...
3
votes
2answers
79 views
Delete HKEY_CURRENT_USER value on user log off
A windows service creates a registry value (for an Excel add-in) under HKEY_CURRENT_USER registry key for each logged on user (by calling ImpersonateLoggedOnUser() and RegSetValueEx()).
I need to ...
0
votes
2answers
37 views
Invalid/Foreign characters in value fetched from registry
I have an installer created using Installshield 2012 that depends greatly on the value of a Registry key written by some other application developed in-house.
I use RegDBGetKeyValueEx Installscript ...
0
votes
1answer
74 views
Unable to copy multiline text file to a buffer
I am trying to copy a text file to a buffer in order to send it over the socket. As soon as the text file does not have any newlines (or \n), the file is successfully copied into buffer. But, ...
0
votes
1answer
41 views
How to get the locale name for my thread?
Say, I can set the locale from my C program using _create_locale as such:
localeUS = _create_locale(LC_ALL, "English_United States.1252");
But what I need is the opposite, i.e. to retrieve the ...
0
votes
1answer
51 views
Win32api passing struct to create thread [duplicate]
i'm trying to get this struct into my thread, however i'm getting trash in it.
struct i'm using:
typedef struct {
HWND hWnd;
int cntrlid;
TCHAR text[BUFF];
}parametros;
in the message ...
0
votes
1answer
52 views
CreateCompatibleBitmap() returns black HBITMAP
Hello Stack Overflow users. It seems that I am not using CreateCompatibleBitmap() properly in the following code:
#include <windows.h>
using namespace std;
int main() {HDC ...
0
votes
1answer
110 views
READ VersionInfo from file with a TFileStream
I need to read the VersionInfo from a file (exe or dll) using a TSream.
I cannot use the windows API GetFileVersionInfo, because my file is at memory (TMemoryStream) and I don't want to write the ...
0
votes
1answer
21 views
Having HWND handle to given control which is a button how to check it's style/type?
I mean these styles: http://msdn.microsoft.com/en-us/library/bb775951(VS.85).aspx
Is GetWindowLong(hWnd, GWL_STYLE) the right way ?
-1
votes
1answer
35 views
How to create directory in c++ and make it share and writable for everyone?
I need to create a directory in my vc++ application (which will store the ftpd backup files) and i need to give EVERYONE full access permissions so that a process from other remote system can refer to ...
0
votes
0answers
47 views
How can i add registry key with c++ on HKEY_LOCAL_MACHINE [duplicate]
i try add a key in HKEY_LOCAL_MACHINE but everything work without any problems and didn`t add my key but when i change HKEY_LOCAL_MACHINE to HKEY_CURRENT_USER, the code works fine and added my key in ...
1
vote
2answers
94 views
Resizing character array in c
A MFC coder want to learn some basic about character array intialisation and deletion of element.Take following examples compare with MFC (there is CString so no need of memory allocation or de ...




