Что нового

Mtk Flash Tool V618rar New [patched] -

Mtk Flash Tool V618rar New [patched] -

While newer versions like v6.2404 exist, v6.18 remains relevant due to its lightweight nature and specific feature set: SP Flash Tool En - Xiaomi Tools

: Flashing custom recoveries like TWRP or CWM to enable further customization or rooting. mtk flash tool v618rar new

: Reviving "bricked" phones that are stuck in a boot loop, show a black screen, or will not power on due to software corruption. While newer versions like v6

: Installing or re-installing the original operating system (Stock ROM) provided by the manufacturer. The is a specific, popular release of the

The is a specific, popular release of the SP Flash Tool (Smartphone Flash Tool), a specialized utility designed for devices powered by MediaTek (MTK) processors . This version is often sought after for its stability and compatibility with a wide range of older and mid-range MediaTek-based Android smartphones and tablets. What is MTK Flash Tool v6.18?

The "mtk flash tool v618rar new" refers to the compressed archive containing version 6.18 of the official MediaTek flashing software. It is primarily used by technicians and advanced users to communicate directly with the device's hardware via a computer to perform deep system modifications. Key capabilities of this version include:

: Formatting the device's file system or managing specific memory partitions. Core Features of Version 6.18

Автор
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

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