0
votes
0answers
1 views
Win32: How to get the process/thread that owns a mutex?
I'm working an application of which only one instance must exist at any given time. There are several possibilities to accomplish this:
Check running processes for one matching our EXE's name …
1
vote
1answer
18 views
How to set toolbar button height?
When adding buttons to a toolbar (using the old Windows API) I can't seem to find a way to change the height of a button. I need to be able to increase the button's height because I'm using large …
0
votes
2answers
29 views
Notification when Windows Dialog is opened
I want to do some processing when a particular dialog is opened but I am not able to find any way to get notification when that dialog is opened.
Is there any way to get notification in application …
0
votes
1answer
44 views
Wrapper C# for kernel32.dll API
Any helper class anywhere which wrapps kernel32 APIs, with all functions-methods and structures? Or any wrapper generator?
I want ALL methods of kernel32.dll in C# like this:
…
0
votes
2answers
44 views
Parent Window creation
I know it is a very simple question but i currently cant create a parent window...
My code:
LRESULT CALLBACK WndProc( HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam )
{
static HWND paste;
static …
1
vote
1answer
23 views
Win32 multiline edit control loses carriage returns on SetWindowText()
In my C++ Win32 GUI application I have a dialog with an edit control created from a dialog template:
EDITTEXT IDC_EDIT_Id, X, Y, W, H,
ES_MULTILINE | ES_AUTOVSCROLL | ES_WANTRETURN | WS_VSCROLL
…
0
votes
2answers
31 views
C# ULONG_PTR Equivelent
Hi there,
I am having to pass a ULONG_PTR in unsafe code in C#.
I understand that the reason for ULONG_PTR is to allow for a single codebase for both 32bit and 64bit operating systems.
Is this a …
0
votes
1answer
24 views
scroll tip in list control
In Windows 7, the explorer shows a scroll tip in detailed view like this:
This image is taken from this MSDN page, but there's no information there on how to activate this for a plain list control.
…
0
votes
8answers
152 views
“I’m busy please wait” window - no buttons.
I want to pop up a window to show that a program is busy with a particular time consuming task. But I don't want any buttons on it. I just want to pop it up, do the task, then remove it. I'm not sure …
0
votes
1answer
18 views
Does WinAPI::InternetCheckConnection put a load on the server?
Our program calls InternetCheckConnection every 2 seconds to test whether the program is connected to our server.
We have around 4000 clients running our program.
Now the server response is slow, …
2
votes
4answers
63 views
How to lock pages in memory using WinAPI?
I need to prevent application's memory pages from being swapped out of RAM on Windows. Is there a WinAPI function equivalent of POSIX mlockall() to achieve that?
3
votes
5answers
148 views
How do I draw zoomed text without changing effective text width?
I have some code that does custom drawing. Basically it is form fill program that has a WYSIWYG editor. The editor allows a zoom level to be set. I am having problems with the width of my labels …
2
votes
2answers
49 views
How to find out API functions of DLL files?
Is there a way to get all the API (Export) functions from a DLL file?
I know that programs such as Depends and PE Explorer can do that but none of them retrieve the argument list.
2
votes
2answers
43 views
Behavior of WS_CLIPCHILDREN and InvalidateRect in Windows 7
To reduce flickering I create my parent windows using the WS_CLIPCHILDREN flag and I call InvalidateRect during the WM_SIZE event. This approach has worked well in Windows XP. However, I recently …
0
votes
1answer
40 views
CheckTokenMembership in VB6 - Crashing on FreeSID on Windows 7 and Windows 2008
Hello All,
I am using the CheckTokenMembership Windows API to check if the user is an Administrator.
Here's the code:
Option Explicit
Private Const SECURITY_BUILTIN_DOMAIN_RID As Long = …
