Custom Query (3920 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (352 - 354 of 3920)

Ticket Resolution Summary Owner Reporter
#1286 No Bug FileGetShortName does not expand . or .. directories flyingboz
Description

ConsoleWrite(FileGetShortName('.')) ConsoleWrite(FileGetShortName('..'))

Current behavior: The above commands do not return the shortname of the directories in question; rather they return the argument itself.

Desired behavior: Return the absolute path's shortname.

#1292 No Bug _IETagNameGetCollection Wooltown
Description

I have a script which is downloading the anti virus files from symantec, but if the script doesn't reach internet I get an error calling _IETagNameGetCollection, that function is calling _IEDocGetObj and that is where the error occur.

Attaching script and erro message.

#1293 No Bug odd value returned when assigning "default" to Scripting.Dictionary Gabriel13
Description

When the AutoIt "default" value is assigned to a Scripting.Dictionary object, and later retrieved, the result is no longer "default".

Instead, it becomes a strange "falsy" value which varGetType() identifies as "Object", yet it fails the isObj() test.

The code below illustrates what happens - I've also confirmed that this issue is present in the latest beta (3.3.1.5).

func testDictionary($v)
	local $d=objCreate('Scripting.Dictionary')
	$d.add('x',$v)
	return $d.item('x')
endfunc

msgbox(0,default,@AutoItVersion)

local $v=default
msgbox(0,default,'"' & string($v) & '"' & @LF & varGetType($v) & @LF & isObj($v))
; returns "Default", Keyword, 0

; assign to dictionary & then retrieve
$v=testDictionary($v)
msgbox(0,default,'"' & string($v) & '"' & @LF & varGetType($v) & @LF & isObj($v))
; returns "", Object, 0

if $v then
	msgbox(0,default,'truey')
else
	msgbox(0,default,'falsy')
endif
; returns "falsy"
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.