Tagged Questions

2
votes
5answers
111 views

Determine the parent process of the current app

I wrote this utility (exe) which can be called from within this host application. And I'd prefer it that the utility can only be called from the host application. Running it from the outside or a …
0
votes
4answers
127 views

Staying away from virtual memory in Windows\C++

I'm writing a performance critical application where its essential to store as much data as possible in the physical memory before dumping to disc. I can use ::GlobalMemoryStatusEx(...) and …
0
votes
4answers
112 views

How can I convert an offset in text segment of an Win32 executable into a pointer at runtime?

How can I convert an offset in text segment of an Win32 executable into a pointer at runtime? When using a disassembler, I can see the relative addresses. But how can I convert them to an absolute …
1
vote
1answer
144 views

Performance degrades when compiling with _win32_winnt=0x0501 instead of 0x400

Is anyone aware of any performance implications from changing the _win32_winnt from 0x400 to 0x0501? I am compiling C++ on VS2005. My Application is very communications oriented, doing quite a lot …
3
votes
11answers
252 views

100 kHz Timer Frequency in Windows XP

There's a popular hobby level CNC machine tool control that operates in Windows XP and it has a timer that operates at a user selectable rate ranging from 25 kHz up to 100 kHz. It just so happens …
0
votes
0answers
8 views

Gain control over already opened window.

I Am using vs10. I have the processid and the title of the window that is running. How do i do formborderstyle.none to that window. oops EDIT::::The window that i want to edit is the one that opens …
1
vote
2answers
72 views

What is fadvise/madvise equivalent on windows ?

On UNIX, I can, for example, tell the OS that the mapping will be needed in the future with posix_fadvise(POSIX_FADV_WILLNEED). It will then read-ahead the data if it feels so. How to tell the access …
0
votes
1answer
30 views

Reparent MDI child into C# panel

Hi all, I'm pretty sure you can do this, I have a 3rd party application that has a MDI child window and I need to be able to reparent it into a panel that I have in my C# app. I have tried using …
0
votes
2answers
138 views

Memory mapped files optional write possible?

When using memory-mapped files it seems it is either read-only, or write-only. By this I mean you can't: have one open for writing, and later decide not to save it have open open for reading, …
1
vote
4answers
173 views

How to detect whether a monitor is widescreen in Windows

I need a way to programatically detect whether the monitor is wide or not, in Windows. GetSystemMetrics returns the size of the desktop, which sort of works, but if an user has a widescreen monitor …
0
votes
1answer
35 views

How can I add controls to Skins in win32 API.

I have created a skin in VC++ through the win32 API. Now I want to add controls to the skins. How can this be achieved?
0
votes
1answer
38 views

Is UnregisterHotKey() important for clean up?

Simple question I think, after I have registered a few system-wide hotkeys with RegisterHotKey() do I need to eventually call UnregisterHotKey() to clean them up, or can I simply exit my application …
1
vote
2answers
1k views

Get active window text (and send more text to it)

I'm creating a small utility in C#, that will add some text to an active textbox when a global hotkey is pressed, it's a type of auto complete function. I have my global hotkey working, but now I …
2
votes
6answers
957 views

Win32 Overlapped I/O - Completion routines or WaitForMultipleObjects ?

I'm wondering which approach is faster and why ? While writing a Win32 server I have read a lot about the Completion Ports and the Overlapped I/O, but I have not read anything to suggest which set of …
0
votes
1answer
386 views

How can I initiate a Remote Assistance session in .NET?

I'm writing a help desk application and would like to allow my users to initiate a Remote Assistance session on a remote PC. This can be done via Help in Windows XP, but I haven't been able to find …

1 2 3 4 5 143 next
15 30 50 per page