Что нового

Autodesk Eagle Premium 9.6.2 -repack- -crack ((free))ing... -

Autodesk Eagle Premium 9.6.2 -repack- -crack ((free))ing... -

While downloading a modified installer like might seem like a quick way to bypass costs, it introduces vulnerabilities that can damage your hardware, compromise your security, and ruin hours of design work.

If you need a high-quality EDA tool but cannot afford a premium Autodesk subscription, there are several powerful, completely legal alternatives available. 1. Autodesk EAGLE Free / Personal Use

Autodesk EAGLE's core technologies have been integrated directly into Autodesk Fusion as its Electronics Design environment. Autodesk EAGLE Premium 9.6.2 -Repack- -Cracking...

An important notice regarding the search for is that downloading, distributing, or utilizing cracked versions of proprietary software poses significant legal, ethical, and cybersecurity risks.

Features multi-sheet schematics, electrical rule checking (ERC), and real-time netlists to ensure your circuit works on paper before routing. While downloading a modified installer like might seem

Over the past several years, Autodesk has transitioned EAGLE's standalone licensing model.

(Easily Applicable Graphical Layout Editor) is one of the most popular electronic design automation (EDA) applications in the world. It allows printed circuit board (PCB) designers to seamlessly connect schematic diagrams with PCB layouts. Autodesk EAGLE Free / Personal Use Autodesk EAGLE's

Supports complex designs with up to 16 signal layers, advanced design rule checking (DRC), and obstacle avoidance routing.

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

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