comp.os.mswindows.programmer.win32
  Home FAQ Contact Sign in
comp.os.mswindows.programmer.win32 only
 
Advanced search
February 2008
motuwethfrsasuw
    123 5
45678910 6
11121314151617 7
18192021222324 8
2526272829   9
2008
 Jan   Feb   Mar   Apr 
 May   Jun   Jul   Aug 
 Sep   Oct   Nov   Dec 
2008 2007    
total
comp.os ... win32 Profile…
RELATED GROUPS

POPULAR GROUPS

more...

 Up
  Available Windows architectures ...         


Author:
Date: Feb 12, 2008 19:06

A pretty basic question, but one about which
I've been pondering ... on which CPU architecture(s)
is (say) Wondiws XP available?

Russell
2 Comments
  Up-Down control width in resource         


Author: Bob Masta
Date: Feb 12, 2008 13:51

Anyone know the secret to controlling the width of an
stand-alone (not a buddy) Up-Down control from a resource
definition? The height seems to be the only thing that changes.
I am using definitions like:

CONTROL "", IDC_MY_CTRL, "msctls_updown32", 0x0, 10, 10, 20, 20

I expected the last 2 values to control the width and
height, respectively, but the "width" value seems to
have no effect. (Tested over 10 to 40 range.)

Curiously, if I make this into a horizontal "Left-Right"
control, the sizes work as expected:

CONTROL "", IDC_MY_CTRL, "msctls_updown32", UDS_HORZ, 10, 10, 24, 12

I'd really like to keep everything in the resource. I know
I could use MoveWindow or SetWindowPos in the main
program (after messing around with dialog-to-pixel conversion).
Likewise, I presume I could do this with CreateUpDownControl and
monitoring UDN_DELTAPOS messages, but that's certainly a
lot messier than a simple resource definition... if only
it worked!

Any ideas? Thanks!
Show full article (1.21Kb)
4 Comments
  SHCreateDirectoryEx         


Author: Gary Larimer
Date: Feb 12, 2008 13:49

For fn. SHCreateDirectory(hwnd, pszPath, psa), MSDN states that the
max length of pszPath is 248 characters. Is this a mistake? I
noticed that for the fn. SHCreateDirectory(hwnd, pszPath), the str len
is specified to be no more than MAX_PATH charcters or 260 characters.
Puzzled?
1 Comment
  Another app in full-screen mode?         


Author: jeff
Date: Feb 12, 2008 11:48

The Windows Live Messenger application includes the following option:

[x] Show me as "Busy" and block my alerts when I'm running a
full-screen program or presentation settings are turned on

Does anyone know how to figure out if another app is full-screen?
Does anyone know how to access these "presentation settings"?

Thanks,

Jeff
Gibsons, B.C.
Canada
1 Comment
  IE Toolbar plugin: one instance for all tabs?         


Author: Francis
Date: Feb 12, 2008 09:19

Hello,

I am developing an Internet Explorer toolbar plugin. A problem is that
opening a new IE tab causes a new instance of the toolbar to be
created. I would like to avoid this since and use a sharing mechanism
instead.

I would like to know the recommended approach for this problem. One
solution that I am thinking of is to have a small windows application
running in the background that manages the application state. Then
each new toolbar instance would connect to it (using some sort of
IPC).

Can anyone comment on this idea or maybe suggest a alternative
approach? All feedback would be greatly appreciated.

Best regards,

Francis
4 Comments