I have a form. The form has a procedure in it that makes a text box that is normally not visible, visible. The focus is then set to that text box. This procedure is declared as Public in the form. I'm trying to activate this procedure from a function that is in a module separate from the form. I'm having trouble getting the function to run the procedure in the form. The function is a date manipulation function. It grabs the date from a text box that is normally hidden on the form. Recap: Thus, I'm trying run some code outside of the form and in doing so I have to make a text box visible w/ the focus. Then return to the Function. Then make the text box not visible again.