What does this warning mean? And how can i fix it?
This is my load method:Code:Warning 1 'MY_Namspace.MainForm.Load()' hides inherited member 'System.Windows.Forms.Form.Load'. Use the new keyword if hiding was intended.
Thanks.Code:private void Load() { settings.LoadXml(); txtDisplay.Text = settings.Display; txtName.Text = settings.Name; txtTopic.Text = settings.Topic; settings.LoadTo(txtTo.Text); settings.LoadBody(txtBody.Text); }




Reply With Quote