Custom Query (3926 matches)
Results (19 - 21 of 3926)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3747 | Rejected | Want to add Select dropdown value Keyword to autoit robot framework library | ||
| Description |
hello, i want to add Select dropdown value Keyword to autoit robot framework library, please let me know how to do so. |
|||
| #1010 | Fixed | FileRead UTF-8 auto-detection prevents reading of further files | ||
| Description |
If a series of UTF-8 BOM-equipped files is read and their contents are appended to a string, FileRead will stop appending further files' contents as soon as it encounters any 8-bit character in one of the files, but only if trying to auto-detect the encoding. See attached script and sample files to reproduce the problem. Bug #454 is somehow related, however despite it being fixed the problem persists, so it should perhaps receive a ticket of its own. |
|||
| #1305 | No Bug | GUISetFont, GUICtrlCreateTreeViewItem, korean language combination bug | ||
| Description |
If you use the korean language with a treeview (GUICtrlCreateTreeViewItem) and use a GUI font (GUISetFont) then whatever parameter you use the text cannot be shown. Example script with UCS-2 Big Endian Encoding: #include <GUIConstants.au3>
GuiCreate("test")
GUISetFont(8, 300, 0, "Verdana"); <- if you comment this out than it works
$TreeView = GUICtrlCreateTreeView(50, 50, 150, 40)
GUICtrlCreateTreeViewItem("korean 업데이트", $TreeView)
GUICtrlCreateTreeViewItem("chinese 出碎片整理", $TreeView)
GUISetState ()
While 1
$msg = GuiGetMsg()
If $msg = $GUI_EVENT_CLOSE Then
ExitLoop
EndIf
WEnd
Exit
|
|||
