Dear SharpDevelop Community,
Working with SharpDevelop V5 on a Win 7 64bit machine I find the code to resond to events has stopped working. The function for button1_click, which may have been written in an earlier version of SharpDevelop does work,but not that for mybutton (both on the same form of course). I have tried other items, even with the same code as for button1_Click with the same no effect on clicking.
Your help appreciated.
David Hyde
voidmybutton_Click(object sender, EventArgs EventArgs)
{MessageBox.Show("foo");}
voidbutton1_Click(object sender, EventArgs EventArgs)
{
OutlookProg birthdayMessage;
birthdayMessage = newOutlookProg();
MessageBox.Show(birthdayMessage.getMessage());
}