What is wrong with this winform code

Vijayadithyan .N 121 Reputation points
2022-09-05T16:42:46.607+00:00

I wrote some code for a quiz app I'm trying to make which goes like this:
237877-image.png

and it shows this error on the form:
237927-image.png

the form shows up in the executable but the code doesn't work as intended.
how do I fix it?

Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,838 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,306 questions
{count} votes

2 answers

Sort by: Most helpful
  1. RLWA32 40,771 Reputation points
    2022-09-05T17:39:57.437+00:00

    The error message issued by the Form designer is clear -- Remove the manually inserted code from the InitializeComponent method. Try moving the manually inserted code to the Form's Load event handler.

    1 person found this answer helpful.
    0 comments No comments

  2. Keshav Kumar 1 Reputation point
    2022-09-06T00:06:16.803+00:00

    I agree with answer of RLWA32-6355. After rolling back your changes, try double clicking the form in designer mode and it should insert a Form1_Load method automatically for you. Try adding your code in there in Form1.cs file in place of in Form1.designer.cs file. Also, I overserved that your if condition does not have colon after Health . May be you have displayed the code only for sample, but a point to look at something to fix your code.

    0 comments No comments