Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (280 - 282 of 3897)

Ticket Resolution Summary Owner Reporter
#1010 Fixed FileRead UTF-8 auto-detection prevents reading of further files Jpm y.forkl@…
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.

#1013 Fixed MDI childs doesn't adjust to parent windows client rect Jpm monoceres
Description

When using the $WS_EX_MDICHILD style the MDI child doesn't adjust properly to the parent window's client rect (as specified b the documentation).

The problem is illustrated in the sample below:

#include <GuiConstantsEx.au3>
#include <windowsconstants.au3>

$MainhWnd = GUICreate("Welcome", 400, 300)
GUISetBkColor(0)
GUISetState()

$childhwnd = GUICreate("", 400, 300, 0, 0, $WS_POPUP+$WS_CHILD, $WS_EX_TOPMOST + $WS_EX_MDICHILD, $MainhWnd)
GUISetBkColor(0xFF0000)
GUISetState()
WinSetTrans($childhwnd, "", 128)


Do
Until GUIGetMsg()=-3

Also, it seems there are no reliable way to move a MDI child within the parent window since WinMove() takes absolute screen coordinates.

#1014 Fixed ColorMode option Valik GEOSoft
Description

Even though the option no longer exists there is still an entry for it in the documentation Table Of Contents

Function Reference>> Graphic and Sound Functions

Note: See TracQuery for help on using queries.