G
Galen Somerville
On two of my forms the following code causes a warning"
Me.components = New System.ComponentModel.Container
Dim resources As System.ComponentModel.ComponentResourceManager =
New System.ComponentModel.ComponentResourceManager(GetType(frmSweep))
Warning 1 Failed to parse the following code:
Me.components = New System.ComponentModel.Container
The code within the method 'InitializeComponent' is generated by the
designer and should not be manually modified. Please remove any changes and
try opening the designer again. 0 0
Yet on all other forms the following has no errors
Me.components = New System.ComponentModel.Container
Dim resources As System.ComponentModel.ComponentResourceManager =
New System.ComponentModel.ComponentResourceManager(GetType(frmMain))
The basic difference between the two bad forms and the other forms is, the
two forms have a User Control on them.
Any suggestions?
Galen
Me.components = New System.ComponentModel.Container
Dim resources As System.ComponentModel.ComponentResourceManager =
New System.ComponentModel.ComponentResourceManager(GetType(frmSweep))
Warning 1 Failed to parse the following code:
Me.components = New System.ComponentModel.Container
The code within the method 'InitializeComponent' is generated by the
designer and should not be manually modified. Please remove any changes and
try opening the designer again. 0 0
Yet on all other forms the following has no errors
Me.components = New System.ComponentModel.Container
Dim resources As System.ComponentModel.ComponentResourceManager =
New System.ComponentModel.ComponentResourceManager(GetType(frmMain))
The basic difference between the two bad forms and the other forms is, the
two forms have a User Control on them.
Any suggestions?
Galen