Question Send text to label from code module

WG1

Member
Joined
Mar 12, 2010
Messages
8
Programming Experience
Beginner
Have a label on a form which I want to show run time status, and have a code module which stores some functions. How do I send text from code module functions to this label on form?
 
You can also pass the reference to the control you want your method to change, f.ex: UpdateText(Label1, "the new text")
 
Back
Top