When using BWidget 1.7 (from within ActiveTcl 8.4.5-
7), the following wish script failed at the last command:
package require BWidget
pack [Entry .a]
.a insert insert "testing 1"
pack [LabelEntry .b]
.b insert insert "testing 2"
with an error message:
invalid command name "LabelEntry::insert"
According to the document of LabelEntry/BWidget, it
(very similar to Entry) say:
LabelEntry is a widget composed of LabelFrame widget
containing an Entry widget. Tk entry command can also
be used on LabelEntry widget.
Meaning "insert" should be supported by LabelEntry, but
it is not in BWidget 1.7. I didn't have this problem in
earlier version.
Jou