|
Viish with Scrolled Text widget I have an application created using scrolled text widget. How can i bind the viish bindings to the same scrolled text widget. The application is created in vTcl using place. sample code of viish is as follows... proc Init {} { upvar #0 argv argv if {[winfo children .]==""} { i... 3 Jul 2008 04:18
Handling windows between interpreters Hi All, I am using a code found on the Wiki to implement a "console" in Unix for my program. I am using the following code: http://wiki.tcl.tk/786 Here is my problem. I want to embed that console into my main GUI. The console is created in a slave interpreter. There is a window path .console in the slave. ... 24 Jun 2008 07:10
Inverse of Tk canvasx ? Probably being blind, but I cannot find anything that maps a coordinate in a scrollable canvas back to a screen coordinate, ie the inverse of $c canvasx screenx ? Dave ... 25 Jun 2008 20:09
tk_messageBox - text entry won't select after using this Running this on windows: entry .e -textvariable foo pack .e set foo foo tk_messageBox -message hi I run this, (8.4 active state and some 8.5.1/2 tclkits) and I cannot click the text in the entry. If I open a console on windows, then the entry can be selected. (this is after responding to the message in ei... 23 Jun 2008 14:47
How to find program path ? In my Tcl scripts, I often use GhostScript to convert PS to PDF format. The main platform for these programs is Windows XP. The problem is that each time I install a new version of GhostScript the running directory name is modified to reflect the version number. To partially solve the problem I put the GS path into... 24 Jun 2008 09:13
Changing the configuration of Headers in Treeview Treeview supports methods to configure items and cells (columns) but I haven't found a way to change the font and colors of the headings. The method not in the manual page and I haven't seen it posted. Does anyone have a solution? Thanks, Jake ... 22 Jun 2008 11:11
aes with critcl the aes tcl implementation is fine for small data but for large data it is quite slow and resource hungry. we thought of doing some parts of it with critcl so on our major platforms we will be able to compile a faster aes. we start with a test so I want to know what proc will make the most significant speed improv... 27 Jun 2008 19:21
How to read the last 100 lines from a text file Hello, I'd like to read the last 100 lines from a text file. I use the below method: 1. Move the file descriptor (fd) to the end of file. 2. Move fd 2 byte backwards. 3. Read a byte. 4. If the char is '\n', increase counter. And restart from 1 until counter == 100. Are there any better methods to do the job... 1 Jul 2008 08:12 |