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

Bwidget Titleframe set location

Status
Not open for further replies.

Jack .L

Technical User
Mar 12, 2018
1
TW
I have a question related to TCL Problem with Bwidget Titleframe problem.
I wants to set a specific location and size of it for example like this
place .lab91 -in .frm -x 530 -y 250 -width 100 -height 30, is there possible to do it


MY Scipt:
Code:
package require  BWidget
wm minsize . 900 100
wm maxsize . 800 600
wm geometry . 900x700

frame .fmtype -borderwidth 2 -relief sunken 
pack  .fmtype  -side top -fill x  
set titf1 [TitleFrame .fmtype.titf1 -text "Label123" ]
pack $titf1  -side left -fill both -padx 4 -expand yes
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top