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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

wish window

Status
Not open for further replies.

turtlejack

Technical User
Jan 25, 2005
26
0
0
US
I am relatively new to tcl.I am currently learning step by step from a web page..I have opened wish..there are 2 windows opened. one that says wish, and one that says console where I am inputting practice code.Why is the wish window greyed out(non accessible)?
I am using version 8.3.2..
any help to a beginner would be appreciated..
 
The Wish window is an empty frame. You can populate it (with widgets) by issuing commands on the console.
Try this. In the console type:
pack [label .l1 -text "this is a label"] -side top
pack [entry .e1 -textvariable e1val] -side top
set e1val "this is an entry"


Bob Rashkin
rrashkin@csc.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top