A Tk listbox based combobox.
With a string match patterns searching.
Download: http://perso.wanadoo.fr/maurice.ulis/tcl/Tinycombo
ulis
---
Don't let Ayatollahs think for you!
Ulis,
I just dl'd your tinycombo widget. I immediately ran into a problem when I
tried to [package require] it into a test script. The problem is in your
pkgindex.tcl file. It contains a hardcoded path that's specific to your
system:
package ifneeded Tinycombo 0.9 { source d:/mb/src/Tinycombo/tinycombo.tcl }
It should probably be changed to something more generic, like:
package ifneeded Tinycombo 0.9 [list source [file join $dir
"tinycombo.tcl"]]
I haven't really played much with the widget itself, so I can't really
comment yet, although I do look forward to experimenting with it when I have
some time.
Best regards,
Jeff
Thanks Jeff. I changed that.
ulis