Quote:
Originally Posted by Flasher2
|
Ich weiß nicht für was dieses Tool nützlich sein soll ...
Es gibt doch bereits Koda und das ist wohl die einfachste und auch schnellste Variante GUIs zu erstellen .
Wenn du eventuel noch den Code postets , dann kann ich dir sagen wie du das machen kannst .
Ich habe keine Ahnung wie dieses Programm arbeitet , ich vermute aber , dass alle ControlIDs in einem Array gespeichert werden , also könntest du dann einfach das Array mit dem richtigen Index löschen lassen .
Code (GUI-Resizing) :
PHP Code:
#include <ButtonConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
Opt("GUIResizeMode",1025)
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 633, 448, 192, 124,BitOR($WS_SIZEBOX , $WS_SYSMENU))
$Button1 = GUICtrlCreateButton("Button1", 104, 80, 137, 81, $WS_GROUP)
$Label1 = GUICtrlCreateLabel("Label1", 152, 272, 36, 17)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd