[perl-win32-gui-users] SWF win32 GUI

2006-04-04 Thread carollyne courtney
Hi, Can someone point me in the right direction - how do I display/embed a swf file in a win32 gui window? Seems like it may be possible using Win32::GUI::AxWindow. Any help appreciated. Thanks, Carol _ Discover the magic of R

[perl-win32-gui-users] Label with transparent background

2004-01-22 Thread carollyne courtney
Is there anyway to create a label with a transparent background? Thanks.. _ Get accurate, multi-day weather forecasts for your area at MSN Weather! http://www.msn.co.za/weather/

[perl-win32-gui-users] Memory usage

2003-10-02 Thread carollyne courtney
The memory usage of my poller is increasing by about 200k between polls. Maximizing and then minimizing the poller reduces the incremented memory usage down to 196k. I tried minimizing the poller between polls: $w->CloseWindow();$w->Show(); But this doesn't release the incremented memory. An

[perl-win32-gui-users] Minimized window inactive

2002-10-16 Thread carollyne courtney
How do I ensure that the counter continues running when the window is minimized? Thanks -snip- use strict; use Win32::GUI; my $count = 0; my $W = new Win32::GUI::Window( -left => 558, -top=> 122, -width => 300, -height => 255, -name => "W", -text => "T

[perl-win32-gui-users] Listview selection

2002-07-03 Thread carollyne courtney
Hi, How do I automatically scroll down and select the most currently appended item in a ListView? Thanks -snip- use Win32::GUI; use strict; my $W = new Win32::GUI::Window( -left => 50, -top=> 387, -width => 200, -height => 200, -name => "test", -text

[perl-win32-gui-users] Windows help (winhlp32)

2002-06-09 Thread carollyne courtney
I'm trying to lauch a windows help file(.hlp) from a Win32::GUI::Menu as follows: sub helpme_Click { print "Trying to help...\n"; system("winnt.hlp"); return 0; } But the main prog window 'dies' until the help file is terminated. Any idea how I can launch the help file as