hi friends, i created the following GUI to learn about GUI but on another computer it is not showing image in my GUI. on my pc it is showing the image but on other pc not.
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=F:\Step1.kxf
$Form2 = GUICreate("My First GUI", 408, 207, 212, 214)
$Pic1 = GUICtrlCreatePic("F:\DreamyWorld.jpg", 0, 0, 404, 204)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
do i need to install autoit on other computers if i want to show my image in GUI on other computer?