Status logger - A97

  • Thread starter Thread starter Mark
  • Start date Start date
M

Mark

Hi all,

Is there a simple way to log diagnostics messages akin to the debugger
utility (debug.print) without creating a new table and using the
assorted machinery? Ideally, I would like to display the status info
sequentially in a distinct window and just scroll through the info
stream. The data does not need to be recorded. I am using A97.

Thanks for any suggestion.
 
Create a form. Name it frmLogger or something.
Create a textbox. Name it txtLogger and make it real big.

Now, instead of Debug.Print:

Forms!frmLogger!txtLogger.Value = Forms!frmLogger!
txtLogger.Value & "New Text Here" & vbCrLf


That should do the trick.

Chris
 
Back
Top