Form Instantiating

  • Thread starter Thread starter Green Taylor
  • Start date Start date
G

Green Taylor

We have a form called frmCustomers

Two way we can instantiate this form.
1. Dim frmCustomers as New frmCustomers
2. Dim Frm as new FrmCustomers

Which one is the professional way to use.
Please tell me which is prefered any why.

Thanks in advance,
Green
 
Green Taylor said:
We have a form called frmCustomers

Two way we can instantiate this form.
1. Dim frmCustomers as New frmCustomers
2. Dim Frm as new FrmCustomers

Which one is the professional way to use.
Please tell me which is prefered any why.

There is no preferred way. You can choose an (almost) arbitrary name for
the variable.
 
Back
Top