Что нового

Ksweb Pro Apk Mod Link Direct

Ksweb Pro Apk Mod Link Direct

Support for various versions (e.g., 5.6 to 8.x) for running scripts. MySQL/MariaDB: A full database management system. FTP Server: To easily transfer files to your device. Scheduler: A cron-like tool to automate web tasks. Risks of Using "KSWEB Pro APK Mod"

KSWEB is a powerful web developer kit for Android that turns your smartphone into a portable server hosting environment. While many users search for a "KSWEB Pro APK Mod link" to unlock premium features for free, using modded software carries significant security and legal risks. What is KSWEB Pro? ksweb pro apk mod link

The official KSWEB suite, developed by KS Labs, provides a full-stack development environment directly on your Android device. It is particularly useful for developers who need to test PHP-based sites or manage databases on the go. The package typically includes: Lighttpd, Nginx, and Apache support. Support for various versions (e

Searching for and installing modded APKs from unofficial links exposes your device and personal data to several dangers: MOD APKs: Are They Safe? Risks & Security Tips - Ftp Scheduler: A cron-like tool to automate web tasks

Автор
T

Tuxzer92

Новичок
Сообщения
65
Репутация
0
Код:
#include <GUIConstantsEx.au3>
#include <ButtonConstants.au3>

Local $nCh1, $nCh2, $nCh3, $nCh4, $nCh5, $nCh6, $msg, $text, $FileSize
$TotalSize=0
$DownloadSize=3
$Free="9"
GUICreate("My GUI Checkbox") ; Создаёт окно в центре экрана
$Label=GUICtrlCreateLabel($text,10,50,100,50)
$Label2=GUICtrlCreateLabel($Free,50,50,100,50)
$nCh1 = GUICtrlCreateCheckbox("Checkbox 1", 10, 10, 120, 20)
$nCh2 = GUICtrlCreateCheckbox("Checkbox 2", 10, 90, 120, 20)
$nCh3 = GUICtrlCreateCheckbox("Checkbox 3", 10, 150, 120, 20)
GUISetState() ; показывает созданное окно

; Запускается цикл опроса GUI до тех пор пока окно не будет закрыто
While 1
    $msg = GUIGetMsg()
    If $msg = $GUI_EVENT_CLOSE Then ExitLoop
   Switch $msg
	  Case $nCh1
		 Check($msg)
	  Case $nCh2
		 Check($msg)
	  Case $nCh3
		 Check($msg)
   EndSwitch
WEnd

Func Check($msg)
   If GUICtrlRead($msg) = $GUI_CHECKED Then
	  $TotalSize+=$DownloadSize
	  GUICtrlSetData ($Label, $TotalSize )
	  If $TotalSize >= $Free Then
		 MsgBox(16,"","ERROR")
	  EndIf
   EndIf
   If GUICtrlRead($msg) = $GUI_UNCHECKED Then
	   $TotalSize-=$DownloadSize
	  GUICtrlSetData ($Label, $TotalSize )
   EndIf
EndFunc

Решил так.
 
Верх