Hello,
Is it possible to left-aligns the text in an input that is a part of a GUI created with $WS_EX_LAYOUTRTL?
#include <GUIConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#region - GUI Create
GUICreate('', 250, 100 -1, -1, -1, -1, $WS_EX_LAYOUTRTL)
GUICtrlCreateInput('', 5, 5) ; Make it display Left to Right
GUISetState()
#endregion
#region - GUI SelectLoop
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
Exit
EndSel