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 TouchToneTommy 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. bellecombe

    Usin class method in constructor

    Hi I am transforming a rather large TCL script (almost 900 lines) in class. The script has many proc, some will become methods, others remain proc. I would use in the constructor both procs and methods, for proc it seems that they must be defined in the body of the constructor and must precede...
  2. bellecombe

    Remove items from Dictionary

    Thanks, I already tried it without the join and saw that it works.
  3. bellecombe

    Remove items from Dictionary

    Tanks xwb, I wasn't aware of the expansion operator. best regards
  4. bellecombe

    Remove items from Dictionary

    Hi I need to remove some entries from dict, based on pattern i.e.: set keyValueMap [dict create "WidgetTEXT" "T" "WidgetPASSWORD" "P" "defValuesDEFAULTS" "DEFAULT" "defValuesRDB" "R"] set keyValueMap [dict remove $keyValueMap [join [dict keys $keyValueMap "Widget*"]]] Although [join [dict keys...
  5. bellecombe

    Converting Unicode characters

    Thanks xwb The file is coded utf8 without BOM; I am working on Windows and in my application I have both a TCL variable both a file text that contains \u270E and the first case Lower Right Pencil is showed correctly. For the \u270E in a file I have found an answer i.e.: ... if {[file...
  6. bellecombe

    Converting Unicode characters

    Hi In my tcl script I have this: ... append p "B,confirmButton,\u2714,,Exit Ok;" ... that is used for generate a form button with caption the Unicode Lower Right Pencil. When this is into a file this not appens i.e I am not be able to convert the below alternatives into a desired caption...
  7. bellecombe

    Window background

    Hi I'm writing a module generator in TCL / TK and I'm fighting hard with the language I'm new to. Among other things I would like to impose a color on the background. My application use the grid for insert the widgets: grid [ttk::frame .fg -padding "3 3 12 12" -relief ridge] -column 0 -row 0...

Part and Inventory Search

Back
Top