Custom Query (3922 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (391 - 393 of 3922)

Ticket Resolution Summary Owner Reporter
#689 No Bug @DesktopDir macro introduces unwanted characters at times. sanchezconsulting@…
Description

Under Windows Vista, the @DesktopDir macro sometimes "shifts" certain characters. For example, the ":" may get down shifted to a ";", while the "\" may get up shifted to "|"

This happens under Windows Vista English US, English Canada, French Canada and Spanish Latin America languages. The versions of Vista range from Home Premium to Ultimate with both 32- and 64-bit versions. The defect seems to be random.

The @DesktopDir macro was used to create a variable that contained a file name, and then ControlSend() was used to send the variable to a "Save As" window's edit box, so it could be a combination of both @DesktopDir and ControlSend()

#691 No Bug Not equal <> condition with OR gives wrong result anonymous
Description

Not equal <> condition with OR gives wrong result.

Example 1 give wrong result while example 2 gives correct result.

;example 1 (not working properly) $temp=7 If $temp <> 1 OR $temp <> 7 Then

MsgBox(0, "MTM", "weekday")

Else

MsgBox(0, "MTM", "weekend")

EndIf

;example 2 (working properly) $temp=7 If $temp = 1 OR $temp = 7 Then

MsgBox(0, "MTM", "weekend")

Else

MsgBox(0, "MTM", "weekday")

EndIf

#694 No Bug _SQLite_FetchNames psandu.ro@…
Description

this file don't run with 3.2.13.11:

..\Examples\Helpfile\_SQLite_FetchNames.au3

Error from Sctite:

C:\Program Files\AutoIt3\Examples\Helpfile\_SQLite_FetchNames.au3 (13) : ==> Subscript used with non-Array variable.: ConsoleWrite(StringFormat(" %-10s %-10s %-10s %-10s ", $aNames[0], $aNames[1], $aNames[2], $aNames[3]) & @CR) ConsoleWrite(StringFormat(" %-10s %-10s %-10s %-10s ", $aNames ERROR

and ..\Examples\Helpfile\_SQLite_Query.au3 -> this file return nothing


SQLite


Get Data using a Query : ??? -> nothing


OK


thank you

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