Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. dotaliu

    how to invoke <key-enter> with command in entry form

    thanks bong, I want to input some command in the alternative terminal to replace pressing <Enter> key in the entry form of GUI.
  2. dotaliu

    how to invoke &lt;key-enter&gt; with command in entry form

    I want to use command to invoke <key-enter> in entry form, how to do it ? thanks
  3. dotaliu

    how to invoke a terminal from other terminal

    thanks Bong . If I want wish to invoke & popup the shell. how to do it?
  4. dotaliu

    how to invoke a terminal from other terminal

    I want to try this command, but i don't find it in my wish. Is there some packages need to load, what's them?
  5. dotaliu

    how to invoke a terminal from other terminal

    What i want to do is : In a terminal (maybe dtterm),a TK(wish) is called and running in the front ground. But During the period of wish, I want to invoke dtterm in the front ground. Some guys say to use "console show" , but I don't find this command in wish.
  6. dotaliu

    how to invoke a terminal from other terminal

    redhat enterprise 4
  7. dotaliu

    how to invoke a terminal from other terminal

    separate shells on the same computer.
  8. dotaliu

    how to invoke a terminal from other terminal

    If I have got terminal(A) ID, how to invoke A from terminal(B)?
  9. dotaliu

    how to popup a terminal on GUI?

    linux shell or tcl console.
  10. dotaliu

    how to popup a terminal on GUI?

    After starting a tk application in a terminal, I do some job on GUI and want to use bindkey to focus and popup this associated terminal, how to do it ?
  11. dotaliu

    why destroy error happen ?

    ex1: #!/usr/bin/wish toplevel .dialog button .dialog.ok -text "OK" -command { destroy .dialog } pack .dialog.ok ex2: #!/usr/bin/wish toplevel .dialog button .dialog.ok -text "OK" bind .dialog.ok <Enter> { destroy .dialog } bind .dialog.ok <Button-1> { destory .dialog } ex2 report...
  12. dotaliu

    how to run a proc at background ?

    thanks for Bong reply. Being a newhand, some question is not professional. I don't want to use complicate multi-thread , so your answer is enough.
  13. dotaliu

    how to run a proc at background ?

    for example: proc a {} { ... } proc b {} { puts "step 1" a puts "step 2" } Is there a way to run proc a at background ?
  14. dotaliu

    a small tk program problem

    thanks Bong. I tried some other ways and found one below also work: #!/usr/bin/wish set aa 0 for {set i 1} {$i < 5} {incr i} { set bt [button .$i -text $i] pack $bt bind $bt <Button-1> { incr aa %W configure -text $aa update } } change $bt configure...
  15. dotaliu

    a small tk program problem

    #!/usr/bin/wish set aa 0 for {set i 1} {$i < 5} {incr i} { set bt [button .$i -text $i] bind $bt <Button-1> { incr aa $bt configure -text $aa update } } when I press button .1 .2 .3 .4 , only button .4 text change. why this happen ? and how to make button...

Part and Inventory Search

Back
Top