Jump to content

Recommended Posts

Posted

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...