Ask about the resource file

  • Thread starter Thread starter Ray
  • Start date Start date
R

Ray

Hi,
I would like to ask while a resource file is added to a form. Can the
resource file be shared by other forms?
Thanks a lot,
Ray
 
Ray said:
I would like to ask while a resource file is added to a form. Can the
resource file be shared by other forms?

Hi Ray,

yes of course.

Simply add in Form2:

private System.Resources.ResourceManager resources = new
System.Resources.ResourceManager(typeof(Form1));

and you have access to the resources from From1

Cheers

Arne Janning
 
Back
Top