Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (157 - 159 of 3883)

Ticket Resolution Summary Owner Reporter
#3802 No Bug Window is not activated by a partial title Jon jamsnsou@…
Description

A C# / .Net 5.0 console project.

using AutoIt;
using System;
using static AutoIt.AutoItX;

AutoItSetOption("WinTitleMatchMode", -2);

Console.WriteLine("Window activating...");


Console.WriteLine(
    "by partial title: " +
    WinActivate("OneNote")
);

Console.WriteLine(
    "by full title: " +
    WinActivate("title - OneNote")
);

Console.WriteLine(
    "by handle: " +
    WinActivate(new IntPtr(0x0000000000250D90))
);

The output:

Window activating...
by partial title: 0
by full title: 1
by handle: 1

Why the partial title activation doesn't work?

#3801 Wont Fix AutoIt #include does not handle symlinks right if included file has #include-once genius257
Description

It would be nice if AutoIt used something like GetFinalPathNameByHandleA, for checking if included files using #include-once was already included.

I've attached a Tar file for reproducing the Issue. Administrative rights are needed to unpack the file.

#3800 Fixed Number() - case sensivity with scientific notation by using $NUMBER_AUTO AspirinJunkie
Description

Following Script:

$sIntUpper = "12345E5"
$sIntLower = "12345e5"

$sFloatUpper = "1.2345E5"
$sFloatLower = "1.2345e5"

ConsoleWrite(StringFormat("\n     xxx -> Number(xxx)\n% 8s -> %10d (Type: %s)\n% 8s -> %10.0f (Type: %s)\n% 8s -> %10.0f (Type: %s)\n% 8s -> %10.0f (Type: %s)\n\n", _
        $sIntUpper, Number($sIntUpper), VarGetType(Number($sIntUpper)), _
        $sIntLower, Number($sIntLower), VarGetType(Number($sIntLower)), _
        $sFloatUpper, Number($sFloatUpper), VarGetType(Number($sFloatUpper)), _
        $sFloatLower, Number($sFloatLower), VarGetType(Number($sFloatLower)) ))

produces:

     xxx -> Number(xxx)
 12345E5 ->      12345 (Type: Int32)
 12345e5 -> 1234500000 (Type: Double)
1.2345E5 ->     123450 (Type: Double)
1.2345e5 ->     123450 (Type: Double)

The capitalized letter "E" is recognized as an exponential character only if a decimal separator appears before it.

This is not the case for the lowercase "e".

Note: See TracQuery for help on using queries.