Hi,
I retrieved the style and ex-style in hex format of and input control, however I don't want to have "magic numbers" in my script so I would like to have them in the constants format.
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#include <EditConstants.au3>
Local Const $hGUI = GUICreate("MyGUI")
GUICtrlCreateEdit("transparent and borderless edit", 10, 10, 280, 20, _
BitOR($WS_VISIBLE, $WS_CHILD, $ES_LEFT, $ES_READONLY, $ES_AUTOHSCROLL), _
0x00000004)
GUISetState()
While GUIGetMsg() <> $GUI_EVENT_CLOSE
Sleep(10)
WEnd
GUIDelete($hGUI)
As you can see I could not find what the ex-style "0x00000004" is, which seems to be "NOBORDER".
Thanks for any help.
Br, FireFox.