Re: [perl-win32-gui-users] Scroll bar example

2004-01-19 Thread Glenn Linderman
On approximately 1/16/2004 8:26 AM, came the following characters from the keyboard of Stephen Pick: You must handle all scrolling yourself, as i've said a million times. I will look into MDIs when I have the time; win32::gui already seems to have an MDI object but I'm unsure of what it does.

[perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Jez White
Hi, The example below will only work on the latest code line from CVS. I'm trying to get my head round using scroll bars. In my test example I want to create a window containing one tab strip. In the tab strip there will be a child window containing a scroll bar and 10 buttons. Scrolling the

RE: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Peter Eisengrein
, 2004 7:37 AM To: Win32-GUI Subject: [perl-win32-gui-users] Scroll bar example Hi, The example below will only work on the latest code line from CVS. I'm trying to get my head round using scroll bars. In my test example I want to create a window containing one tab strip. In the tab strip

Re: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Johan Lindstrom
At 13:36 2004-01-16, Jez White wrote: Now, the scrolling part works fine - but is using a child window in this way the correct approach? For example, interacting with the child window (clicking on a button, or scrolling) loses focus (which you would expect for a normal window) but is not the

RE: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Stephen Pick
NOT mean SetParent is called on them in Win32::GUI. Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Jez White Sent: 16 January 2004 12:37 To: Win32-GUI Subject: [perl-win32-gui-users] Scroll bar example Hi, The example below will only work

Re: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Jez White
-GUI Sent: Friday, January 16, 2004 12:58 PM Subject: RE: [perl-win32-gui-users] Scroll bar example Your code is bad. What you're doing is creating a floating BorderlessWindow positioned over the top of the main window. If you want to put your window *INSIDE* the client area I suggest you do

RE: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Frazier, Joe Jr
Pick; Win32-GUI Subject: Re: [perl-win32-gui-users] Scroll bar example Thanks for all the replies/suggestions. I have to admit I'm more confused now than I was when I started:) I tried your suggestions Steve, I end up with something that works like an MDI application - which is nice

RE: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Stephen Pick
-GUI Subject: RE: [perl-win32-gui-users] Scroll bar example Stephen, that's real nice with the MDI thing. However, there are a few questions: Do you(the developer) have to control all the window positions and stuff manually For example, when I set up a second window, and maximize one using

RE: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Frazier, Joe Jr
Stephen, see comments inline: -Original Message- From: Stephen Pick [mailto:[EMAIL PROTECTED] Sent: Friday, January 16, 2004 11:26 AM To: Frazier, Joe Jr; Win32-GUI Subject: RE: [perl-win32-gui-users] Scroll bar example Whoa there, slow down... This is NOT an MDI thing

Re: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Jez White
be using all the changes that have gone into Win::32 in the last few weeks - having options at design phase is half the battle. Cheers, jez. - Original Message - From: Frazier, Joe Jr To: Stephen Pick ; Win32-GUI Sent: Friday, January 16, 2004 5:09 PM Subject: RE: [perl-win32-gui-users

Re: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Steve Pick
: Frazier, Joe Jr To: Stephen Pick ; Win32-GUI Sent: Friday, January 16, 2004 5:09 PM Subject: RE: [perl-win32-gui-users] Scroll bar example Stephen, see comments inline: -Original Message- From: Stephen Pick [mailto:[EMAIL PROTECTED] Sent: Friday, January 16, 2004 11:26 AM

Re: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Steve Pick
scrollbars to and set scroll parameters on any widget. Steve - Original Message - From: Jez White To: Stephen Pick ; Win32-GUI Sent: Friday, January 16, 2004 1:34 PM Subject: Re: [perl-win32-gui-users] Scroll bar example Thanks for all the replies/suggestions. I have to admit

Re: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Steve Pick
Sent: Friday, January 16, 2004 1:34 PM Subject: Re: [perl-win32-gui-users] Scroll bar example Thanks for all the replies/suggestions. I have to admit I'm more confused now than I was when I started:) I tried your suggestions Steve, I end up with something that works like an MDI

Re: [perl-win32-gui-users] Scroll bar example

2004-01-16 Thread Jez White
Subject: Re: [perl-win32-gui-users] Scroll bar example Oh, sorry, bugfix, line 83 add: $scrollarea-Left(0 - $scrollwindow-ScrollPos(0)); Helps if you keep tracking the scrollbar during resize :) This stops weird behaviour if you scroll then resize the window. Steve