1. Win32lib Release
Hi,
the latest win32lib is now available from SourceForge. Go to the site below
https://sourceforge.net/projects/win32libex/
and scroll down to the "Latest File Releases" section. There are two
flavours ...
1) win32libZIP which is a normal ZIP file (318KB)
2) win32libEXE which is a self-extracting archive (404KB)
These archives contain the latest v0.50 win32lib, plus numerous demo
programs and an updated win32lib.HTML document.
In an effort to co-ordinate releases and updates, please send me your
updates and I'll integrate them (on the advice of David Cuny) into the next
release.
As I get new changes, I'll update the "bleeding edge" release package, which
will also be available from the above URL.
----- Original Message -----
From: "Cuny, David at DSS" <David.Cuny at DSS.CA.GOV>
To: <EUPHORIA at LISTSERV.MUOHIO.EDU>
Sent: Saturday, August 26, 2000 2:58 AM
Subject: Re: Re Win32lib questions
>
> Actually, I've handed the project over to the community as a whole, and
> asked Derek Parnell to adminstrate it. It's a done deal; there is
currently
> a site on SourceForge:
>
> www.sourceforge.net/projects/win32libex
>
> Derek is (I believe) currently on vacation; when he gets back, he'll be
> releasing Matt's version on the site as the 'official' release.
Actually, I've been in Sydney this week working. My company's head office is
in Melbourne (about 600 miles south of Sydney).
------
cheers,
Derek
2. Re: Win32lib Release
Derek,
I'm hoping that Wolf's option to allow setting default font for
controls/buttons will make it into next version?
Dan Moyer
Wolf sent:
----------------------------------------------
atom transColor -- ** ( around line 6223 in current Win32Libex )
-- NEW! 0.45r system font ANSI_VAR_FONT instead of SYSTEM_FONT
-- NEW! 0.45l added NullBrushID
atom DefaultFontID -- ** new ( instead of constant )
global procedure setStartupFont(integer font) ----** new procedure
DefaultFontID = c_func( xGetStockObject, { font } )
end procedure
setStartupFont(ANSI_VAR_FONT) --** sets usual 'tiny' default font
-- NEW! 0.45r system font ANSI_VAR_FONT instead of SYSTEM_FONT
-- NEW! 0.45l added NullBrushID
constant
-- null brush
NullBrushID = c_func( xGetStockObject, { NULL_BRUSH } ),
-- default font
-- ** DefaultFontID = c_func( xGetStockObject, { ANSI_VAR_FONT } ),
------------------------------------------------
This allows you to change the default font for your whole program using any
of:
OEM_FIXED_FONT, ANSI_FIXED_FONT ,
ANSI_VAR_FONT, SYSTEM_FONT, or SYSTEM_FIXED_FONT
...just by doing something like:
include win32lib.ew
setStartupFont(SYSTEM_FONT)
Wolf
-----------------------------------------------------------------
----- Original Message -----
From: "Derek Parnell" <dparnell at BIGPOND.NET.AU>
To: <EUPHORIA at LISTSERV.MUOHIO.EDU>
Sent: Friday, August 25, 2000 4:13 PM
Subject: Win32lib Release
> Hi,
> the latest win32lib is now available from SourceForge. Go to the site
below
> https://sourceforge.net/projects/win32libex/
>
> and scroll down to the "Latest File Releases" section. There are two
> flavours ...
> 1) win32libZIP which is a normal ZIP file (318KB)
> 2) win32libEXE which is a self-extracting archive (404KB)
>
> These archives contain the latest v0.50 win32lib, plus numerous demo
> programs and an updated win32lib.HTML document.
>
> In an effort to co-ordinate releases and updates, please send me your
> updates and I'll integrate them (on the advice of David Cuny) into the
next
> release.
>
> As I get new changes, I'll update the "bleeding edge" release package,
which
> will also be available from the above URL.
>
> cheers,
> Derek
3. Re: Win32lib Release
Hi,
I put up the "bleeding edge" version of win32lib on sourceforge about 10
minutes ago (11:55am, Sunday, Melbourne Time). It is a ZIP file that just
contains version 0.51 and has Wolf's function in it and the latest Matthew
Lewis changes.
----- Original Message -----
From: "Dan B Moyer" <DANMOYER at PRODIGY.NET>
To: <EUPHORIA at LISTSERV.MUOHIO.EDU>
Sent: Sunday, August 27, 2000 3:26 AM
Subject: Re: Win32lib Release
> Derek,
>
> I'm hoping that Wolf's option to allow setting default font for
> controls/buttons will make it into next version?
>
> Dan Moyer
>
>
> Wolf sent:
> ----------------------------------------------
> atom transColor -- ** ( around line 6223 in current Win32Libex )
>
> -- NEW! 0.45r system font ANSI_VAR_FONT instead of SYSTEM_FONT
> -- NEW! 0.45l added NullBrushID
>
> atom DefaultFontID -- ** new ( instead of constant )
>
> global procedure setStartupFont(integer font) ----** new procedure
> DefaultFontID = c_func( xGetStockObject, { font } )
> end procedure
> setStartupFont(ANSI_VAR_FONT) --** sets usual 'tiny' default font
>
> -- NEW! 0.45r system font ANSI_VAR_FONT instead of SYSTEM_FONT
> -- NEW! 0.45l added NullBrushID
> constant
> -- null brush
> NullBrushID = c_func( xGetStockObject, { NULL_BRUSH } ),
>
> -- default font
> -- ** DefaultFontID = c_func( xGetStockObject, { ANSI_VAR_FONT } ),
>
> ------------------------------------------------
>
> This allows you to change the default font for your whole program using
any
> of:
> OEM_FIXED_FONT, ANSI_FIXED_FONT ,
> ANSI_VAR_FONT, SYSTEM_FONT, or SYSTEM_FIXED_FONT
>
> ...just by doing something like:
> include win32lib.ew
> setStartupFont(SYSTEM_FONT)
>
> Wolf
> -----------------------------------------------------------------
>
> ----- Original Message -----
> From: "Derek Parnell" <dparnell at BIGPOND.NET.AU>
> To: <EUPHORIA at LISTSERV.MUOHIO.EDU>
> Sent: Friday, August 25, 2000 4:13 PM
> Subject: Win32lib Release
>
>
> > Hi,
> > the latest win32lib is now available from SourceForge. Go to the site
> below
> > https://sourceforge.net/projects/win32libex/
> >
> > and scroll down to the "Latest File Releases" section. There are two
> > flavours ...
> > 1) win32libZIP which is a normal ZIP file (318KB)
> > 2) win32libEXE which is a self-extracting archive (404KB)
> >
> > These archives contain the latest v0.50 win32lib, plus numerous demo
> > programs and an updated win32lib.HTML document.
> >
> > In an effort to co-ordinate releases and updates, please send me your
> > updates and I'll integrate them (on the advice of David Cuny) into the
> next
> > release.
> >
> > As I get new changes, I'll update the "bleeding edge" release package,
> which
> > will also be available from the above URL.
> >
> > cheers,
> > Derek
4. Re: Win32lib Release
Derek,
Great! Thanks.
Dan
----- Original Message -----
> Hi,
> I put up the "bleeding edge" version of win32lib on sourceforge about 10
> minutes ago (11:55am, Sunday, Melbourne Time). It is a ZIP file that just
> contains version 0.51 and has Wolf's function in it and the latest Matthew
> Lewis changes.
>
> ----- Previous Message -----
> From: "Dan B Moyer" <DANMOYER at PRODIGY.NET>
>
>
> > Derek,
> >
> > I'm hoping that Wolf's option to allow setting default font for
> > controls/buttons will make it into next version?
> >
> > Dan Moyer
> >
> >
5. Re: Win32lib Release
- Posted by wolfgang fritz <wolfritz at king.igs.net>
Aug 26, 2000
-
Last edited Aug 27, 2000
I'm almost ready to suggest that you should slow down just a little !
We barely have time to download a 400+k zip, before the next update comes
along.
The recent 'breaking' of getPrinter(), ( for 48 hours ? ), I think, should
illustrate...
Dare I suggest a 'little' more testing beforehand...
> I put up the "bleeding edge" version of win32lib on sourceforge about 10
> minutes ago
...but I'm impressed, really... all these new tools are just great !
Wolf