topten Posted January 14, 2016 Posted January 14, 2016 I have edit box. On pressing enter it doesnt move to a new line. How can I change this?#include <GuiConstants.au3> #include <GuiEdit.au3> ; ================= main GUI ==================== $Main = GUICreate ("test", 200,150 ) $hEdit = GUICtrlCreateEdit("", 10, 10, 180, 100, $ES_AUTOVSCROLL+$WS_VSCROLL ) GUISetState () While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop WEnd
jdelaney Posted January 14, 2016 Posted January 14, 2016 You can get some funky returns adding together binary data...use BitOr instead. IEbyXPATH-Grab IE DOM objects by XPATH IEscriptRecord-Makings of an IE script recorder ExcelFromXML-Create Excel docs without excel installed GetAllWindowControls-Output all control data on a given window.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now