#include <GUIConstantsEx.au3>
InetGet("http://i041.radikal.ru/1101/83/56e2228eb21e.jpg", @TempDir & "\Group.jpg")
$hGUI = GUICreate("Test Script", 380, 350)
$nBk_Group = GUICtrlCreateLabel("", 12, 48, 356, 270)
GUICtrlSetBkColor($nBk_Group, 0xE99D2F)
$nGroup = GUICtrlCreateGroup("Group", 10, 40, 360, 280)
GUICtrlSetBkColor($nGroup, 0xE99D2F)
$nPic = GUICtrlCreatePic(@TempDir & "\Group.jpg", 100, 50, 163, 258)
GUISetState(@SW_SHOW, $hGUI)
While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd