After days of poking around the forum and the net here is what I found:
1. I found a lot of references on the forum regarding AddHandler.
(Note: It appears to me, although I could be wrong, it is not so much the Handles keyword that is causing the issue, but the Me keyword. In my original post, I state #D refers to an error at col 121 and if I rename Me to Form1, the Design View shows.)
2. I Googled AddHandler and found the following:
http://www.functionx.com/vbnet/Lesson05.htm
I added this to my code:
Inherits System.Windows.Forms.Form
#Region "Windows Form Designer Generated Code"
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
AddHandler Me.Closing, AddressOf Form1_FormClosing
AddHandler Me.Load, AddressOf Form1_Load
AddHandler Me.Resize, Addressof Form1_Resize
End Sub
#End Region
and modified the sub as follows:
Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.ComponentModel.CancelEventArgs) 'Handles Me.FormClosing
The only error I get now is "Invalid value for 'AssemblyVersion'.(MSB3174)"; guess its back to the forum and net.