about form

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
 
C

Cor Ligthert

Clear,

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

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top