G
Guest
Hello:
Is it just a good practice to fully qualify an object reference or does it
enhance performance?
For instance, if I have a Combo box, cmbMyCombo, on a form, which is better?
1. cmbMyCombo.SelectedIndex = 0
or
2. Me.cmbMyCombo.SelectedIndex = 0
Thanks for your advice.
Venkat
Is it just a good practice to fully qualify an object reference or does it
enhance performance?
For instance, if I have a Combo box, cmbMyCombo, on a form, which is better?
1. cmbMyCombo.SelectedIndex = 0
or
2. Me.cmbMyCombo.SelectedIndex = 0
Thanks for your advice.
Venkat