Re: Perl/Tk fedora 10

2009-03-18 Thread Dave Cross
2009/3/17 Patrick Dupre pd...@york.ac.uk:
 Hello,

 I am experiencing problem with the following code: I cannot edit the
 Widget. It was working fine in fc 7.
 It does seem to be link to nothing to the graphics card or with.
 (I changed the graphics card). However, it work on another fc10 machine.
 This one has an Intel DQ965GF Mother board.

[  snip ]

Patrick,

I think I've seen a few mails from you on this subject over the last
few days and you don't seem to be getting much of a response. I think
that's because Perl/Tk is a relatively minority interest and people on
this general list can't offer any help.

Can I suggest that you try asking your questions on a couple of more
focussed mailing lists. There's the Perl/Tk mailing list at
https://mailman.stanford.edu/mailman/listinfo/ptk. And if you suspect
that it's a packaging error in the perl-Tk package, then you might try
the the Fedora Perl devel mailing list at
https://www.redhat.com/mailman/listinfo/fedora-perl-devel-list.

Hope this helps,

Dave...

-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines


Perl/Tk fedora 10

2009-03-17 Thread Patrick Dupre

Hello,

I am experiencing problem with the following code: I cannot edit the
Widget. It was working fine in fc 7.
It does seem to be link to nothing to the graphics card or with.
(I changed the graphics card). However, it work on another fc10 machine.
This one has an Intel DQ965GF Mother board.

Futhermore, if you comment the last line of code:
$frame_In - Label (-text = 'In:') - pack (-side = 'left') ;
the widget frame_WaveNumb becomes editable  !!!

Is my code wrong ?

#!/usr/bin/perl -w

#use 5.10.0 ;

use Tk ;
use strict ;

my ($main, $frame_WaveNumb, $val_Wave, $frame_In) ;

$main = MainWindow - new () ;

$frame_WaveNumb = $main - Frame () - pack (-side = 'top', -pady = 5) ;
$frame_WaveNumb - Label (-text = 'Energy (cm-1)') - pack (-side = 
'left') ;
$val_Wave = $frame_WaveNumb - Entry (-width = 7, -justify = 'right') - 
pack (-side = 'right') ;


$frame_In = $main - Frame () - pack (-side = 'top', -pady = 5) ;
$frame_In - Label (-text = 'In:') - pack (-side = 'left') ;


MainLoop ;

--
---
==
 Patrick DUPRÉ  |   |
 Department of Chemistry|   |Phone: (44)-(0)-1904-434384
 The University of York |   |Fax:   (44)-(0)-1904-432516
 Heslington |   |
 York YO10 5DD  United Kingdom  |   |email: pd...@york.ac.uk
==-- 
fedora-list mailing list
fedora-list@redhat.com
To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list
Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines