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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by sevans141

  1. sevans141

    Default fonts in Tcl and Tk

    It just seems to be Tcl/Tk. Even the demo widgets are scrsmbled. All the other apps and GUIs seem fine. (I didn't know there was a tcl chell. Tell me more.) Scott E.
  2. sevans141

    Default fonts in Tcl and Tk

    Our SAs just rebuilt all of our SunOS and Linux boxes. All the TCL tools I had developed will come up but the font is the dingbat font set. Unless I explicitly set each button, label, radiobutton, etc. with "-font = $font" (which I defint at the top to "helvetica 9"), I get the funky characters...
  3. sevans141

    need help with dynamic tcl displays

    BOB!!! You're my new hero. You were all over the answer like fat on a mother-in-law. You're last comment put me over the top! I appreciate all your help and the quick responses. Scott E.
  4. sevans141

    need help with dynamic tcl displays

    Here's what I have now... set myFile [open namefile r] set namelist [split [read $myFile] \n] close $myFile frame .one foreach person $name_list { set lower [string tolower $person] checkbutton .one.$lower -text $person -variable $person pack .one.$lower -side top -anchor w } pack...
  5. sevans141

    need help with dynamic tcl displays

    between the time I posted and getting your response, I figured out how to read i n the list file. But I appreciate your help anyway. The good news is that the display is presented, it's correct, and each person has a checkbox by their name. But... When I select a few names and hit "Do it" I...
  6. sevans141

    need help with dynamic tcl displays

    I'm fairly new to tcl scripting and could use a little help. I have a simple list file that will be of unknown size (somewhere between 10 to 20 names). I'd like to create a gui that has a checkbutton for each name in the list and a single action button that will do something for all the...

Part and Inventory Search

Back
Top