about form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Does .Net have a special way to show a Help/About form. I know a little
about the common dialog classes (like OpenFileDialog ) and was wondering if
there is something like that for an About form or if I should just do the
following:

' Show About form
Dim frmAboutAs New frmAbout
frmAbout.ShowDialog(Me)
frmAbout.Dispose()
frmAbout= Nothing
 
Clear,

Yes without that last useless statement to set it to nothing, that cost only
(very few) extra processing and does nothing.

Cor
 
Back
Top