You can subscribe to this list here.
2001 |
Jan
(226) |
Feb
(139) |
Mar
(156) |
Apr
(95) |
May
(181) |
Jun
(166) |
Jul
(80) |
Aug
(59) |
Sep
(69) |
Oct
(83) |
Nov
(142) |
Dec
(33) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(42) |
Feb
(91) |
Mar
(76) |
Apr
(113) |
May
(67) |
Jun
(68) |
Jul
(37) |
Aug
(41) |
Sep
(16) |
Oct
(135) |
Nov
(51) |
Dec
(21) |
2003 |
Jan
(37) |
Feb
(36) |
Mar
(37) |
Apr
(103) |
May
(68) |
Jun
(70) |
Jul
(77) |
Aug
(12) |
Sep
(9) |
Oct
(53) |
Nov
(88) |
Dec
(63) |
2004 |
Jan
(263) |
Feb
(106) |
Mar
(36) |
Apr
(21) |
May
(21) |
Jun
(34) |
Jul
(33) |
Aug
(34) |
Sep
(35) |
Oct
(21) |
Nov
(43) |
Dec
(63) |
2005 |
Jan
(28) |
Feb
(42) |
Mar
(29) |
Apr
(14) |
May
(41) |
Jun
(20) |
Jul
(65) |
Aug
(136) |
Sep
(41) |
Oct
(74) |
Nov
(34) |
Dec
(94) |
2006 |
Jan
(85) |
Feb
(94) |
Mar
(68) |
Apr
(103) |
May
(66) |
Jun
(51) |
Jul
(24) |
Aug
(56) |
Sep
(57) |
Oct
(85) |
Nov
(73) |
Dec
(68) |
2007 |
Jan
(59) |
Feb
(32) |
Mar
(13) |
Apr
(32) |
May
(36) |
Jun
(36) |
Jul
(64) |
Aug
(35) |
Sep
(19) |
Oct
(10) |
Nov
(13) |
Dec
(20) |
2008 |
Jan
(26) |
Feb
(41) |
Mar
(19) |
Apr
(24) |
May
(16) |
Jun
(33) |
Jul
(34) |
Aug
(4) |
Sep
(11) |
Oct
|
Nov
(26) |
Dec
(23) |
2009 |
Jan
(5) |
Feb
(2) |
Mar
(21) |
Apr
(16) |
May
(13) |
Jun
(6) |
Jul
(34) |
Aug
(2) |
Sep
(1) |
Oct
(7) |
Nov
(5) |
Dec
(24) |
2010 |
Jan
(3) |
Feb
(5) |
Mar
(6) |
Apr
(6) |
May
(14) |
Jun
(6) |
Jul
(1) |
Aug
(12) |
Sep
(10) |
Oct
(9) |
Nov
|
Dec
(2) |
2011 |
Jan
(4) |
Feb
(5) |
Mar
(30) |
Apr
(1) |
May
(2) |
Jun
(5) |
Jul
(3) |
Aug
(2) |
Sep
(3) |
Oct
|
Nov
(6) |
Dec
|
2012 |
Jan
|
Feb
(10) |
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
(1) |
Aug
|
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(4) |
2013 |
Jan
(5) |
Feb
(3) |
Mar
|
Apr
(3) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(2) |
Feb
|
Mar
|
Apr
(1) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
(7) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(5) |
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
(1) |
25
(4) |
26
|
27
|
28
|
|
|
|
|
|
|
From: Jeremy W. <jez...@ho...> - 2010-02-25 13:57:46
|
In the past I have tried various tools to profile Win32::GUI applications and I've always been disappointed with the results... ...but I have been impressed with Devel::NYTProf: http://blog.timbunce.org/2009/12/24/nytprof-v3-worth-the-wait/ Devel::NYTProf exists as a PPM for both 5.10 and 5.8, but don't use that version (it just crashes). Download the latest version from cpan: http://search.cpan.org/~timb/Devel-NYTProf-3.01/ Enjoy! _________________________________________________________________ Do you have a story that started on Hotmail? Tell us now http://clk.atdmt.com/UKM/go/195013117/direct/01/ |
From: Kieren D. <Kie...@ha...> - 2010-02-25 10:43:32
|
> -----Original Message----- > From: az...@nu... [mailto:az...@nu...] > Sent: 25 February 2010 03:54 > To: per...@li... > Subject: [perl-win32-gui-users] Need to dynamically change the -tip > > Hi, > > I have developed a software using Win32::GUI and I need to have my > user to choose their desired language during the time when > they login > to the system. This will change not only the interface language but > also the tooltip. I don't have any problem doing so for > others but for > the -tip I've never succeeded. Hi Azlan. If you used an explicit Tooltip object instead of the -tip option, it has a special method to change the text. A Tooltip is a set of tooltips rather than a single one, so common methods (such as Text) don't work as I had expected. For example: use Win32'GUI ''; my $w = Win32'GUI'Window->new('-text', 'Window', '-size', [100, 100]); my $b = $w->AddButton('-text', 'test'); my $c = $w->AddButton('-text', 'test', '-pos', [0, 50]); my $t = $w->AddTooltip(); $t->AddTool('-text', 'Click me.', '-subclass', 1, '-window', $b); $t->AddTool('-text', 'Click me too.', '-subclass', 1, '-window', $c); $b->Change('-onClick', sub() {$t->UpdateTipText($b, 'Cliquez moi.')}); $c->Change('-onClick', sub() {$t->UpdateTipText($c, 'Cliquez moi aussi.')}); $w->Show; Win32'GUI'Dialog; The other way to change the text is to recreate the component which has the tooltip, but the above should usually be simpler. Kieron |
From: <az...@nu...> - 2010-02-25 04:22:07
|
Hi, I have developed a software using Win32::GUI and I need to have my user to choose their desired language during the time when they login to the system. This will change not only the interface language but also the tooltip. I don't have any problem doing so for others but for the -tip I've never succeeded. Example one of my button: $MAIN->AddButton( -name => 'Load_3', -text => "Load file", -size => [100, $BH], -pos =>[$LM, 223], -tabstop => 1, -tip=> "Load proxies from database" ); I can have a function to directly change the -text but not the -tip. Have tried several ways but still failed. (Strangely it works only for Notifyicon) I have also tried using Win32::GUI::Tooltip, but I can't seams to make it working. So can anyone please advise me the best way to do this. Thanking you all in advance. :) Regards, Azlan |
From: Kevin M. <kej...@ho...> - 2010-02-25 03:29:58
|
Bradley, It should be -onclick instead of -click. Also, instead of using the Change() method, use ReadOnly(1) to enable readonly and ReadOnly(0) to disable. Hope this helps, Kevin. Date: Wed, 24 Feb 2010 13:28:09 -0500 From: Bra...@bi... To: per...@li... Subject: [perl-win32-gui-users] Executing a subroutine when selecting a radio button Hi, I am trying to set up an action using radio buttons that when it is selected it changes the readonly state of the text field (see below code). This code runs but the subroutine does not work when the radio button is selected. I expect that the –click option is not doing what I want it to do. Does anyone have any suggestions on how to get the functionality that I am looking for? Cheers! #!perl -w use strict; #use warnings; use Win32::GUI(); my $w = 250; my $h = 100; my $main = Win32::GUI::Window->new( -name => 'Main', -text => 'Example Window', -width => $w, -height => $h, -resizable => 0 ); $main->AddRadioButton ( -name => 'radio_1', -pos => [10, 10], -size => [12,12], -checked => '1', -click => sub{$main->user_text->Change(-readonly => 1);}, ); $main->AddLabel( -text => "Disable Textfield", -pos => [25,10], ); $main->AddRadioButton ( -name => 'radio_2', -pos => [10, 30], -size => [12,12], -click => sub{$main->user_text->Change(-readonly => 0);}, ); $main->AddLabel( -text => "Enable Textfield", -pos => [25,30], ); $main->AddTextfield( -name => 'user_text', -pos => [110,28], -size => [60,20], -align => 'left', -readonly => 1, ); $main->Show(); Win32::GUI::Dialog(); _________________________________________________________________ Looking for a place to rent, share or buy? Find your next place with ninemsn Property http://clk.atdmt.com/NMN/go/157631292/direct/01/ |
From: Love, B. <Bra...@bi...> - 2010-02-24 18:55:00
|
Hi, I am trying to set up an action using radio buttons that when it is selected it changes the readonly state of the text field (see below code). This code runs but the subroutine does not work when the radio button is selected. I expect that the -click option is not doing what I want it to do. Does anyone have any suggestions on how to get the functionality that I am looking for? Cheers! #!perl -w use strict; #use warnings; use Win32::GUI(); my $w = 250; my $h = 100; my $main = Win32::GUI::Window->new( -name => 'Main', -text => 'Example Window', -width => $w, -height => $h, -resizable => 0 ); $main->AddRadioButton ( -name => 'radio_1', -pos => [10, 10], -size => [12,12], -checked => '1', -click => sub{$main->user_text->Change(-readonly => 1);}, ); $main->AddLabel( -text => "Disable Textfield", -pos => [25,10], ); $main->AddRadioButton ( -name => 'radio_2', -pos => [10, 30], -size => [12,12], -click => sub{$main->user_text->Change(-readonly => 0);}, ); $main->AddLabel( -text => "Enable Textfield", -pos => [25,30], ); $main->AddTextfield( -name => 'user_text', -pos => [110,28], -size => [60,20], -align => 'left', -readonly => 1, ); $main->Show(); Win32::GUI::Dialog(); |