79543079

Date: 2025-03-29 10:03:29
Score: 0.5
Natty:
Report link

It doesn't look like your C# code is actually handling the event. In c# you have to explicitly link event to event handler, its not automatic based on function name.

So something like

cmdSeekPrev.Click += cmdSeekPrev_Click(object sender, EventArgs e);


Or select the event handler in the form designer
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dave