tcl
move an existing frame to a new frame and create a new frame using old name
i\'ve used a frame in tcl named frame1 and others also. Now i set a proc to destroy all these frames. what i want to do is to move thes开发者_如何学运维e frames to a new variable and create new frames[详细]
2023-04-06 22:27 分类:问答Printing out source hierarchy with large TCL project
So I am working with a large TCL project and thought it would be cool to build a treeview of how files were being source in the project. I modified the source command to do the following:[详细]
2023-04-06 09:51 分类:问答Is there a TCL equivalent for php's readfile function?
The Situation: Imagine two servers A and B. Server B just outputs a PDF file that nicely displays information retrieved from any xml string passed to it via a url parameter. Server A\'s job is to buil[详细]
2023-04-05 23:44 分类:问答TCL string match vs regexps
Is it开发者_高级运维 right that we should avoid using regexp as it is slow. Instead we should use string operations. Are there cases that both can be used but regexp is better?You should use the appro[详细]
2023-04-04 22:08 分类:问答Determine type of a variable in Tcl
I\'m looking for a way to find the type of a variable in Tcl. For example if I have the variable $a and I want to know whether it is an integer.[详细]
2023-04-04 20:17 分类:问答Missing TCL package smtp
I\'m using activestate TCL which I thought was suppose to include smtp in the default install. However when I run the following example (From the documentation):[详细]
2023-04-03 18:57 分类:问答Expect/TCL: pass commands to specific proc/spawn IDs
I am trying to write an expect script that will do the following.. open up 13 terminal windows (gnome-terminal, xterm etc)[详细]
2023-04-03 17:06 分类:问答String path with spaces in TCL not working
Why can\'t i do this in TCL: set path \"|C:/Program Files/Example/My Program/prgrm.exe\" The string path will get the value:[详细]
2023-04-03 16:52 分类:问答Is this "pixel shift" a bug in tcl/tk canvas?
Look at result of this script: canvas .c -bg white grid .c set x1 20 set x2 22 set y2 105 for {set f 0} {$f<50} {incr f} {[详细]
2023-04-03 13:09 分类:问答TCL: While no key is pressed loop
I would like to run a while loop until the stdin is filled with a character. puts "Press x + <enter> to stop."[详细]
2023-04-02 23:02 分类:问答