Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (391 - 393 of 3927)

Ticket Resolution Summary Owner Reporter
#2640 Fixed Surprising conversion Jon jchd18
Description

It would be natural to expect an integer from the following operations, involving conversion from (numeric) string to numeric variant:

ConsoleWrite(VarGetType("17" + 0) & @CRLF)
ConsoleWrite(VarGetType("17" - 0) & @CRLF)
ConsoleWrite(VarGetType("17" * 1) & @CRLF)

The beta gives the same result.

#2647 Completed Add line count of FileReadToArray to @extended Jon BrewManNH
Description

The function FileReadToArray doesn't return the count of the lines that were read in, so you have to use UBound to get this information or use _FileReadToArray.

My request is to add the line count by setting the @extended variable to the count of lines returned. This wouldn't be a script breaking change, as the current function doesn't use @extended for anything. It's also not unprecedented, as there are other functions that use @extended for similar features, such as the number of bytes downloaded in the InetRead function, StringRegExpReplace uses it for the number of replacements made, etc.

#2648 Fixed FileSaveDialog extension value Jon MyEarth
Description

The FileSaveDialog function don't return the extension value. With a multiple choice is fundamental because i don't know what is the user choice from the combobox

$var = FileSaveDialog("Choose a name.", @ScriptDir, "Scripts (*.au3)|Text files (*.txt)", 2, "MYNAME")
If @error Then
    MsgBox(4096, "", "Save cancelled.")
Else
    MsgBox(4096, "", "You chose " & $var)
EndIf

http://i58.tinypic.com/2chpa2r.jpg http://i58.tinypic.com/ip1vsm.jpg

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