access a watch item even if not debugging step by step in the Delphi IDE -
is possible see list of watches realtime value when not @ breakpoint?
- i have defined integer mycounter in public section of
tdatamodule
. - i add watch list.
- i can see value being updated in watch list debugging line line or @ rbeakpoint.
is there way keep seeing value in watch list when control goes vcl thread (=when press f9)?
there no way ide. watch evaluation requires threads in process suspended debugger can read memory , perform evaluation.
if want see values being refreshed without debugger breaking, have add code application instrument values of interest. example, add code application output debug messages (e.g. outputdebugstring()
, codesite etc.) whenever value changed. of course need view information in separate viewer.
Comments
Post a Comment