Что нового

Adobe Pagemaker Portable 70 1 Top -

Adobe Pagemaker Portable 70 1 Top -

Adobe PageMaker 7.0.1 was the final major release of the program that pioneered desktop publishing (DTP). While many users still search for a "portable" version of this classic software to avoid installation on modern systems, using such versions carries significant security and legal risks. The Legacy of Adobe PageMaker 7.0.1

: It allowed the direct placement of native Adobe Photoshop and Illustrator files. adobe pagemaker portable 70 1 top

: Users could export documents directly to Adobe Portable Document Format (PDF) with one click. Adobe PageMaker 7

: The software included a comprehensive toolbox with pointer, text, rotation, and cropping tools to manage page layouts. Risks of "Portable" and Discontinued Versions : Users could export documents directly to Adobe

"Portable" software typically refers to versions modified to run without a standard installation, often shared as zip files on unofficial sites.

: This feature simplified creating custom publications like mailing labels or catalogs by merging text and graphics from databases.

Released in July 2001, PageMaker 7.0 was designed for business and education professionals to create high-quality publications like brochures, newsletters, and reports. :

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

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