# This demonstration script creates a simple form with a bunch
# of entry widgets.
#
# SCCS: @(#) form.tcl 1.4 96/02/16 10:49:30
set w .form
catch {destroy $w}
toplevel $w
wm title $w "Form Demonstration"
wm iconname $w "form"
positionWindow $w
label $w.msg -font $font -wraplength 4i -justify left -text "This window contains a simple form where you can type in the various entries and use tabs to move circularly between the entries."