Check to make sure you have created the complete menu, add the shortcut keys and named each item as shown.
Double click on mnuExit, then write the code as shown below:
'Programmer: Janet Joy 'List manager program with menu Public Class Form1 Private Sub mnuExit_Click(sender As Object, e As EventArgs) Handles mnuExit.Click 'Temporary: we will addcheck for save later End End Sub End Class
We will write the code to add items to the list box first. After we can insert into the list box, we will have something we can save.
After we can create a file, we will have something to open, so we will write and test insert and delete, then save the file, then open the file.