| Thread | Last Post | Replies |
|
| Removing all bindings from a widget | 24 Jul 2007 16:33 GMT | 2 |
I am stuck up in a problem.I have atext widget $txt and I have many bindings attached to it. Now when I want to remove all bindings from the widget , I use $txt->bindtags(undef);
|
| how to use perlcc ?? | 20 Jul 2007 12:08 GMT | 1 |
I don't manage to compile my perl source with perlcc. I have a program that use Tk modules and some personnal modules in the current directory. use Tk;
|
| Socket, Broadcast et fileevent ? | 19 Jul 2007 08:41 GMT | 2 |
I spend a lot of time to understand how Sockets work with UDP and Broadcast, and I think I'm losing myself, so is someone here who could give me the code to make a program that is an UDP server, listening to Broadcasted messages. This program has to run on windows XP station,
|
| listbox search | 17 Jul 2007 17:07 GMT | 3 |
I have a chunk of code that has a listbox and an entry widget. The user types something in the entry box and it searches thru the listbox . But wat i need is without having entry box if the users type some
|
| tk file getSaveFile and getOpenFIle ............ | 17 Jul 2007 01:51 GMT | 1 |
when I use getSaveFile and getOpenFile options..... only Save and cancel for getSaveFile and Open cancel options for getOpenFIle is coming...... but i need delete option in both windows..
|
| General Note on Perl/tk | 15 Jul 2007 10:46 GMT | 14 |
There are no doubts, Perl/Tk stands the test of time. There are two problems, however, that I would like to be addressed. 1. A base perl/tk system which is up-to-date with respect to widgets available in other relatively more recent toolkits.For example, I find
|
| how to change background in all children widgets | 12 Jul 2007 15:44 GMT | 5 |
I have frame, labels in this frame and 2 button for change frame background color. I want to change background color too in all labels in frame. Can anybody tell me how to modify my code? #!/usr/bin/perl
|
| changing binding for <tab> | 12 Jul 2007 00:30 GMT | 3 |
I have an application that uses a database and puts up a dialog-type window for user input of SQL. The window contains a Text widget for user entry of the SQL statements, but also a few other widgets, such as "Done" and "Cancel" buttons.
|
| Text bind command not selecting text | 11 Jul 2007 21:45 GMT | 2 |
I am putting together a small report editor and need some help with the following problem. I would like the user to type in some text and then later be able to select either all of it or a portion of it for formatting (ie. centering, bold, italic,etc.) by typing in a command
|
| Tk and subprocesses | 11 Jul 2007 00:26 GMT | 3 |
I have written Tk script and I want to download few html pages. I use LWP and this work but I want to download pages in parallel processes or some similar if it is possible. I tried to use fork() but this crash the script. Yes, I use it on Windows platform and use Perl 5.6.1. ...
|
| How do I display the value of a serial port in a label widget? | 05 Jul 2007 05:09 GMT | 3 |
I don't know what I am doing but I do know what I want. I am trying write a small Perl/Tk program that takes the data present on /dev/ttyS0 and displays it in a Label widget. Here's what I have so far:
|
| How to collapse list in BrowseEntry | 03 Jul 2007 17:05 GMT | 2 |
I want to be able to bind a key to delete an entry from the list of selections in a BrowseEntry widget. So far I have something like this: $entry->Subwidget('slistbox')->bind('<Delete>', sub {
|
| Selecting word on right click + showing word in the tool tip ... | 02 Jul 2007 16:57 GMT | 1 |
I am using ROText. I am using this ROText to show verilog source file. My requirement is as follows. 1) On right click I want to show right click menu, which updates it's menu item based on the word, on which the mouse is clicked.
|