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: *

  • Users: dotaliu
  • Content: Threads
  • Order by date
  1. dotaliu

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

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

    how to invoke a terminal from other terminal

    If I have got terminal(A) ID, how to invoke A from terminal(B)?
  3. 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 ?
  4. 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...
  5. 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 ?
  6. 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