Personally I've never done this but the documentation says that procedures declared in Form or Report Class modules are automatically public, and can be called from anywhere within the database, although the safest way to document is to declare it as public and then call it by "pathing" it. The example of syntax for calling it is shown as:<br>
Sub PublicFormProc()<br>
Call Forms.frmHello.cbfIAmPublic<br>
End Sub