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
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