Re: prg code function documentor in HMG
Posted: Sun Dec 08, 2019 1:07 am
since Console Output is so slow i want to make a GUI Version.
i try EDITBOX (WC_EDIT multi-line ) as Output
but than Memory grow up until it crash
YES i do "reset" Memory in procedure TheAligner() when Code is "Output"
so how can i show cData (it is one Line) under GUI ...
it does not make sence to "fill" a Control when action is just some Seconds
here is the FMG (only) which i use now
p.s. Time raise from 2 Seconds to 20 Seconds but that would be OK when i "see" Code ...
i try EDITBOX (WC_EDIT multi-line ) as Output
Code: Select all
cDummy := GetProperty("ClickForm","InBox","Value")
cDummy += CRLF
cDummy += cData
SetProperty("ClickForm","InBox","Value",cDummy)hm ... it was the Way i use under Clipper (Memo) / Xbase++ (XbpMLE) but here it "react" in other WayUnrecoverable error 9006: hb_xgrab can't allocate memory
YES i do "reset" Memory in procedure TheAligner() when Code is "Output"
so how can i show cData (it is one Line) under GUI ...
it does not make sence to "fill" a Control when action is just some Seconds
Code: Select all
procedure show_in( cData )
procedure show_out(cData ... )
procedure centertext( cSomeText ... )