Custom Query (3931 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (430 - 432 of 3931)

Ticket Resolution Summary Owner Reporter
#754 No Bug RUN COMMAND LOULOU25
Description

With the new version runcommand dosen't admit a path for launching the executable ex i want to launch an aexecutable which name is ctp.exe and resides on c:program files\filbanque\pro If i launch it with these synthax Run("c:\program files\filbanque\pro\ctp.exe") nothing happen but if my script is in the same directory than the program i can lauch it without any problem RUN("ctp.exe") I have the same problem with the dll version 3.3.0 of autoit and Xindows XP Professionnal SP3 French version

#756 No Bug Virus detected OptimusB@…
Description

When I build a script with the latest AutoIt3 3.3.0.0 and SciTE4, McAfee detects a virus in the EXE and deletes the file.

#758 No Bug ControlGetHandle() does not work if controlID is passed as string type variable shEiD
Description

In my script, I get controlID variable from registry with RegRead(). RegRead() returns value as string, although it is a number. After some confusing errors, I found, that ControlGetHandle("title", "text", controlID) function does not work, if you pass a string type variable for controlID.

In the example I simply set the controlID variable and change it to string and back to int:

#include <GuiToolBar.au3>
Opt("WinTitleMatchMode", 2)

$toolbar_id = 59392
$h_wnd = WinGetHandle($win_title)

; does not work
$toolbar_id = String($toolbar_id)
$h_toolbar = ControlGetHandle($h_wnd, "", $toolbar_id)
ConsoleWrite('$h_toolbar = ' & $h_toolbar & @CRLF)

; convert back to Int and it works!
$toolbar_id = Int($toolbar_id)
$h_toolbar = ControlGetHandle($h_wnd, "", $toolbar_id)
ConsoleWrite('$h_toolbar = ' & $h_toolbar & @CRLF)

The console output after running this code: $h_toolbar = $h_toolbar = 0x008908D6

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