Would someone tell me what the problem with this code is? I can't get the image into the GUI background. Thanks...
Global $hGuiWin = GUICreate ( "Contacts DB", 920, 760)
GUISetBkColor (0x000000, $hGuiWin )
GUICtrlCreatePic(@ScriptDir & '\Images\DB.png', 0, 0, 898, 747)
MsgBox(1, "title", @Error) ; Returns 1
MsgBox(1, "title", @ScriptDir & '\Images\DB.png') ; Says path is correct
GUISetState(@SW_SHOW)