#include #include #include Func _QGAbout() $About = GUICreate("About", 246, 288, -1, -1, $WS_SYSMENU, BitOR($WS_EX_TOPMOST, $WS_EX_WINDOWEDGE)) $Version = GUICtrlCreateLabel("Version 1.0", 175, 266, 57, 17) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE GUISetState(@SW_HIDE) ExitLoop EndSwitch WEnd EndFunc ;==>_QGAbout