Re: PPM issue

2008-12-07 Thread Sisyphus
- Original Message - From: "Conor Lillis" <[EMAIL PROTECTED]> To: Sent: Friday, December 05, 2008 2:07 AM Subject: PPM issue > Hi guys > I have an issue below on running PPM on any packages, has anyone > encountered this issue before or do they have a workaround? > > D:\Admin\Scripts>p

Q on TK popups

2008-12-07 Thread Daniel Burgaud
Hi, I have a Scrolled Text wherein, each line is binded to a popup $frames{'name-r'}->tag( 'bind', "A$i", '' => sub { &displayRecord($i) } ); I have been trying to use messageBox, Dialog and Balloon. * The problem with messageBox is that I could not configure the font of the message.

RE: Q on TK Scrolled: how do scroll?

2008-12-07 Thread Jack
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Daniel Burgaud Sent: December-07-08 3:46 AM To: Jack Cc: Perl-Win32-Users Subject: Re: Q on TK Scrolled: how do scroll? Hi Jack, The scrollbed field is defined as: $frames{'name-r'} = $frames{'name'}->Scrolled ('ROText', -height

Re: Q on TK Scrolled: how do scroll?

2008-12-07 Thread Daniel Burgaud
This is a test code: ## ## use strict; use Time::HiRes qw(time usleep); use Tk; require Tk::ROText; my $mw = MainWindow->new( ); $mw->minsize(45

Re: Q on TK Scrolled: how do scroll?

2008-12-07 Thread Daniel Burgaud
Hi Jack, The scrollbed field is defined as: $frames{'name-r'} = $frames{'name'}->Scrolled ('ROText', -height => 8, -scrollbars => 'e', )->pack( -side => 'right', -expand => 1, -fill => 'x', It can scroll up/down and contains text. I want to do a "search" and therefore the script should disp