Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (253 - 255 of 3931)

Ticket Resolution Summary Owner Reporter
#1410 Fixed Using Pointer type with COM-object throws error. Jon monoceres
Description

AutoIt doesn't seem to have any code dealing with variables of pointer type when using COM, the following simple example throws com error 00000005.

$oMyError = ObjEvent("AutoIt.Error", "_Au3Obj_Err")
Func _Au3Obj_Err()
	MsgBox(48, 'COM Error', 'An error occured:' & @CRLF & $oMyError.description    & @CRLF & _
             "err.number is: "         & @TAB & hex($oMyError.number,8))
EndFunc   ;==>_Au3Obj_Err


$sh = ObjCreate("ScriptControl")
$sh.Language="VbScript"
$sh.Eval(Ptr(0))
#1428 Fixed AdlibUnRegister function name is case sensitive. Jon martin
Description

If the function name passed to AdlibUnregister does not match a function passed to AdlibRegister exactly then it has no effect. Example

AdlibRegister("MyAdlib")
sleep(2000)
AdlibUnRegister("Myadlib")
ConsoleWrite("after unreg" & @CRLF)
sleep(4000)
Func MyAdlib()
	ConsoleWrite("in func" & @CRLF)
EndFunc
#1439 Wont Fix Icons included in script use wrong size Jon P5ych0Gigabyte
Description

I have a script which uses a button with a 48x48 icon. When using an external ico file it works fine. However when using AutoIt3Wrapper to add an icon to the script it shows as 32x32. It is not a bug in AutoIt3Wrapper as opening the exe is reshacker shows the icon is indeed 48x48.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.