Custom Query (3921 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (385 - 387 of 3921)

Ticket Resolution Summary Owner Reporter
#3062 No Bug AuCheck didn't catch ' without & anonymous
Description

The code is:

Local $udfKeys = 'ab-c'
MsgBox(0,'',@ScriptLineNumber&':StringSplit($udfKeys,'-',0)[1]', _
StringSplit($udfKeys,'-',0)[1])

AU3Check doesn't complain.

In case this looks to you like a stupid or contrived piece of code, it arose in the following context.

I have a function ConsDebug(), that dumps the values of variables (including arrays) to the Console. I made it particularly easy to use:

I write

ConsDebug(@ScriptLineNumber&':',

then use AutoComplete to help in typing variable names, and Copy/Paste for stuff like StringSplit($udfKeys,'-',0), add a )

I then back-arrow once. I then Shift_BackArrow back to the comma I typed.

I then Ctrl_C, move the cursor to after the :, and Paste.

In this way I rapidly code a call to my dump function.

But this time, I didn't notice that ' occurs in the value arguments.

My code, before simplifying it for Trac, is:

#include "cdebug.au3"
ConsDebug(@ScriptLineNumber&':StringSplit($udfKeys,'-',0)', _
StringSplit($udfKeys,'-',0))
#3229 Completed Aut2Exe - Shows popup dialoags from AutoIt3Wrapper when running silent Jos cory.r.stein@…
Description

When calling the AutoIt3Wrapper silently (/NoStatus), any FileInstall errors halt the execution with a dialog. Ideally, it would nice to write them as errors to the console and cause it to fail.

#191 No Bug Aut2Exe adds aditional empty icon into EXE Zedna
Description

I discovered BUG in Aut2Exe. In latest beta 3.2.11.5 it places into compiled EXE new aditional icon with ordinal name 10 16x16 16 colors (second icongroup seen in reshacker). Note: In 3.2.10 it was OK.

Here is simple script: [code]MsgBox(0,,@AutoItVersion)code When I compile it with AutoIt 3.2.10 it's OK When I compile it AutoIt 3.2.11.5 beta there is new empty second icon and original second/third icons are moved (their position inside EXE is +1) output is shown on pictures a0_10, a0_11

The same result is also with Auto3Wrapper example like that: [code]#AutoIt3Wrapper_icon=my_icon.ico MsgBox(0,,@AutoItVersion)code output is shown on pictures a10, a11

There is more complicated script: [code]#AutoIt3Wrapper_Icon=log_view.ico #AutoIt3Wrapper_useupx=n #AutoIt3Wrapper_run_after=ResHacker.exe -add %out%, %out%, ikony.res , #AutoIt3Wrapper_run_after=upx.exe --best --compress-icons=0 "%out%"code where are more my own icons embeded in my EXE and their positions inside EXE compiled by latest beta is wrong. output is shown on pictures l10, l11

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