✅ Whats this mean
System.NotImplementedException: 'The method or operation is not implemented.' the line of code it picks it up from is private void colors_load(object sender, EventArgs e) => throw new NotImplementedException();
8 Replies
you have to remove
throw new NotImplementedException();
and do your own codewhy is it in colors.designer.cs
ehh
i've not really done winforms but it should not have method declaration ? 🤔
Oh ok
it should be in the colors.cs
Yeah when i run the program there is timers for certain things to happen but when it gets to that and the timer goes off it goes to another form and then it takes me to colors.designer.cs and shows me that error on that line of code
just remove the line and put your code inside
alright thnaks
it works