Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#top frame for various widgets
pack [frame .ftop -borderwidth 4] -side top
set w .ftop
label $w.l1 -text El?gyártmány: -font -*-Helvetica-Bold-R-Normal-*-*-140-*-*-*-*-*-*
grid $w.l1 -row 1 -column 1
entry $w.e1 -width 25 -textvariable Stock
grid $$w.e1 -row 1 column 3
checkbutton $w.cb1 -command {.ftop.e2 configure -background white} -text Electroda -variable electrode
grid $w.cb1 -row 2 -column 1
label $w.l2 -text Nullpoint: -font -*-Helvetica-Bold-R-Normal-*-*-140-*-*-*-*-*-*
grid $w.l2 -row 2 -column 2
entry $w.e2 -textvariable MCSO
grid $w.e2 -row 2 -column 3
button $w.b1 -text ESC -command exit
button $w.b2 -text OK -command {set MCSorigin .MCSO; set stock .stock; exit}
grid $w.b1 -row 3 -column 1
grid $w.b2 -row 3 -column 2