|
First
|
Prev |
Next
|
Last
Pages: 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
XOTcl and Namespace On Jun 18, 12:10 am, Manfred Stelzhammer <manf...(a)antispam.at> wrote: Hi I have a small script: ## package require XOTcl namespace import xotcl::* Class Test -slots { Attribute id -default TEST} Test instproc init {args} { my requireNamespace} Test t1 pack [entry... 19 Jun 2008 17:50
How to store the value of foreach variable in a variable Hi all, How can i store the value of foreach variable value in a variable, so that i can use stored variable in other procedures. I can't access the value of foreach variable value in other procedures. for example set w .foreachex toplevel $w foreach var { hi hello } { radiobutton $w.left -tex... 19 Jun 2008 01:17
TEA sampleextension bs <brett.schwarz(a)gmail.com> writes: On Jun 12, 10:52 am, Nicolas Castagne <casta...(a)imag.fr> wrote: Hi folks, I am on the process of cleaning a tcl extensions for math computation I that wraps minpack, before releasing it to the community. To that aim, I am trying to conform with TEA. ... 19 Jun 2008 01:17
FREE SOFTWARE DOWNLOAD FREE SOFTWARE DOWNLOAD ONLINE http://freesoftwareonlinedownload.blogspot.com ... 19 Jun 2008 01:17
TclOO: proper way to create abstract class? What's the proper way to make an abstract class in TclOO? This is what I've come up with: oo::class create Foo { constructor {} { if {[namespace tail [info object class [self]]] eq "Foo"} { return -code error "abstract class: cannot instantiate" } ... } } Is there a better w... 19 Jun 2008 01:17
expect match fancy prompt Hi, I have been trying to figure out how to match the prompt described below. Actually I think I just want to match the from the dollar sign to the end of the prompt. PS1='\[\033[01;32m\]\u@\h\[\033[01;34m\] \w \$\[\033[00m\] ' Alternatively can anbody provide a link to a good primer on escape sequences... 19 Jun 2008 09:34
CRC64 checksum Jeannot a �crit : On 17 juin, 03:40, Darren New <d...(a)san.rr.com> wrote: s...(a)controlq.com wrote: I figure that this would take very little to wrap in a Tcl extension ... Even less than you think. The work is already done. -- Darren New / San Diego, CA, USA (PST) Helpful housekeeping h... 19 Jun 2008 01:17
suppress Command-q exit on OS X In Windows, it's possible to use [wm protocol $win WM_DELETE_WINDOW] to prevent the <Alt-F4> key sequence from closing a Tcl/Tk program. However, the same trick does not prevent OS X from summarily exiting a script as soon as the user presses <Command-q>. Is there any way to override the Command-q behavior? Tha... 19 Jun 2008 01:17
XOTcl and Namespace Hi I have a small script: ## package require XOTcl namespace import xotcl::* Class Test -slots { Attribute id -default TEST } Test instproc init {args} { my requireNamespace } Test t1 pack [entry .en1 -textvariable ::t1::id] pack [entry .en2 -textvariable ::t2::id] t1 move t2 t2 copy t3... 19 Jun 2008 01:17
return and one proc calling another I have a proc mapped to a url in http server. The end result of the return command is an xml document. However, I can't get that far because of a prior return command, apparently. The problem I am running into is that the main proc calls another proc, and I am getting the output of the return command from the ... 19 Jun 2008 14:44 |