1. Win32 Question
- Posted by The AfterBeat <afterbeat at GEOCITIES.COM>
Mar 11, 1999
-
Last edited Mar 12, 1999
Does anyone know the values for the ICON_BIG and ICON_SMALL constants?
I need them for the WM_SETICON and WM_GETICON messages.
Thanks,
Austin Cathey (aka The AfterBeat)
2. Re: Win32 Question
- Posted by Jan & Gerald Harvey <vk2bnh at IX.NET.AU>
Mar 12, 1999
-
Last edited Mar 13, 1999
Subject: Win32 Question
Date: Thu, 11 Mar 1999 21:41:10 -0800
From: The AfterBeat <afterbeat at GEOCITIES.COM>
The AfterBeat <afterbeat at GEOCITIES.COM wrote:
> Does anyone know the values for the ICON_BIG and ICON_SMALL constants?
> I need them for the WM_SETICON and WM_GETICON messages.
>
> Thanks,
>
> Austin Cathey (aka The AfterBeat)
>
Try looking in win32lib.ew itself. There are all the values. Just search
for ICON_BIG and ICON_SMALL.
Neil Harvey
3. Re: Win32 Question
- Posted by Daniel Berstein <daber at PAIR.COM>
Mar 12, 1999
-
Last edited Mar 13, 1999
At 01:41 AM 12-03-1999 , you wrote:
>Does anyone know the values for the ICON_BIG and ICON_SMALL constants?
>I need them for the WM_SETICON and WM_GETICON messages.
>
>Thanks,
>
> Austin Cathey (aka The AfterBeat)
{ WM_SETICON / WM_GETICON Type Codes }
ICON_SMALL = 0;
ICON_BIG = 1;
Regards,
Daniel Berstein
[daber at pair.com]