I want to use a variable in a module to do the following:

cboComboBox.Clear

In a module, you have to specify which form on which this is supposed to happen. I want to have the form name be a variable so that I can use this code with several forms. On the form, I have the following code:

strFormName = Me.Name

The following code, which I am putting in my module is incorrect, but how do I fix this?

strFormName!cboComboBox.Clear