Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (412 - 414 of 3931)

Ticket Resolution Summary Owner Reporter
#1562 No Bug multiple conditions fail Jos lex771@…
Description

;The problem can best be descriped by the following code: $feed = "3" ;The problem happens at Switch... Case... ;when there are multiple conditions: Switch $feed

Case "1" Or "2"

MsgBox(16, "?", "this also happens when $feed = 3")

Case Else

MsgBox(16, "?", "this never happens")

EndSwitch ;The problem is the same at Select... Case...: Select

Case $feed = "1" Or "2"

MsgBox(16, "?", "this also happens when $feed = 3")

Case Else

MsgBox(16, "?", "this never happens")

EndSelect ;The problem is the same at If... Then...: If $feed = "1" Or "2" Then

MsgBox(16, "?", "this also happens when $feed = 3")

Else

MsgBox(16, "?", "this never happens")

EndIf ;The compiler accepts this but der program behaves not as supposed ;Is this a bug? ;I use SciTE4AutoIt3 Version 1.79

#1563 No Bug FileExists() returns false in error when x86-compiled script runs on x64 Win 7 scriptingsteve
Description

I have a 32-bit-compiled autoit script that is returning false in error when run on 64-bit Windows 7 for this code:

{{ $Dir=@WindowsDir & "\System32\Drivers\mrxsmb10.sys" If FileExists($Dir) Then

Msgbox(64,"File found","File '" & $Dir & "' Version " & FileGetVersion($Dir))

Else

Msgbox(16,"Error","File '" & $Dir & "' not found.")

EndIf }}

The file is physically in the above location (C:\Windows\System32\Drivers\Mrxsmb10.sys). When the script is compiled x86 (AutoIt 3360), it returns false (incorrect). If the same script is recompiled as x64(AutoIt 3360), it returns true (correct).

Is this a bug or a 32 / 64-bit limitation?

#1564 No Bug Not able to get text using controlistview("","","","gettext",$index) for 64 bit machine Jpm ravi786
Description

I m trying to retrive the item from syslistview opn 64 bit machine using below syntax: controlistview("","","","gettext",$index) but it is not giving any result.

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