#include <GuiConstantsEX.au3>
#include <GDIPlus.au3>
#include "resources.au3"
_GDIPlus_Startup()
$hGui = GUICreate("show png", 350, 300)
$hPic = GUICtrlCreatePic("", 25, 25, 300, 200)
$Button = GUICtrlCreateButton("view", 130, 250, 75, 21)
GUISetState()
While 1
$msg = GUIGetMsg()
Switch $msg
Case $GUI_EVENT_CLOSE
ExitLoop
Case $Button
$OpenFile = FileOpenDialog("Select image file", "", "image(*.png)")
_GUICtrlStatic_SetP