I'm currently trying to separate some of my code from my main form, and create class files to handle some operations. I've read that it's not good practice to tie classes to a UI, so I was wondering how to still return information on the progression of events taking place in the class. When the code was present in the main form, I would write the status updates of the function to a text box, so that the user could know what was occurring.
How would I go about updating the user on a routine's status from a class via the main form?