joakim Posted July 18, 2011 Posted July 18, 2011 I have a big program that I want to display verbose information during execution. That works, but after a certain amount of data is shown inside $myctredit, it will not write any more data to the control (program continues though). Below is the variable, the function and a sample use of the function. Am I running into a limitation of some sort? $myctredit = GUICtrlCreateEdit("Start text" & @crlf, 0, 280, 803, 220, $ES_AUTOVSCROLL + $WS_VSCROLL) Func _DisplayInfo($DegugInfo) GUICtrlSetData($myctredit, $DegugInfo, 1) EndFunc _DisplayInfo("bla bla bla." & @CRLF) Joakim
AdmiralAlkex Posted July 18, 2011 Posted July 18, 2011 You can get the limit with _GUICtrlEdit_GetLimitText() and change it with _GUICtrlEdit_SetLimitText().Also that's not how you should set multiple styles. See Setting Styles in the wiki. .Some of my scripts: ShiftER, Codec-Control, Resolution switcher for HTC ShiftSome of my UDFs: SDL UDF, SetDefaultDllDirectories, Converting GDI+ Bitmap/Image to SDL Surface
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