When I use the style $es_readonly, it does not seem to work with $es_multiline. What am I doing wrong?
#include<guiconstants.au3>
$Form1 = GUICreate("test", 615, 438, 192, 124)
$GUI_input = GUICtrlCreateInput("test"&@CRLF&"test2"&@CRLF&"why does this work", 96, 30, 50, 75,$ES_MULTILINE )
$GUI_input2 = GUICtrlCreateInput("test"&@CRLF&"test2"&@CRLF&"But this does not", 96, 200, 50, 75,bitor($ES_MULTILINE,$es_readonly) )
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd