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
Cor Ligthert - 28 Jan 2005 16:38 GMT
Clear,
Yes without that last useless statement to set it to nothing, that cost only
(very few) extra processing and does nothing.
Cor