0
votes
1answer
12 views
Flip-3D on WinXP and taking layered screenshot
Hello guys, I have two questions but somehow related:
How to implement flip 3d without Aero APIs on Windows XP?
Have you guys seen this awesome app on Mac? http://layersapp.com Is there any …
1
vote
1answer
57 views
Why does this program *NEED* MsgBox?
Long story short: I'm trying to write an app that'll dump IE's history to a text file. Because I am lazy, I went searching for a preexisting library and found this beautiful project to build from: …
1
vote
1answer
35 views
How do I prevent my Win32 process starting on WOW64?
I've got a Win32 process that is compiled and packaged in both 32-bit (x86) and 64-bit (x64) variants. I'd like the x86 variant to refuse to run on a 64-bit version of Windows (i.e. WOW64).
Is there …
0
votes
1answer
26 views
Finding WndProc Address
How can I find the address of a WndProc (of a window of another process). Even if I inject a DLL and try to find it with either GetClassInfoEx() or GetWindowLong() or GetWindowLongPtr() I always get …
1
vote
3answers
28 views
is there any way to draw a png image on window without using MFC
Dear All,
I am developing a win32 application without using MFC.
I am using standard windows libraries.
Please let me know how to draw png image on a window.
help me with some sample code
I have …
0
votes
2answers
41 views
How to call win32 CreateMutex from .Net
Hello,
I've been successfully creating a .net mutex like this:
SingleIns = new Mutex(true, AppName);
for a while. It works in XP, Vista, but apparently not in Windows7. So I need to make an interop …
0
votes
3answers
81 views
Why not call FreeLibrary from entry point function?
I'm writing a DLL that needs to call a separated DLL dynamically multiple times. I would like to keep the callee loaded and then just unload it when my DLL is unloaded. But according to Microsoft, …
2
votes
5answers
72 views
All users path?
In C# I can do the following:
DirectoryInfo di = new DirectoryInfo(System.Environment.GetEnvironmentVariable("ALLUSERSPROFILE"));
Which will get me the path to the all users profile.
In C++ I can …
0
votes
1answer
19 views
EnumDisplaySettings reports wrong values on Win7 with Nvidia cards
I've been encountering a problem when trying to query all available resolutions on some nvidia cards under
Win7.
for(int i = 0; EnumDisplaySettings( deviceName.c_str(), i, &dm) != 0; ++i)
…
0
votes
6answers
74 views
How can I use Perl to start a Win32 program and redirect its output to stdout?
I have a cross-platform Perl program that starts a win32 windows program on win, and a macosx appliaction on the mac.
I use system(), which on the mac makes the stdout of the invoked program, be …
0
votes
5answers
150 views
Closing a secondary delphi form causes the main form to lose focus
When showing a secondary form from the main form and from the second form showing a third form and then closing both forms will cause the main form to lose focus.
Using Delphi 2009 with XP SP3
Here …
0
votes
1answer
40 views
How may a Window be “pinned” to the desktop surface?
This question is more academic than practical and doesn't involve any one specific language. For the sake of discussion, we'll use Win32 API.
What is the most appropriate way to create a window with …
0
votes
1answer
19 views
What is comming in IDataObject?
When you implement IDropTarget you must implement this:
virtual HRESULT STDMETHODCALLTYPE Drop(
/* [unique][in] */ __RPC__in_opt IDataObject *pDataObj,
/* [in] */ DWORD …
0
votes
3answers
54 views
Is there a way to embed windows save dialog
The subject has it all. I want to have the Windows save as dialog as part of my own dialog. Is that even possible ?
1
vote
2answers
25 views
how to hook control closing in an MFC custom control class
I am interested in allocating pointers, storing those in the LPARAM data of a comboboxex control, and making that control responsible for deleting those pointers when it is destroyed.
Since I am …
