Basically yes. You can copy the FillBM function to the template module that contains the macro that calls the userform. That macro at its simplest would be something like
Code:
Sub AutoNew()
Dim oFrm As New UserForm1 'The name of the userform
oFrm.Show
Unload oFrm
End Sub