﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3145	ObjGet 3.3.14.2 dont work	Zaibai		"Script example:
{{{
#include <MsgBoxConstants.au3>

; Example getting an Object using it's class name
; ; Excel must be activated for this example to be successful

Example()

Func Example()
    Local $oExcel = ObjGet("""", ""Excel.Application"") ; Get an existing Excel Object

    If @error Then
        MsgBox($MB_SYSTEMMODAL, """", ""Excel File Test"" & @CRLF & ""Error Getting an active Excel Object. Error code: "" & Hex(@error, 8))
        Return False
    EndIf

    $oExcel.Visible = 1 ; Let the guy show himself
    $oExcel.workbooks.add ; Add a new workbook
EndFunc   ;==>Example
}}}


If Excel is open or not open => Error: Error Getting an active Excel Object. Error code: 80020006

Can you help me ? :)"	Bug	closed		AutoIt	3.3.14.2	None	No Bug	objget	
