mvCtrl is an object variable. To assign a control to an object variable, you
must use the Set statement:
Dim mvCtrl As Control
Set mvCtrl = Me.ActiveControl
MsgBox mvCtrl.Value
When you are done with an object variable, you should free memory used by it
with another Set command:
Set mvCtrl = Nothing