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: ovey
  • Order by date
  1. ovey

    Array Syntax Problem - Take a look

    Try this (it looks odd but works!!) puts [set STATS[set x](-VPI)] Hope this helps.
  2. ovey

    Help Please...Binding mouse event to widget

    The example I gave was for Tcl/Tk since this is a Tcl/Tk forum !! You might be better off asking in the Python Forum.
  3. ovey

    Help Please...Binding mouse event to widget

    Here is one way to do it: proc DoUpdate {} { # This proc will be called every 100ms whilst the button # is held down incr ::bob set ::id [after 100 DoUpdate] } set id 0 set bob 0 button .b -textvariable bob pack .b bind .b <ButtonPress-1> {DoUpdate} bind .b <ButtonRelease-1> {after...
  4. ovey

    Popup menu on dialog title bar

    I have noticed that if you right-click on a Tcl/tk toplevel title bar (bringing up the popup menu) the application appears to freeze (i.e. no events are processed). This does not appear to happen in other windows programs. Is this due to the way Tcl/tk is implemented and is there a way to...

Part and Inventory Search

Back
Top