Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (73 - 75 of 3866)

Ticket Resolution Summary Owner Reporter
#353 No Bug Aut2exe adding weird blank icons to compiled apps corz
Description

I have recently upgraded my AutoIt installation (from 3.2.9.3b to 3.2.12.0) and I've discovered what looks like a bug in Aut2exe; it's adding blank 16x16x16 icons into the compiled application, at id#2 (after the main application icon).

If other icons are added to the application, e.g. document icons (with AutoIt3Wrapper) their id's are shifted up by one, and the document icon (or whatever) appears incorrectly on the user's system - in a defaulticon registry setting, for example, but it's true of any place that might reference one of the application's icons by its standard windows id.

I guessed it might be a lack of 16x16x16 format icon in my own application icons, but even using Aut2exe without AutoIt3Wrapper and no compile option whatsoever, this extra blank icon appears, and the AutoIt default icon has the 16x16x16 format, so that's not the reason, not that that would be a good reason!

I've searched the forum, documentation and history, and I can't find any mention of this extra icon's purpose, other than to mess up all the icon id's. Is this a bug?

I don't want to go implementing changes to my application's installers to fix all these references to something that's just going to be fixed back again. If it's going to be fixed, I could instead temporarily remove this weird blank icon from compiled applications until it's fixed, which though a pain (I always have to go into ResHacker anyway), would be preferable for end-users.

;o) (or

#356 No Bug ConsoleWrite not working on Vista. Tlem
Description

Perhaps I made something wrong, but on Vista this code doesn't work :

Local $var = "Test"
ConsoleWrite("var=" & $var & @CRLF)

Even if I try other writing methods ... If I put #RequireAdmin it doesn't work anymore ... It will be probably necessery to have a look on all consolexxx command on Vista and Windows 2008.

I Don't know if it's AutoIt or Scite4AutoIt !!!

Tanks for your work

#363 No Bug UDF Func Declaration & #CS #CE Comment goldenix
Description

Try Running This, You will see, that its Not Skipping the #Cs Comments & its erroring: ERROR: _UDF_ByReference() already defined.. If you delete all Commented Stuff, it works.

;~ Sample 1
;~ ==================================================================================
;~ ----------------------------------------------
$e = _UDF_ByReference(100,200)
MsgBox(0, 'Sample 1', $e)
;~ ----------------------------------------------
MsgBox(0, 'Sample 2', _UDF_ByReference(200,200))
;~ ----------------------------------------------

Func _UDF_ByReference($parameter1,$parameter2)
    $xxx = $parameter1 + $parameter2
    Return $xxx
EndFunc
;~ ==================================================================================

#cs-----------------
;~ Sample 1
;~ ==================================================================================
;~ ----------------------------------------------
$e = _UDF_ByReference(100,200)
MsgBox(0, 'Sample 1', $e)
;~ ----------------------------------------------
MsgBox(0, 'Sample 2', _UDF_ByReference(200,200))
;~ ----------------------------------------------

Func _UDF_ByReference($parameter1,$parameter2)

    Return $parameter1 & $parameter2
EndFunc
;~ ==================================================================================
#ce-----------------
Note: See TracQuery for help on using queries.