So, I already know how to do it locally using a 'For each' loop.
I also know how to do it from a code module, but for some reason (I'm just beginning to learn, go easy on me folks ) I can just make it work for the first form in my project.

The code in the code module looks like this (I'm not sure, I'm not at home right now)


public function RF(cleanctls as control) as control

for each typeof cleanctls in form1
if cleanctls = textbox then
cleanctls = ""
next

... and then the Textboxes in form1 go empty. What I'd like to know(even though it's short enough to be a local procedure, but for us programmers that just isn't enough right? Or I should say you since I'm just learning here)

is how to make it work for more forms in case I'm so lazy as to not want to type all that again in a local procedure or function to clean texboxes in a form. So, what's the way, dear elders? =0