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 gkittelson 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. karelnijs

    listbox with a list

    sorry, but this line has to be corrected: foreach i [glob /* [exec ls -a $dir]] { #... } TO foreach i [exec ls -a $dir] { if {[file exists "$dir/$i"]} { eval [$box insert end $i] } #... }
  2. karelnijs

    listbox with a list

    i've just learned you can't assign a local variable to a listbox which is global available you have 3 options: 1. use a global variable and unset it after use 2. use a namespace 3. fill up the listbox with insert ***************************************************** 1. proc get_dirs {dir} {...

Part and Inventory Search

Back
Top