The List Manager Project: Adding the "About Box"


Get Adobe Flash player

The code for the button on the About Box is:

Public Class FrmAbout
   Private Sub BtnOK_Click(sender As System.Object, e As System.EventArgs) _
       Handles BtnOK.Click
      Close()
   End Sub
End Class

The code for the menu item "About" on form1 is:

Private Sub AboutListManagerToolStripMenuItem_Click(sender As System.Object, e As System.EventArgs) _
      Handles AboutListManagerToolStripMenuItem.Click
   FrmAbout.ShowDialog()
End Sub

See the finished code for form1.

Run and test your application.
INDEX, The finishing touches, Select a Font, Go to a webpage for help, On ReSize make the list box fill the form., Print Preview and Print, Adding the About Box
Next lesson: Picture Viewer

Copyright © Zebra0.com
All rights reserved worldwide.

 
 

Adding the About Box