Status logger - A97

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.
 
C

Chris

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top