#include <GuiConstantsEx.au3>
$hGUI = GUICreate("CONTROL", 250, 100)
GUICtrlCreateLabel("START or STOP", 57, 20, 150, 20)
GUICtrlSetFont(3, 11, 2000)
$StartService_Button = GUICtrlCreateButton("Start", 30, 55, 75, 25)
$StopService_Button = GUICtrlCreateButton("Stop", 145, 55, 75, 25)
GUISetState...