Code: Alles auswählen
#include ".\MyIncludes\_UskinLibrary.au3"
_Uskin_LoadDLL()
#include ".\MyIncludes\Safari.au3"
_USkin_Init(_Safari(True))
#include "Form\frmMain.isf" ; Primaire form om alle instellingen te maken
GUISetState(@SW_SHOW, $frmMain)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
GUIDelete($frmMain)
Case $Button1
Call("WriteSettings")
GUIDelete($frmMain)
Case $Button2
Exit
EndSwitch
WEnd

Cheers, Starf0x