Re: [perl-win32-gui-users] Win32::GUI::Timer memory leak?

2001-06-01 Thread Aldo Calpini
Peter Eisengrein wrote: > Is there a known memory problem with the GUI module and/or the Timer object? > I have a script that runs through a _Timer sub once per second and > increments a var (like $count++) and writes it to a Label. Just sitting > there quietly doing nothing more than that adds 4k

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Frazier, Joe Jr
Not sure how this would work otherwise, but I did this on may machine and it worked. `start iexplore.exe http://www.activestate.com` use backticks to call the "start" command in the command shell, then pass an explicite exe name followed by the arguments. I tried it without the iexplore.exe an

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Morbus Iff
>`start iexplore.exe http://www.activestate.com` >use backticks to call the "start" command in the command shell, then >pass an explicite exe name followed by the arguments. I tried it >without the iexplore.exe and it only opened the window. I believe this >is something that is wrong my machine s

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Frazier, Joe Jr
Yea, I know, but I thought that DOS commands which were part of the shell would not work in Perl since they are not true executables. Perhaps I am thinking of older versions of Perl. It has been a LONG time since I had to shell out to get something done... Anyway, If you REALLY need to get th

RE: [perl-win32-gui-users] Window Size Controls & Miscellany ?'s

2001-06-01 Thread Frazier, Joe Jr
> -Original Message- > From: Forhan, Michael [mailto:[EMAIL PROTECTED] > Sent: Thursday, May 31, 2001 14:29 > To: 'perl-win32-gui-users@lists.sourceforge.net' > Subject: [perl-win32-gui-users] Window Size Controls & Miscellany ?'s > Second, I was wondering if any further strides have bee

RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak?

2001-06-01 Thread Peter Eisengrein
> yes, there was a memory leak but it should have been fixed is > one of the > last releases. which version of Win32::GUI are you using right now? 0.0.502 -- I actually just pulled it off your site maybe two weeks ago. Is there an even newer version? Thanks for your help -- I love this module!

Re: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Morbus Iff
>| Well, then you just take the best of both ... first, you open a new >| window and then you do what you did before. I pretty sure that the >| ShellExecute will target this new browser. At least, when I click a link That was so blatantly obvious that I'm hiding in a corner for not seeing it mys

Re: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Morbus Iff
>>| Well, then you just take the best of both ... first, you open a new >>| window and then you do what you did before. I pretty sure that the >>| ShellExecute will target this new browser. At least, when I click a link > >That was so blatantly obvious that I'm hiding in a corner for not seeing it

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Frazier, Joe Jr
> -Original Message- > From: Morbus Iff [mailto:[EMAIL PROTECTED] > Sent: Friday, June 01, 2001 10:50 > To: perl-win32-gui-users@lists.sourceforge.net > Subject: Re: [perl-win32-gui-users] Opening a *New* Browser Window? > > > >>| Well, then you just take the best of both ... first, you

RE: [perl-win32-gui-users] Opening a *New* Browser Window?

2001-06-01 Thread Frazier, Joe Jr
> -Original Message- > From: Frazier, Joe Jr > Sent: Friday, June 01, 2001 11:35 > To: 'perl-win32-gui-users@lists.sourceforge.net' > Subject: RE: [perl-win32-gui-users] Opening a *New* Browser Window? > > > > > > -Original Message- > > From: Morbus Iff [mailto:[EMAIL PROTECTE

[perl-win32-gui-users] color change (lable)...

2001-06-01 Thread Webmaster CZ
Hi ! I would like to change the background - color from my main-window : # $bgWindow = $Window->AddLabel( -name => "bgWindow", -left => 0, -top => 0, -width => $screensize_width, -height => $screensize_height, -background => "#".$BackgroundRed.$BackgroundGre

RE: [perl-win32-gui-users] color change (lable)...

2001-06-01 Thread Peter Eisengrein
Try the -fill and -frame options. According to docs your choices seem limited to black/gray/white/none but trying playing with it. Maybe you can do the exact color you want. > -Original Message- > From: Webmaster CZ [mailto:[EMAIL PROTECTED] > Sent: Friday, June 01, 2001 2:44 PM > To: perl

[perl-win32-gui-users] Re: Changing items in a ListView with columns?

2001-06-01 Thread Peter Köller
> How can items, especially single columns of an item in a ListView > be changed, without removing and re-inserting the whole item? Now I am able to give the answer to my own question I asked some days ago :-) $win->listview->ChangeItem(-item => $index, -subitem => 1, -text => 'Foo'); Peter

Re: [perl-win32-gui-users] color change (lable)...

2001-06-01 Thread Webmaster CZ
I have it found: I write the *init code* into a ...: ### &init_background(); sub init_background { $bgWindow = $Window->AddLabel( -name => "bgWindow", -left => 0, -top => 0, -width => $screensize_width, -height => $screensize