1. Win32Lib 0.45k
- Posted by David Cuny <dcuny at LANSET.COM>
Jan 12, 2000
-
Last edited Jan 13, 2000
Another bleeding edge release, at:
http://www.lanset.com/dcuny/win32.htm
A couple new features, a couple hacks to temporarily fix bugs that cropped
up.
Thanks!
-- David Cuny
2. Re: Win32Lib 0.45k
David,
In version winlib version k, not only is the 'run' window in IDE BLACK but
the EXnn.exw windows are all black also. Is this a new 'feature'
Judith Evans
3. Re: Win32Lib 0.45k
Judith Evans wrote:
> In version winlib version k, not only
> is the 'run' window in IDE BLACK but
> the EXnn.exw windows are all black also.
> Is this a new 'feature'
Yes, it is. The constant WindowColor determines the default color of the
window. It's currently set to COLOR_APPSWORKSPACE. I may make the default
COLOR_BTNFACE instead, though.
-- David Cuny
4. Re: Win32Lib 0.45k
On Thu, 13 Jan 2000 10:11:12 -0800, Cuny, David wrote:
>Yes, it is. The constant WindowColor determines the default color of the
>window. It's currently set to COLOR_APPSWORKSPACE. I may make the default
>COLOR_BTNFACE instead, though.
FWIW, my vote is for COLOR_BTNFACE as default.
Thanx,
Brian
5. Re: Win32Lib 0.45k
On Thu, 13 Jan 2000 13:37:56 -0500, Brian Broker <bkb at CNW.COM> wrote:
>On Thu, 13 Jan 2000 10:11:12 -0800, Cuny, David wrote:
>
>>Yes, it is. The constant WindowColor determines the default color of the
>>window. It's currently set to COLOR_APPSWORKSPACE. I may make the default
>>COLOR_BTNFACE instead, though.
>
>FWIW, my vote is for COLOR_BTNFACE as default.
>Thanx,
>Brian
I also vote in favour of COLOR_BTNFACE.
Brian Jackson
6. Re: Win32Lib 0.45k
Brians wrote:
> ... COLOR_BTNFACE as default.
It's a plan, then.
-- David Cuny
7. Re: Win32Lib 0.45k
David,
I vote for button color also. I would forget to change my pen color on
wPuts and wPrint from black to something else and get black on black which
is rather hard to read and wonder where my program was misbehaving.
Judith Evans
8. Re: Win32Lib 0.45k
David,
Seeing as how you're in such a giving mood today, could you add the
following enums into win32lib?
ES_LOWERCASE = #00000010
ES_NOHIDESEL = #00000100
ES_NUMBER = #00002000
ES_OEMCONVERT = #00000400
ES_PASSWORD = #00000020
ES_READONLY = #00000800
ES_UPPERCASE = #00000008
ES_WANTRETURN = #00001000
Thanks in advance,
Brian