473,321 Members | 1,748 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,321 software developers and data experts.

VS is adding code when compiling

I have created a derived version of a normal form, e.g. called MyForm
(public class MyForm : System.Windows.Forms.Form). The form is simply
specifing a standard icon that we use within the company. This fairly
straight forward and not a problem. We have planed to use this form as
the base form to all other forms in our application.

The problem is the following...

When adding a button (or any other control) to the myForm the
designer/IDE(?) adds some code automatically in the
InitializeComponent method. This is also normal but in my case it add
more code than normal. Below is two pieces of code that shows my
problem. Executing the solution/project causes the form icon to change
from the company specific icon to the standard (blue/yellow/red)
icon!? If I remove the following piece of code the problem disappears,
but returns if I add a new control to the form.

this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this. Icon")));

This seems to a problem that is local to the solution and/or project.
I have tried to replicate the problem in other solutions without
success :( If I use a normal form (derived from
System.Windows.Forms.Form) the problem does not emerge!?

What have I done to deserve this?? How do I solve this?

Normally the InitializeComponent method looks like this...

private void InitializeComponent()
{
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
// button1
this.button1.Location = new System.Drawing.Point(32, 56);
this.button1.Name = "button1";
this.button1.TabIndex = 0;
this.button1.Text = "button1";
// Form1
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.button1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}

In my solution it looks like this...

private void InitializeComponent()
{
System.Resources.ResourceManager resources = new
System.Resources.ResourceManager(typeof(Form1));
this.button1 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// button1
//
this.button1.AccessibleDescription =
resources.GetString("button1.AccessibleDescription ");
this.button1.AccessibleName =
resources.GetString("button1.AccessibleName");
this.button1.Anchor =
((System.Windows.Forms.AnchorStyles)(resources.Get Object("button1.Anchor")));
this.button1.BackgroundImage =
((System.Drawing.Image)(resources.GetObject("butto n1.BackgroundImage")));
this.button1.Dock =
((System.Windows.Forms.DockStyle)(resources.GetObj ect("button1.Dock")));
this.button1.Enabled =
((bool)(resources.GetObject("button1.Enabled")));
this.button1.FlatStyle =
((System.Windows.Forms.FlatStyle)(resources.GetObj ect("button1.FlatStyle")));
this.button1.Font =
((System.Drawing.Font)(resources.GetObject("button 1.Font")));
this.button1.Image =
((System.Drawing.Image)(resources.GetObject("butto n1.Image")));
this.button1.ImageAlign =
((System.Drawing.ContentAlignment)(resources.GetOb ject("button1.ImageAlign")));
this.button1.ImageIndex =
((int)(resources.GetObject("button1.ImageIndex"))) ;
this.button1.ImeMode =
((System.Windows.Forms.ImeMode)(resources.GetObjec t("button1.ImeMode")));
this.button1.Location =
((System.Drawing.Point)(resources.GetObject("butto n1.Location")));
this.button1.Name = "button1";
this.button1.RightToLeft =
((System.Windows.Forms.RightToLeft)(resources.GetO bject("button1.RightToLeft")));
this.button1.Size =
((System.Drawing.Size)(resources.GetObject("button 1.Size")));
this.button1.TabIndex =
((int)(resources.GetObject("button1.TabIndex")));
this.button1.Text = resources.GetString("button1.Text");
this.button1.TextAlign =
((System.Drawing.ContentAlignment)(resources.GetOb ject("button1.TextAlign")));
this.button1.Visible =
((bool)(resources.GetObject("button1.Visible")));
// Form1
this.AccessibleDescription =
resources.GetString("$this.AccessibleDescription") ;
this.AccessibleName = resources.GetString("$this.AccessibleName");
this.AutoScaleBaseSize =
((System.Drawing.Size)(resources.GetObject("$this. AutoScaleBaseSize")));
this.AutoScroll = ((bool)(resources.GetObject("$this.AutoScroll")));
this.AutoScrollMargin =
((System.Drawing.Size)(resources.GetObject("$this. AutoScrollMargin")));
this.AutoScrollMinSize =
((System.Drawing.Size)(resources.GetObject("$this. AutoScrollMinSize")));
this.BackgroundImage =
((System.Drawing.Image)(resources.GetObject("$this .BackgroundImage")));
this.ClientSize = ((System.Drawing.Size)(resources.GetObject("$this. ClientSize")));
this.Controls.Add(this.button1);
this.Enabled = ((bool)(resources.GetObject("$this.Enabled")));
this.Font = ((System.Drawing.Font)(resources.GetObject("$this. Font")));
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this. Icon")));
this.ImeMode = ((System.Windows.Forms.ImeMode)(resources.GetObjec t("$this.ImeMode")));
this.Location = ((System.Drawing.Point)(resources.GetObject("$this .Location")));
this.MaximumSize = ((System.Drawing.Size)(resources.GetObject("$this. MaximumSize")));
this.MinimumSize = ((System.Drawing.Size)(resources.GetObject("$this. MinimumSize")));
this.Name = "Form1";
this.RightToLeft = ((System.Windows.Forms.RightToLeft)(resources.GetO bject("$this.RightToLeft")));
this.StartPosition =
((System.Windows.Forms.FormStartPosition)(resource s.GetObject("$this.StartPosition")));
this.Text = resources.GetString("$this.Text");
this.ResumeLayout(false);
}

The version of Microsoft Development Environment 2003 is 7.1.3008
The version of Microsoft .NET Framework 1.1 is 1.1.4322

//Jonas
Nov 16 '05 #1
1 1602
On 1 Apr 2004 05:15:07 -0800, Jonas L <jo***@bootman.se> wrote:
I have created a derived version of a normal form, e.g. called MyForm
(public class MyForm : System.Windows.Forms.Form). The form is simply


Check the Localizable property on the form. You probably have set it to
true, which makes all the properties be put in resources which allow you
to localize the form.

--
Lasse Vågsæther Karlsen
http://www.vkarlsen.no/
PGP KeyID: 0x0270466B
Nov 16 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Geoff Biggs | last post by:
Evening all, I'm trying to add a new built-in number data type to Python with its own syntax, so I'm working directly with the interpreter rather than creating my own extension module (side...
1
by: Jonas L | last post by:
I have created a derived version of a normal form, e.g. called MyForm (public class MyForm : System.Windows.Forms.Form). The form is simply specifing a standard icon that we use within the company....
1
by: Jonas L | last post by:
I have created a derived version of a normal form, e.g. called MyForm (public class MyForm : System.Windows.Forms.Form). The form is simply specifing a standard icon that we use within the company....
1
by: Jonas L | last post by:
I have created a derived version of a normal form, e.g. called MyForm (public class MyForm : System.Windows.Forms.Form). The form is simply specifing a standard icon that we use within the company....
1
by: Jonas L | last post by:
I have created a derived version of a normal form, e.g. called MyForm (public class MyForm : System.Windows.Forms.Form). The form is simply specifing a standard icon that we use within the company....
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.