Hi all.

WIth out Select case or public variables, is there a property that the module can use to generically refer to the form that called it?

example like so:
'module
Public Sub changefont(frmWhatever as form)
frmWhatever.Text1.font = "Arial"
end sub

'form
Form_Load()
changefont(Me)
end sub


Something like that?

This doesnt work because it returns type mismatch
also name of the form doesnt work as argument

possible?
Thanks

Wengang