Tagged Questions

0
votes
1answer
33 views

Save HICON as a png

I am using IShellItemImageFactory to extract the icon for a file. I was able successfully extract it and show it in a dialog using SendDlgItemMessage(hDlg,IDC_STATIC2, STM_SETIMAGE, IMAGE_ICON, …
2
votes
3answers
161 views

Why don’t win32 API functions have overloads and instead use Ex as suffix?

The win32 API has for example two methods StrFormatByteSize and StrFormatByteSizeEx. Even though both the methods symantically do the same thing and the Ex counter part only offers a new parameter to …
0
votes
1answer
17 views

Does anyone know of a VB(A/6) example using LocaleInfoEx?

I thought I dug most of what I need out of the header files, but I keep crashing out.
1
vote
2answers
42 views

Global hotkey with WIN32 API?

I've been able to set local hotkeys like this RegisterHotKey(hwndDlg, 100, MOD_ALT | MOD_CONTROL, 'S'); how can I set the hotkey to be global?( I want it to be there even when my window is hidden) …
0
votes
3answers
53 views

Ensuring a file is flushed when file created in external process (Win32)

Hi all, Windows Win32 C++ question about flushing file activity to disk. I have an external application (ran using CreateProcess) which does some file creation. i.e., when it returns it will have …
0
votes
1answer
55 views

Sorting a listview (Win32/C++)

I'm trying to sort a listview when the user clicks on the column header. I am catching the LVN_COLUMNCLICK notification like so: case LVN_COLUMNCLICK: { NMLISTVIEW* pListView = …
0
votes
3answers
81 views

Creating custom message types in win32?

Is there a way to define and send custom message types in Win32, to be caught by your Main message handler? For example, my main message handler captures messages such as WM_PAINT, WM_RESIZE, …
1
vote
2answers
56 views

setCurrentDrive? c++ win32

hello how can I set the current drive in c++? this is how I set the directory but i'm unable to change the drive like this(duh) but I cant find anything on the msdn site... anybody know this? …
0
votes
1answer
18 views

Get process argument info in windows with python/pywin32?

In linux, I know with 'ps' you can get the arguments that a command was run with. I need the equivalent in windows Right now in python I'm doing Process[i] = subprocess.Popen(cmd + " --daemon …
-1
votes
1answer
35 views

Download an Image file from web server using VC++ 9.0

I want to code a VC++ 9 based console application which downloads an image from a webserver. I have code which used to run in VC++ 6, but its giving lot of compilation errors in VC++ 9.0. I need …
1
vote
5answers
234 views

How to draw text on the desktop in Windows ?

How Would I go about placing text on the windows desktop? I've been told that GetDesktopWindow() is what I need but I need an example.
0
votes
1answer
16 views

Windows 7 and SPI_GETSCREENSAVERSECURE

I'm having a problem with the SystemParametersInfo API in C#. I have no problem getting the screensaver timeout, but when I try to get the state of the "On resume display logon screen" checkbox I …
0
votes
1answer
66 views

Never ending Win32 Message loop [closed]

I have the following code: MSG mssg; // run till completed while (true) { // is there a message to process? while(PeekMessage( &mssg, NULL, 0, 0, PM_REMOVE)) { // dispatch the message …
0
votes
1answer
25 views

Help ctypes.windll.dnsapi.DnsQuery_A

Hi, I have trouble with DnsQuery API, the *ppQueryResultsSet parameter troubles me. Can anyone show me an example of how to make correct DLL calls in python? import ctypes from ctypes import …
11
votes
13answers
413 views

Win32.: How to scrape HTML without regular expressions?

A recent blog entry by a Jeff Atwood says that you should never parse HTML using regular expressions - yet doesn't give an alternative. i want to scrape search search results, extracting values: …

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