Diffrece between me.colse() and me.dispose

  • Thread starter Thread starter Amit D.Shinde
  • Start date Start date
A

Amit D.Shinde

Can anyone tell me what is the diffrence between Me.close and
Me.dispose

When Should I use them? i.e. If I want to close the application which
one should be used?

Help Me
Amit D Shinde
 
Amit D.Shinde said:
Can anyone tell me what is the diffrence between Me.close and
Me.dispose

When Should I use them? i.e. If I want to close the application
which one should be used?

Use Me.Close. Me.Dispose is called automatically when the form is closed. If
you call Dispose only, for example, the Closing and Closed events do not
fire.
 
Back
Top