To ensure that the faster early binding method is used in situations in which you must declare an object to reference a form or control, refer to the specific type of form or control to create the reference as shown below :

'*** Declarations that force late binding
Dim c as control
Dim f as form

'*** Early Binding alternatives
Dim c as CheckBox
Dim f as Myform