Custom Query (3927 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (391 - 393 of 3927)

Ticket Resolution Summary Owner Reporter
#1461 No Bug RightTab and LeftTab under ControlComand not working for Class:_wx_SysTabCtl32 coolnetalias
Description

I am making a POC using the FileZilla ftp client. The navigation steps of the control are as follows:

  1. Open FileZilla.
  2. Press Ctrl + s.
  3. Site manager window will be launched. Here there are 4 tabs; General, Advanced, Transfer settings and Chatset.
  4. When I use the code
    ControlCommand ("Site Manager","","SysTabControl321","TabRight","")
    

The next tab i.e. Advanced does not get opened rather General remains as it is.

#1467 No Bug DllStructSetData not support UTF8 anonymous
Description

[autoit] ;========================================================= ; Create the struct ; struct { ; int var1; ; unsigned char var2; ; unsigned int var3; ; char var4[128]; ; } ;========================================================= $str = "int;ubyte;uint;char[128]" $a = DllStructCreate($str) if @error Then

MsgBox(0,"","Error in DllStructCreate " & @error); exit

endif

DllStructSetData($a,1,-1) DllStructSetData($a,2,255) DllStructSetData($a,3,-1) DllStructSetData($a,4,"Hello 你好 中文 123") ;look here if string include chinese character the end will be cut some ;maybe stringlen() call not get ture,if string include chinese character DllStructSetData($a,4,Asc("h"),1)

;========================================================= ; Display info in the struct ;========================================================= MsgBox(0,"DllStruct","Struct Size: " & DllStructGetSize($a) & @CRLF & _

"Struct pointer: " & DllStructGetPtr($a) & @CRLF & _ "Data:" & @CRLF & _ DllStructGetData($a,1) & @CRLF & _ DllStructGetData($a,2) & @CRLF & _ DllStructGetData($a,3) & @CRLF & _ DllStructGetData($a,4))

;========================================================= ; Free the memory allocated for the struct ;========================================================= $a = 0

autoit

#1480 No Bug Corrupting registry when importing a .reg file with a delete key in it magnuslarsson73@…
Description

When running the following code, it corrupts the Windows registry (none of the shortcuts in the start menu work afterwards) at least not on Windows Server 2008 HPC Edition (x64). Reg file imports fine from cmd line (reg.exe import C:\scripts\setupReg.reg). Seems to be working in 3.3.5.4-beta.

{{ RunWait("reg.exe import C:\scripts\setupReg.reg") }}

Contents of C:\scripts\setupReg.reg:

{{ Windows Registry Editor Version 5.00

; ; Remove redundant Wow6432Node key if exists ; [-HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Wow6432Node]

}}

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