Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (28 - 30 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Ticket Resolution Summary Owner Reporter
#86 Fixed Scite, switching to other tab/file before Tidy is finished. Jos M.v.Gulik
Description

WHEN using the 'Tidy AutoIt Source' tool function, AND switching to a other tab/file, BEFORE the Tidy process is finished.

Forces a reload on the current(wrong) tab/file instead of the Tidy target file/tab. (erasing any modifications/edits on the active tab/file) oops.

Scite4AutoIt v2008.01.26 (AutoIt v3.2.10.0/v3.2.11.0, WinXp-Pro-sp2)

#88 Fixed Help file (Round) Jpm JamesB
Description

In the help file under round, you have: $x = Round(-1.582, 1) ;returns -1.6 $y = Round(3.1415, 9) ;no change $z = round(123.5, -1) ;returns 120

and not

$x = Round(-1.582, 1) ;returns -1.6 $y = Round(3.1415, 9) ;no change $z = Round(123.5, -1) ;returns 120

Just missed a capital :)

#89 Fixed RunAs w/ Profile does not grant acess to user environment Valik DaveF
Description

Using beta 3.2.11.0 on XP SP2:

In a child process spawned by the RunAs function with the proper flag to force the as-yet unloaded run-as user's profile to load, the child process's environment is that of the Default User rather than the run-as user's, though the other run-as elements of the run-as user's profile (such as the system registry) can be accessed as desired.

Code to reproduce:

; declare yourself
Dim $ourPID, $ourRead
; Run child task with option to load run-as user's profile
$ourPID = RunAs("is", @ComputerName, "smack", 1, @ComSpec & " /c set", @SystemDir, @SW_HIDE, 2)
; Read the child task's STDOUT output
While 1
  $ourRead &= StdoutRead($ourPID)
  If @error Then ExitLoop
WEnd
; Display result
MsgBox(0, "Debug", @AutoItVersion & " yields:" & @CRLF & $ourRead)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Note: See TracQuery for help on using queries.