| Thread | Last Post | Replies |
|
| error: Use of uninitialized value in string | 30 May 2007 04:38 GMT | 3 |
I have a simple record entry Perl Tk application such as the one posted in my previous post. This is under Linux However if one of the data fields is left unfilled then the command
|
| error: Use of uninitialized value in string | 29 May 2007 19:05 GMT | 1 |
I have a simple record entry Perl Tk application such as the one posted in my previous post. This is under Linux However if one of the data fields is left unfilled then the command
|
| Working Example of A Simple Data Entry Form in Perl Tk | 28 May 2007 23:06 GMT | 1 |
This little problem was driving me nuts and it was hard for me to research through Google search because the key words brought up too many non-applicable pages. There are many, many examples on how to make a multiple entry
|
| notebook: how to manage the different frame names? | 28 May 2007 14:36 GMT | 2 |
I have some frames into a notebook. I often have to understand which frame is active in order to process the widgets inside. Now my code is like that: my $currentPage = $mappa_notebook->raised();
|
| strange Problem with Spresdsheet | 28 May 2007 05:14 GMT | 8 |
I am getting this strange issue with spreadsheet. Suppose my spreadsheet has 10,000 rows.Now , when scroll through the spreadsheet , some portion of some of the rows that I had scrolled through gets greyed ( I am not able to see any data under those cells)
|
| Entry Widget -textvariable issue with null string | 27 May 2007 22:39 GMT | 1 |
Please use the sample programe. #!/usr/bin/perl use Tk; $mw = MainWindow->new;
|
| Tk::Photo question | 25 May 2007 12:45 GMT | 3 |
I am not getting expected results when using the copy method of Tk::Photo. See what I am trying to do is make my application more friendly to larger display resolutions. Since there are images being used for the main toolbar, when you use the application on a smaller screen using ...
|
| Drag and Drop From Browser Address Bar | 25 May 2007 09:32 GMT | 5 |
I would like to be able to drag from my browser's address bar (using IE7) to a Tk app and extract the URL. Is this possible?
|
| Receiving an X ClientMessage in a Perl/Tk application | 20 May 2007 23:20 GMT | 4 |
I have what I hope is a simple question. I have an old, crusty X11 application which I want to "extend" with Perl/Tk. For my purposes, a simple X11 ClientMessage will do to facilitate communication between the X11 app and the Perl/Tk app. I can send a
|
| Entry widget -textvariable issues with array variable | 19 May 2007 11:37 GMT | 6 |
I am having a problem with the Entry widget where the -textvariable is a reference to an array element. I wrote a simple program to illustrate the problem. ------------------ cut here -------------
|
| item groups and display order | 17 May 2007 18:22 GMT | 3 |
I have two images grouped and I would to change the display order to display the one behind in foreground. I tried : $canvas->creategroup([0,0],-members=>[$id_imagebehind,
|
| Drop down menu | 17 May 2007 01:00 GMT | 1 |
Is there a way to create a drop down list embedded inside a menu in Perl/TK? -Trisha
|
| Making the window Busy | 15 May 2007 06:27 GMT | 10 |
I have been stuck in this problem since long and want to people to help me out. The following program aims at making the window busy by calling the "Busy" function which woul;d prevent the user on clicking on the
|
| Using Tabs and widgets created by another master | 13 May 2007 09:37 GMT | 2 |
Hi Group, I would like to pack some widgets in a tab, the widgets are created with master other than the tab client frame. In the following example a try to pack a Button (Btn2) in the frame I received from the tab
|
| Tk::Widget::allChildren | 11 May 2007 15:40 GMT | 3 |
is there a recursive children method in the library? I found this one useful: sub Tk::Widget::allChildren{ my $w = shift;
|