Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do i fix this error The variable componentResourceManager was either undeclared or unassigned

Status
Not open for further replies.

Tchala

Programmer
May 20, 2017
1
0
0
UG
Here is the sample code
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof(frmMain));
this.panel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75f, FontStyle.Regular, GraphicsUnit.Point, 0);
this.panel1.Location = new Point(140, -2);
this.panel1.Margin = new System.Windows.Forms.Padding(0);
this.panel1.Paint += new PaintEventHandler(this.panel1_Paint);
this.pictureBox2.Anchor = AnchorStyles.Top | AnchorStyles.Left | AnchorStyles.Right;
this.pictureBox2.BackColor = Color.Transparent;
this.pictureBox2.BackgroundImageLayout = ImageLayout.Stretch;
this.pictureBox2.Image = (Image)componentResourceManager.GetObject("pictureBox2.Image");
this.pictureBox2.Location = new Point(753, 10);

This error comes when i go into designer mode in visual studio 2015 but when i run the application it run well
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top