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
|
From: Peter E. <Pet...@at...> - 2002-06-19 13:35:57
|
> Anyway, the Message shortcuts are stored (sorted) in a > Message menu. When > they click on the message shortcut the text of the message is > placed in a > message box for them. That part all works. The user is able > to add their > own message shortcuts to the menu but they don't appear there > until the > program is restarted because the .ini file is read when the program > runs. Is there a way to automatically add these shortcuts to > the menu > without having to restart the program? > Depends on what you want to happen. Do you want their changes to be saved to the .ini file or should the changes only last for that session. My suggestion is that you localize the building of the menu after they've made their edit (maybe a button event?) and store the shortcut/description relationship in a hash and write (or don't write) it to the .ini after the edit. Another way to do it would be the brute force method, where they make the changes, save to .ini, and then restart the script (exec script.pl). |
From: Jonathan S. <jso...@al...> - 2002-06-19 13:15:09
|
I am now able to create a menu based on text in a file thanks to Aldo's help. Now that the menu items have been added, is there a way to modify the menu? Here is what my program does. It allows a user running Windows 2000 or NT to send a message to every computer running Windows 2000 or NT in a network environment (based on workgroup names). I want the user to be able to add a list of message shortcuts to a menu. For instance... Shortcut name Message GODZILLA Godzilla has been sighted downtown, run for your lives! THUNDERSTORM There is a severe thunderstorm watch. TORNADO There is a tornado on its way! Anyway, the Message shortcuts are stored (sorted) in a Message menu. When they click on the message shortcut the text of the message is placed in a message box for them. That part all works. The user is able to add their own message shortcuts to the menu but they don't appear there until the program is restarted because the .ini file is read when the program runs. Is there a way to automatically add these shortcuts to the menu without having to restart the program? Any help would be appreciated. Jonathan |
From: Jonathan S. <jso...@al...> - 2002-06-18 16:18:32
|
Thanks Aldo. It works now. Jonathan At 6/18/2002 05:35 PM, you wrote: >Jonathan Southwick wrote: > > I have a file that contains some information that is used to create a >menu, > > almost like a Recently Opened Files list. I tried using the code from the > > podview,pl sample but it is not working for me. Can anyone see anything I > > am doing wrong? > > > > [...] > > *$subname = eval(qq( > > sub { > > print "got a click\n"; ## this is for testing, but > > I don't get a click > > $MainWindow->Message->Text($MESSAGE{$key}); > > return; > > } > > )); > >if you're using qq() to quote the sub, you need to escape sigils: > > \$MainWindow->Message->Text(\$MESSAGE{\$key}); > >NOTE: please forward this msg to the mailing list, because SourceForge >is refusing to receive mail from me :-( > >cheers, >Aldo > >__END__ >$_=q,just perl,,s, , another ,,s,$, hacker,,print; |
From: Jonathan S. <jso...@al...> - 2002-06-18 15:41:04
|
>From: "Aldo Calpini" <dad...@al...> >To: <per...@li...>, > "Jonathan Southwick" <jso...@al...> >Subject: Re: [perl-win32-gui-users] Creating menu's "on-the-fly" >Date: Tue, 18 Jun 2002 17:35:23 +0200 >X-Mailer: Microsoft Outlook Express 5.50.4807.1700 > >Jonathan Southwick wrote: > > I have a file that contains some information that is used to create a >menu, > > almost like a Recently Opened Files list. I tried using the code from the > > podview,pl sample but it is not working for me. Can anyone see anything I > > am doing wrong? > > > > [...] > > *$subname = eval(qq( > > sub { > > print "got a click\n"; ## this is for testing, but > > I don't get a click > > $MainWindow->Message->Text($MESSAGE{$key}); > > return; > > } > > )); > >if you're using qq() to quote the sub, you need to escape sigils: > > \$MainWindow->Message->Text(\$MESSAGE{\$key}); > >NOTE: please forward this msg to the mailing list, because SourceForge >is refusing to receive mail from me :-( > >cheers, >Aldo > >__END__ >$_=q,just perl,,s, , another ,,s,$, hacker,,print; Jonathan Southwick jso...@al... Technical & Network Services Allegheny College, Meadville, PA 16335 (814) 332-2755 |
From: Jonathan S. <jso...@al...> - 2002-06-18 13:45:54
|
I have a file that contains some information that is used to create a menu, almost like a Recently Opened Files list. I tried using the code from the podview,pl sample but it is not working for me. Can anyone see anything I am doing wrong? # define main menu my $MainMenu = new Win32::GUI::Menu( "&File" => "File", " > E&xit" => "FileExit", "&Message" => "Message", " > &Add New" => "AddMessage", " > &Edit" => "EditMessage", " > &Delete" => "DeleteMessage", " > -" => 0, @MENUDEF, "&Tools" => "Tools", " > &Setup" => "Setup", " > -" => 0, " > Change &Password" => "ChangePassword", "&Help" => "Help", " > &About" => "About", ); ### I call this routine *before* I create my menu. sub getMessageList { ### stuff deleted, this section just read in the file and created the has ### now I want to use the values in the hash for my menu. @MENUDEF = (); foreach $key (keys (%MESSAGE)) { print "$key is text: $MESSAGE{$key}\n"; ## this is only for testing purposes to make ## sure I have the right information push(@MENUDEF," > $key"); push(@MENUDEF,"Menu$key"); $subname = "Menu${key}_Click"; *$subname = eval(qq( sub { print "got a click\n"; ## this is for testing, but I don't get a click $MainWindow->Message->Text($MESSAGE{$key}); return; } )); } return; } Jonathan |
From: Ceres <ce...@ce...> - 2002-06-16 01:28:51
|
Hello Folks.. Atlast i found what i realy wanted, a GUI posibility for windows in Perl..(Not that VisualPerl shit)... But, as long as i lose events it's not any funn programming...:( I made a test script to show what i meen.. download is at http://ceressites.nl/Win32::GUI/test.zip First problem is: 1 Start test.cgi 2 Enable the TreeView Object (Menu - Tree>Enable) 3 now you'll see the menu event names are lost if you click again on one= of the menu items.. But you still see the printed info when clicking a TreeView-node..(DOS= screen) Here i lose the Menu-Event-Names(after adding a TreeView Object in the= Main Window). Perl Error (Undefined subroutinge &main:: called at 'test.cgi' line= '*line*') when klicking a random menu item. Second problem is: 1 Start test.cgi 2 Enable the TabStrip Object (Menu - Tab>Enable). 3 Enable the TreeView Object (Menu - Tree>Enable). 4 Now the menu event names are this time not lost if you click again on= one of the menu items.. but now you'll see nothing printed when clicking a TreeView-node..(DOS= screen) so the events are not fired i gess.. Here the TreeView-node Events are lost.(After adding a TreeView Object in= a TabStrip) This is verry frustrating to work with, what am i doing wrong? or do i have an incompleet version? I'm running Win32::GUI version 0.0.665 on WinXP.. Greeting, Ceres.. |
From: H C <key...@ya...> - 2002-06-15 12:46:04
|
Is there a way to get GetOpenFileName to allow for selecting multiple files, or is the current method of allowing this to use Win32::FileOp? Thanks __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com |
From: Morbus I. <mo...@di...> - 2002-06-14 15:42:37
|
Just wanted to spam the list. My "AmphetaDesk v0.93", which is compiled with perl2exe and uses Win32::GUI is now available from: http://www.disobey.com/amphetadesk/ The source code is freely available as well (and is actually shipped and interpreted at runtime with the Win32 binary). -- Morbus Iff ( i'm the droid you're looking for ) Culture: http://www.disobey.com/ and http://www.gamegrene.com/ Tech: http://www.oreillynet.com/pub/au/779 - articles and weblog icq: 2927491 / aim: akaMorbus / yahoo: morbus_iff / jabber.org: morbus |
From: Piske, H. <Har...@bo...> - 2002-06-14 15:35:55
|
I've successfully used DCs in both 98 and 2k. I found that the Arc function fails in 98, but lines and multilines work fine. I'm guessing you have to define pens and brushes first. $pen = new Win32::GUI::Pen ( -style => 0, -width => 1, -color => 0x0000FF, ); $dc = $Main->GetDC (); $dc->SelectObject ($pen); $dc->MoveTo (... $dc->LineTo (... [...] $blue = [ 51, 102, 255]; $Pb5 = new Win32::GUI::Pen (-color => 0x000000, -width => 5); $Bblu = new Win32::GUI::Brush ($blue); @_ = (180, 200, 100, $pitch + $roll, 180 - 2 * $pitch); $dc->BeginPath(); $dc->Arc (@_[0..3], 0); $dc->AbortPath(); # just to position pen on arc $dc->SelectObject($Pb5); # thick black line $dc->SelectObject($Bblu); # blue background $dc->BeginPath(); $dc->Arc (@_); # this fails on windows 9x $dc->CloseFigure(); # but works fine under 2k $dc->EndPath(); $dc->StrokeAndFillPath(); > -----Original Message----- > From: Chris Ingrassia [mailto:ch...@sp...] > Sent: Friday, June 14, 2002 06:31 > To: per...@li... > Subject: [perl-win32-gui-users] Win2k/DeviceContext Problems? > > > > Related to my last message - has anyone experienced any > problems using > DeviceContexts > on Windows 2000? I tried using my DrawIcon and simple LineTo > code at home > using the same version of ActivePerl and the PPM distribution > v556 and v650, > and both worked great. I got back here and ran the same code, only to > discover it still doesn't work. I suspect this means that > for whatever > reason drawing to the Device Context in windows 2000 is > broken? Can anyone > fill me in on this? > > thanks, > > chris > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application Developer's Conference > August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: Chris I. <ch...@sp...> - 2002-06-14 13:31:21
|
Related to my last message - has anyone experienced any problems using DeviceContexts on Windows 2000? I tried using my DrawIcon and simple LineTo code at home using the same version of ActivePerl and the PPM distribution v556 and v650, and both worked great. I got back here and ran the same code, only to discover it still doesn't work. I suspect this means that for whatever reason drawing to the Device Context in windows 2000 is broken? Can anyone fill me in on this? thanks, chris |
From: Chris I. <ch...@sp...> - 2002-06-14 01:27:43
|
Hello all - I'm attempting to use the windows API function "DrawIcon" to draw one of the stock icons (i.e. Warning, Information, Error, etc) into a dialog box. I'm having a heck of a time. I'm loading the DrawIcon function using the Win32::API package, but the Win32::GUI issue is that I can't seem to draw to the device context (or at least get it to show up) of either my dialog or a Win32::Graphic object. I've tried just drawing a line using one of the methods defined in Win32::GUI::DC, but it doesn't seem to show up either. So I'm thinking the root of my problem might be that I'm attempting to draw incorrectly. Unfortunately I don't have my original code available, but it goes something like this: $Dialog = new Win32::GUI::DialogBox( -name => "DialogBox", -text => "DialogBox", -width => 400, -height => 400); [ add things to the dialog box ] and then [either this or my code to grab a stock Icon and call DrawIcon]: $Dialog->GetDC->MoveTo(0, 0); $Dialog->GetDC->LineTo(100, 100); $Dialog->GetDC->Validate; $Dialog->Show; Win32::GUI::Dialog; I've tried all sorts of other things as well, such as calling InvalidateRect and Update on my Dialog object, and creating a Graphic object and using it's GetDC method. If anyone has any hints, they would be greatly appreciated. The basic idea here is just to be able to use those icons in a dialog that's more complex than the standard DialogBox function, I need to have a few text inputs and such, but I need those icons as well. If anyone knows of an easier way to do this, I'm all ears. Thanks a bunch, chris -- -- The shortest distance between two points is under construction. -- Noelie Alito |
From: Hassan N. <hn...@is...> - 2002-06-13 07:50:25
|
.\_....\_....\_.....\_....\_\_\_....\_\_\_.........\_\_\_ ..\_.....\_....\_\_..\_....\_...\_....\_...............\_...\_ ....\_\_\_\_...\_ \_.\_....\_\_\_....\_......\_\_...\_\_\_ ......\_......\_...\_..\_\_....\_....\_...\_......\_......\_...\_ ........\_..... \_...\_.....\_....\_....\_...\_\_\_\_......\_.. \_ Hi Every I want to make a textbox scroll when the number of lines exceed the height of that box . Can anyone help me in solving this prblem ? thanx for those will replay and, those will ignore this message 8-)= __________________________ Visit IslamWay Radio Online http://www.islamway.com -------------------------------------- Get your free email @ISLAMWAY.NET http://bareedy.islamway.com -> 15 Mbytes free space -> POP & SMTP support -> Full Arabic Support |
From: Andrea M. <mae...@fr...> - 2002-06-12 00:24:11
|
carollyne courtney wrote: > > I'm trying to lauch a windows help file(.hlp) from a > Win32::GUI::Menu as follows: > try this: sub helpme_Click { my $path=$_[0]; my $whelp = new Win32::API ('user32', 'WinHelp', [N,P,I,N], I) or die 'can\'t find WinHelp function'; my $string="$path\\winnt.hlp"; $whelp->Call (0, $string, 3, ''); return 0; } -- $_=q,6;-16;-1;-8;0;7;-13;-12;-9;-3;13#4A75737420616E6F74686572,,($_,$b)= split?#?;@b=split?;?;map{$c.=$_,$d.=chr$b[$e++]+ord}split??,pack'H24',$b ;chop$d,print$c.chr(32).$d |
From: Straub, P. (Peter) <st...@op...> - 2002-06-10 14:12:12
|
I already saw this suggestion somewhere in the list archives (probably posted by you), but it did not work for me. Forcing the RichEdit control to refresh [$RichEdit->InvalidateRect(0)] restored the contents but at the same time restored it to an unscrolled state (even if the contents had been scrolled). Btw I managed to migrate my application from version 558 to 655 and for me the problems with RichEdit controls persisted :-( Peter -----Original Message----- From: Jonathan Southwick [mailto:jso...@al...] Sent: Montag, 10. Juni 2002 14:31 To: 'per...@li...' Subject: Re: [perl-win32-gui-users] Rich edit: formatted text lost when scrollled What finally worked for me was to add: ## $MainWindow is the window that has my RichEdit control. $MainWindow->InvalidateRect(0); I hope this works for you as well. Jonathan At 6/6/2002 09:56 AM, Straub, Peter (Peter) wrote: >Hi all, > >like other contributors to this list I experienced >refresh problems with rich edit controls (Win32-GUI 558). Everything >displays ok but when the contents is scolled, especially some chars I >add this way: > > $wRichEdit->Select($iOffset, $iOffset+1); > $wRichEdit->ReplaceSel(chr(0x3A)); > $hFormat{-color} = hex("FF0000"); > $wRichEdit->Select($iOffset, $iOffset+1); > $wRichEdit->SetCharFormat(%hFormat); > >I'm afraid I can not recover from this with the "update" solution that >has been suggested so far, at least I'm not aware of any usable event >to trigger it with. > >Anything wrong with my code? >All Suggestions greatly appreciated. Thanks! > >Peter > >P.S.: >I already thought about migrating to 665, but then I >need subclassing to get mouse events from the rich edit controls and >this doesn't seem to work ... ? > >_______________________________________________________________ > >Don't miss the 2002 Sprint PCS Application Developer's Conference >August 25-28 in Las Vegas - >http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > >_______________________________________________ >Perl-Win32-GUI-Users mailing list >Per...@li... >https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users _______________________________________________________________ Don't miss the 2002 Sprint PCS Application Developer's Conference August 25-28 in Las Vegas - http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: Guillem C. W. <vac...@es...> - 2002-06-10 13:25:07
|
I would like to change the property "topmost" of a Window which is = declared with -topmost =3D>1 I have tried this two sentences: $WindowVis->Change($WindowVis, -topmost =3D>0); $WindowVis->Change(-topmost =3D>0); but no results... What's wrong ? Guilem |
From: Jonathan S. <jso...@al...> - 2002-06-10 12:31:20
|
What finally worked for me was to add: ## $MainWindow is the window that has my RichEdit control. $MainWindow->InvalidateRect(0); I hope this works for you as well. Jonathan At 6/6/2002 09:56 AM, Straub, Peter (Peter) wrote: >Hi all, > >like other contributors to this list I experienced >refresh problems with rich edit controls (Win32-GUI 558). >Everything displays ok but when the contents is scolled, >especially some chars I add this way: > > $wRichEdit->Select($iOffset, $iOffset+1); > $wRichEdit->ReplaceSel(chr(0x3A)); > $hFormat{-color} = hex("FF0000"); > $wRichEdit->Select($iOffset, $iOffset+1); > $wRichEdit->SetCharFormat(%hFormat); > >I'm afraid I can not recover from this with the "update" >solution that has been suggested so far, at least I'm not >aware of any usable event to trigger it with. > >Anything wrong with my code? >All Suggestions greatly appreciated. Thanks! > >Peter > >P.S.: >I already thought about migrating to 665, but then I >need subclassing to get mouse events from the rich edit >controls and this doesn't seem to work ... ? > >_______________________________________________________________ > >Don't miss the 2002 Sprint PCS Application Developer's Conference >August 25-28 in Las Vegas - >http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > >_______________________________________________ >Perl-Win32-GUI-Users mailing list >Per...@li... >https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: FARRINGTON, R. <rya...@ci...> - 2002-06-10 11:25:22
|
Here is your solution Win32::PerfLib I've used it in the past and it works great for the applications I'm using it in.... -----Original Message----- From: rch...@li... [mailto:rch...@li...] Sent: Sunday, June 09, 2002 11:32 AM To: per...@li... Subject: [perl-win32-gui-users] System Administrator I am a novice in Perl. pardon me if this is too basic.. i am trying to get the PerfMon statistics such as CPU utilization, Memory Utilization. how can i do this? ravi |
From: Straub, P. (Peter) <st...@op...> - 2002-06-10 07:50:09
|
Stupid enough I didn't realize it also works as you suggest. Thanks a lot! Peter -----Original Message----- From: Johan Lindstrom [mailto:jo...@ba...]=20 Sent: Freitag, 7. Juni 2002 11:05 To: per...@li... Subject: Re: [perl-win32-gui-users] no events when tree view is = tabstrip child (665) At 10:31 2002-06-07 +0200, Straub, Peter (Peter) wrote: >I try to migrate an existing script from win32-gui >558 to 665. One show-stopper I came upon was that >no NodeClick events are generated by a tree view >control if it is child of a tab strip control. What do you gain by it being a child of a tab strip control? Try adding it to the window control instead and see if that works out better. /J -------- ------ ---- --- -- -- -- - - - - - Johan Lindstr=F6m Sourcerer @ Boss Casinos jo...@ba... Latest bookmark: "Ovid's Journal: Bob and the dog" http://use.perl.org/~Ovid/journal/2204 dmoz (1 of 8): /Computers/Programming/Languages/Perl |
From: carollyne c. <car...@ho...> - 2002-06-10 05:33:09
|
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 an external process without affecting the main Win32::GUI program window? Thanks _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx |
From: H C <key...@ya...> - 2002-06-10 00:35:08
|
Mark, I checked out systeminfo...it only does memory and processor info...not PerfMon... --- Mark Di Nicola <amo...@ih...> wrote: > rch...@li... wrote: > > I am a novice in Perl. pardon me if this is too > basic.. > > > > i am trying to get the PerfMon statistics such as > CPU utilization, > > Memory Utilization. > > > > how can i do this? > > > > > > ravi > > > > check out win32::systeminfo on cpan. > > > _______________________________________________________________ > > Don't miss the 2002 Sprint PCS Application > Developer's Conference > August 25-28 in Las Vegas - > http://devcon.sprintpcs.com/adp/index.cfm?source=osdntextlink > > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users __________________________________________________ Do You Yahoo!? Yahoo! - Official partner of 2002 FIFA World Cup http://fifaworldcup.yahoo.com |
From: Mark Di N. <amo...@ih...> - 2002-06-09 22:03:11
|
rch...@li... wrote: > I am a novice in Perl. pardon me if this is too basic.. > > i am trying to get the PerfMon statistics such as CPU utilization, > Memory Utilization. > > how can i do this? > > > ravi > check out win32::systeminfo on cpan. |
From: <rch...@li...> - 2002-06-09 17:29:22
|
I am a novice in Perl. pardon me if this is too basic.. i am trying to get the PerfMon statistics such as CPU utilization, Memory Utilization. how can i do this? ravi |
From: Mark W. <ma...@il...> - 2002-06-09 17:11:58
|
Does anyone have an example of tooltips being used wth a toolbar (not a notify Icon)? even an example of a valid tooltips constructor would be great... the documentation is almost blank on the subject. Cheers! Mark |
From: Piske, H. <Har...@bo...> - 2002-06-09 16:39:20
|
This is pretty much the reason why I did not go 665 yet. I saw it mentioned somewhere that subclassing fell victim to the NEM (new event model) altogether - if you need events, which is what subclassing achieves rather poorly in 558, you need to take on the NEM, which does the job much better. The problem for me is that I've been using subclassing extensively and don't want to rewrite everything. To be honest, instead of 665, I tried Tk for a current project and I must say, It's not perfect, either, but it does have its strong points. The main reason for me to switch for this particular program was a) I may have to deliver a linux version and b) some graphics I need - the arc function of GUI works under win2k, but not 98. And what I found is that, oddly, Tk is much faster with those graphics. > -----Original Message----- > From: Straub, Peter (Peter) [mailto:st...@op...] > Sent: Wednesday, June 05, 2002 01:36 > To: 'per...@li...' > Subject: [perl-win32-gui-users] subclassing in build 665? > > > Hi all, > > I try to migrate an existing application from 558 > to 665 and I am stuck because subclassing doesn't > (seem to) work in this version... > I subclass rich edit controls to make them mouse- > and keystroke-aware: > > my $EditorClass = new Win32::GUI::Class( > -name => "Editor", > -extends => "RichEdit", > -widget => "RichEdit", > ); > > my $redAllMessages = $winMain->AddRichEdit( > -class => $EditorClass, > -name => "RedMessages", > -text => "", > -left => 0, > -top => 0, > -addstyle => WS_TABSTOP | > WS_CHILD | > WS_VISIBLE | > WS_HSCROLL | > WS_VSCROLL | > ES_LEFT | > ES_READONLY | > ES_MULTILINE, > -addexstyle => WS_EX_CLIENTEDGE, > ); > > This works for "LButtonDown" and "MouseMove" > events and helps to implement sorts of "links" > and a custom cursor shape. > Is there a way to achieve this in version 665? > Should I wait for 772 :)? > Please advise... > > Cheers- > Peter > |
From: Johan L. <jo...@ba...> - 2002-06-07 09:05:50
|
At 10:31 2002-06-07 +0200, Straub, Peter (Peter) wrote: >I try to migrate an existing script from win32-gui >558 to 665. One show-stopper I came upon was that >no NodeClick events are generated by a tree view >control if it is child of a tab strip control. What do you gain by it being a child of a tab strip control? Try adding it to the window control instead and see if that works out better. /J -------- ------ ---- --- -- -- -- - - - - - Johan Lindström Sourcerer @ Boss Casinos jo...@ba... Latest bookmark: "Ovid's Journal: Bob and the dog" http://use.perl.org/~Ovid/journal/2204 dmoz (1 of 8): /Computers/Programming/Languages/Perl |