Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
miniconda3 /
python /
lib /
tk8.6 /
[ HOME SHELL ]
Name
Size
Permission
Action
demos
[ DIR ]
drwxrwxr-x
images
[ DIR ]
drwxrwxr-x
msgs
[ DIR ]
drwxrwxr-x
ttk
[ DIR ]
drwxrwxr-x
bgerror.tcl
8.33
KB
-rw-rw-r--
button.tcl
20.34
KB
-rw-rw-r--
choosedir.tcl
9.47
KB
-rw-rw-r--
clrpick.tcl
20.84
KB
-rw-rw-r--
comdlg.tcl
8.17
KB
-rw-rw-r--
console.tcl
31.44
KB
-rw-rw-r--
dialog.tcl
5.68
KB
-rw-rw-r--
entry.tcl
17.82
KB
-rw-rw-r--
focus.tcl
4.74
KB
-rw-rw-r--
fontchooser.tcl
17.36
KB
-rw-rw-r--
iconlist.tcl
16.35
KB
-rw-rw-r--
icons.tcl
10.63
KB
-rw-rw-r--
listbox.tcl
14.35
KB
-rw-rw-r--
megawidget.tcl
9.34
KB
-rw-rw-r--
menu.tcl
37.92
KB
-rw-rw-r--
mkpsenc.tcl
28.66
KB
-rw-rw-r--
msgbox.tcl
15.98
KB
-rw-rw-r--
obsolete.tcl
5.46
KB
-rw-rw-r--
optMenu.tcl
1.55
KB
-rw-rw-r--
palette.tcl
7.98
KB
-rw-rw-r--
panedwindow.tcl
5.05
KB
-rw-rw-r--
pkgIndex.tcl
150
B
-rw-rw-r--
safetk.tcl
7.2
KB
-rw-rw-r--
scale.tcl
8.19
KB
-rw-rw-r--
scrlbar.tcl
12.43
KB
-rw-rw-r--
spinbox.tcl
15.58
KB
-rw-rw-r--
tclIndex
19.79
KB
-rw-rw-r--
tearoff.tcl
4.36
KB
-rw-rw-r--
text.tcl
33.15
KB
-rw-rw-r--
tk.tcl
23.06
KB
-rw-rw-r--
tkAppInit.c
4.51
KB
-rw-rw-r--
tkfbox.tcl
37.47
KB
-rw-rw-r--
unsupported.tcl
10.01
KB
-rw-rw-r--
xmfbox.tcl
25.39
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : optMenu.tcl
# optMenu.tcl -- # # This file defines the procedure tk_optionMenu, which creates # an option button and its associated menu. # # Copyright (c) 1994 The Regents of the University of California. # Copyright (c) 1994 Sun Microsystems, Inc. # # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # ::tk_optionMenu -- # This procedure creates an option button named $w and an associated # menu. Together they provide the functionality of Motif option menus: # they can be used to select one of many values, and the current value # appears in the global variable varName, as well as in the text of # the option menubutton. The name of the menu is returned as the # procedure's result, so that the caller can use it to change configuration # options on the menu or otherwise manipulate it. # # Arguments: # w - The name to use for the menubutton. # varName - Global variable to hold the currently selected value. # firstValue - First of legal values for option (must be >= 1). # args - Any number of additional values. proc ::tk_optionMenu {w varName firstValue args} { upvar #0 $varName var if {![info exists var]} { set var $firstValue } menubutton $w -textvariable $varName -indicatoron 1 -menu $w.menu \ -relief raised -highlightthickness 1 -anchor c \ -direction flush menu $w.menu -tearoff 0 $w.menu add radiobutton -label $firstValue -variable $varName foreach i $args { $w.menu add radiobutton -label $i -variable $varName } return $w.menu }
Close