Core2Duo76
Новичок
- Сообщения
- 58
- Репутация
- 1
вот код. мсжбокс всегда выдает 1, окно не встраивается. что я делаю не так???
Код:
$oExcel = ObjCreate('Excel.Application')
GUICreate('', 500, 500)
$g = GUICtrlCreateObj($oExcel, 10,10, 480, 480)
if @error then MsgBox(0,'',@error)
GUISetState()
While 1
$msg = GUIGetMsg()
If $msg = $GUI_EVENT_CLOSE Then Exit
WEnd