please mind I'm still a beginner:
I am creating a program with windows forms in c#. However, after i had some sync issues the main form loader does not seam to be working. I checked the code with my limited knowledge but i can't seem to find anything wrong?
Here's the code (mainfrm.designer.cs:1):
...
this.Name = "frm_Main";
this.Load += new System.EventHandler(this.frm_Main_Load);
this.menuStrip1.ResumeLayout(false);
...
And here is my loader (mainfrm.cs)
private void frm_Main_Load(object sender, EventArgs e)
{
Everything i do here does not get executed.
}
Does anyone see the problem?