Hiya Jez, On the subject of adding missing options...
The other night you were also adding the toolbar to the rebar... Prior to the NEW builds that have been done lately, the tooltips did not work on the buttons that were added to a toolbar... have you played with this lately? and know if they are now working? $tlbResultWin = $ResultWindow->AddToolbar( -name => "tlbResultWin", -left => 0, -top => 0, -width => 800, -height => 80, ); $imgResultWinTB = new Win32::GUI::Bitmap("./Images/restools.bmp"); $tlbResultWin->SetBitmapSize(18, 18); $tlbResultWin->AddBitmap($imgResultWinTB, 12); $tlbResultWin->AddButtons( 12, 0, 1, 4, 0, 0, 1, 2, 4, 0, 1, 2, 3, 4, 0, 2, 3, 4, 4, 0, 3, 4, 5, 4, 1, 4, 5, 6, 4, 0, 5, 6, 7, 4, 0, 6, 7, 8, 4, 1, 7, 8, 9, 4, 0, 8, 9, 10, 4, 0, 9, 10, 11, 4, 1, 10, 11, 12, 4, 0, 11, ); Chris -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jez White Sent: Monday, 19 January 2004 6:05 PM To: Stephen Pick; Win32-GUI Subject: Re: [perl-win32-gui-users] Rebar take 3 Steve, No problem - I still don't know what some of the options do - or are supposed to do, but I'll document what I can. It's a start at least:) Cheers, jez. ----- Original Message ----- From: Stephen Pick To: Jez White ; Win32-GUI Sent: Monday, January 19, 2004 10:00 AM Subject: RE: [perl-win32-gui-users] Rebar take 3 Hi Jez, I'm in the process of adding all the missing documentation in Win32::GUI. I've documented well over 50 methods that were previously undocumented. If you find any quirks in the Rebar or would like to document some bits of it for me, that would be very helpful, since I've never attempted to use it I'm not the best person to document it. Steve -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jez White Sent: 19 January 2004 09:55 To: Win32-GUI Subject: [perl-win32-gui-users] Rebar take 3 Hi, For those who don't know what a rebar (sometimes called "coolbar") control is: It's basically like a tool bar that allows you to create bands where you can attach other controls or child windows. You can move these bands around. Rebar controls are used in a lot of applications, such as word processors where you might have the current style or font in a dropdowns in the "tool bar". http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/pla tform/commctls/rebar/rebar.asp The rebar control is badly documented in win32::gui, and has various methods/functions missing and I suspect a couple of bugs - but the control works quite well. The example below, contains a rebar control with three bands. Two of the bands contain a child window. Each child window contains several controls (dropdowns, datetime and buttons). With the Steve's scroll bar example of a few days ago I have changed the way child windows are created, so they now act correctly (they do not take focus away from the main window). I assume that this is the correct approach? In the next couple of days I'll try and find out what methods/functions/events are missing, as well as identify any bugs and create the relevant tracker items. I would be grateful for feed back on this example. Cheers, jez.