|
First
|
Prev |
Next
|
Last
Pages: 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416
Mouse cursor on Windows Hi there! Is there a way to hide mouse cursor while it's over some widget? (on Windows). Thanks for help! -- Pozdrawiam! (Greetings!) Googie ... 18 Aug 2006 06:21
Getting pipe's stderr, but not stdout? My Tcl program spawns of a C-utility redirecting its stdout: set pipe [open "|$command > /tmp/somewhere" r] This fails with: can't read output from command: standard output was redirected How can access the utility's stderr output without chewing its stdout? Thanks! -mi ... 15 Aug 2006 17:29
How to make window sticky? Using TCL/TK, how do I make a top level window sticky? The window will be displayed under KDE 3.3 which AFAIK is, at least to some extent, EWMH compliant. -- Felix E. Klee ... 17 Aug 2006 14:57
Oratcl and fork issue I have a script which loops over a list of items and calls a proc which calls fork. After the child process exits the database resources seem to be lost: #!/usr/local/bin/tclsh8.4 proc processClient { CLIENT YYYYMMDD } { if { [ catch { fork } PID ] } { return -1 } if { ${PI... 17 Aug 2006 19:48
Expect get output of console command Problem: I would like to spawn a command promt navigate to a directory and get the output from a command. Right now I have this which is working fine... package require Expect set exp::winnt_debug 1 .. spawn C:\\WINNT\\SYSTEM32\\CMD.EXE .. <navigate to a directory> .. <run the command> After running the... 14 Aug 2006 15:16
Virtual TCL Dear All, I have download a program called VTCL . However, the last update was sometime in early 2003. I was wondering if there are any updates to this program or if somebody can recommend me another software? Regards, Wajih ... 14 Aug 2006 17:25
Orkut authentication Anyone ever tried to log in orkut using the http package? ... 11 Aug 2006 05:38
AW: Strange info exists Thanks Fredderic, that was enlightening! I have another question concerning variables (and to some degree "info exists"). It is some kind "hen and egg" problem: I want to test if a variable with a given name exists. If not it is created and the value is set. If it exists, then i want to get its value. So i... 11 Aug 2006 03:32
VARIABLES IN REGULAR EXPRESSIONS I'd like to use a regulare expression but it needs a variable - something like this set var 111.111 regexp {$var} "1111111" match This does not work....does TCL have the capability to use variables in regular expressions, if so what is the syntax. Thannks! ... 4 Aug 2006 19:00
Including a DLL in a Starkit I have a small utilitiy script that I created a ui for that uses the Oratcl package. I copy everything into the Starkit and I startup the exe but I get a "can't fine the Oratcl DLL" message; even though the path it shows is where the DLL is in the Starkit. If I comment out the package require and build the Starkit ... 3 Aug 2006 09:48 |