Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (400 - 402 of 3927)

Ticket Resolution Summary Owner Reporter
#2776 No Bug AutoItX: ControlFocus with Handle doesn't work Jon anno1977@…
Description

Calling ControlFocus in AutoItX3.Control and control handle as first parameter doesn't work, but with AutoIt3.exe it work properly.

FocusEditor.au3

$hControl = ControlGetHandle("Unbenannt - Editor", "", "Edit1")
ControlFocus($hControl, "", "")

FocusEditor.vbs

Set oAutoIt = WScript.CreateObject("AutoItX3.Control")
hControl = oAutoIt.ControlGetHandle("Unbenannt - Editor", "", "Edit1")
oAutoIt.ControlFocus hControl, "", ""
#2789 Fixed With EndWith parameter issue Jon jaberwacky
Description

Sorry for the title.

The following code demonstrates an issue with using parameters using With/EndWith. If the second parameter is not acessed directly but instead accessed by With then the function fails. Wow, I really don't have an elegant way to describe this. Let's let the example, which I haven't run, (provided by FaridAgl) speak for itself.

Global $oDictionary = ObjCreate("Scripting.Dictionary") 

$oDictionary.Add("A", "Value of A") 

With $oDictionary     
  MsgBox(0, .Count, $oDictionary.Item("A")) ;Doesn't fails     
  MsgBox(0, .Count, .Item("A")) ;Fails     
  MsgBox(0, $oDictionary.Count, .Item("A")) ;Fails too
EndWith

Forum post: http://www.autoitscript.com/forum/topic/110379-autoitobject-udf/?p=1182987

#2805 Fixed FileWriteLine() returns true when actually failing because disk is full Jon corz
Description

The title says it all, well mostly.

Here's a thread about the issue..

http://www.autoitscript.com/forum/topic/162855-disk-full-during-filewriteline/

;o) Cor

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