>this release of Win32::GUI introduces many bug fix
>and new features the most important being:
>
>New :
>
>  - add Hook/UnHook methods
>  - new DateTime styles and methods
>  - new RichEdit methods

I'm assuming the documentation has been updated to mention the
new methods, etc.? Also, this has been bugging me for a while,
but due to my own lack of time, I've yet to research the
equivalent:

  Win32::GUI: the -style option is deprecated!
  Win32::GUI: the -style option is deprecated!
  Win32::GUI: the -exstyle option is deprecated!

The last error correlates to a RichEdit control - removing the -exstyle had no adverse affects, so I just left it as is. The other two are related to a bitmap and richedit:

   # create our pretty logo.
   $window->AddLabel( -text    => "",
                      -name    => "Bitmap",
                      -left    => -34,
                      -top     => -3,
                      -width   => 505,
                      -height  => 116,
                      -style   => 14,
                      -visible => 1,

                    );


   # create the log box which is gonna hold all our info.
   $logbox = $window->AddRichEdit( -name    =>
         "AmphetaDesk::OS::Windows::_RichEdit",
                    -font    => $font,
                    -top     => 116,
                    -left    => 0,
                    -width   => 505,
                    -height  => 240,
                    -tabstop => 1,
                    -style   => WS_CHILD | WS_VISIBLE | ES_LEFT |
                                ES_MULTILINE | ES_AUTOVSCROLL |
                                WS_VSCROLL | ES_READONLY,
                    -exstyle => WS_EX_CLIENTEDGE
   );

Removing the style, at least on the AddLabel, totally breaks my bitmap image. I've yet to fiddle with the -style on the RichEdit. What should those be changed too?

>  - Fix DoEvents double events
>  - Fix PeekMessage warm message

Rocking. Those both annoyed me... ;)


--
Morbus Iff ( i put the demon back in codemonkey )
Culture: http://www.disobey.com/ and http://www.gamegrene.com/
Spidering Hacks: http://amazon.com/exec/obidos/ASIN/0596005776/disobeycom
icq: 2927491 / aim: akaMorbus / yahoo: morbus_iff / jabber.org: morbus


Reply via email to