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 Chris Miller 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. AdriansonCrusoe

    same program, optional GUI toolkits ?

    I come from interpreted language programming so bear with me :) Is it posible for a C program to use one or another GUI toolkit present in the system ? e.g. if there's TK use it, if not: if there's GTK use it, if not: etc.
  2. AdriansonCrusoe

    DOS and TK "popups"

    OK, thanks :)
  3. AdriansonCrusoe

    DOS and TK "popups"

    So, on a tcl/tk port for DOS ( e.g. http://www.wagner.pp.ru/~vitus/software/tcl/tcldos.html ) a script is to be run from Windows, not straight from DOS command line ?
  4. AdriansonCrusoe

    DOS and TK "popups"

    Hello, Do toplevel, getOpenFile, popup, menues, etc work on DOS ?
  5. AdriansonCrusoe

    A very minimal text editor

    A simple TK text editor: http://www.kulichki.com/ostrova/bera/Manuals/Languages/TclTk/TCL2/sectionstar2.4.2.html
  6. AdriansonCrusoe

    beginner

    If you mean you didn't find a Tcl/Tk distribution for Solaris, you may try tclkit: http://www.patthoyts.tk/tclkit/ Wish is an application for testing how Tcl works, you don't actually need it to write Tcl scripts.
  7. AdriansonCrusoe

    list vs. dict : how to rearrange indices after removing element?

    Yeap, I thought it wasn't possible right out-of-the-box, but I was hoping I could spare myself nested lists and custom code. XD Thank you anyway :)
  8. AdriansonCrusoe

    list vs. dict : how to rearrange indices after removing element?

    Thanks for replying :) It's quite the opposite, I need the keys to readjust themselves like list indices do, so if you delete key x then key x+1 becomes key x, and key x+2 becomes key x+1, etc.
  9. AdriansonCrusoe

    list vs. dict : how to rearrange indices after removing element?

    With lists, when you delete one element the indices are rearranged, e.g. deleting "zero" from "zero one two" gives lindex 0 = "one". Is that possible with [dict create 0 "zero" 1 "one" ...] ? ( something like PHP's array_splice )

Part and Inventory Search

Back
Top