global picturebox

  • Thread starter Thread starter Bernie Yaeger
  • Start date Start date
B

Bernie Yaeger

I place a picturebox with an icon (my client's logo) in it on every form of
an enterprise app. This takes just a little space but I have 150 forms, so
the .exe is larger than I'd like. Is there any way of making this control
global, such that it only ends up costing the .exe 5k instead of 750k?

Thanks for any help.

Bernie Yaeger
 
* "Bernie Yaeger said:
I place a picturebox with an icon (my client's logo) in it on every form of
an enterprise app. This takes just a little space but I have 150 forms, so
the .exe is larger than I'd like. Is there any way of making this control
global, such that it only ends up costing the .exe 5k instead of 750k?

You can create a base form providing the logo and let all other forms
inherit from this base form ("Create Inherited Form...").
 
Hi Herfried,

Good idea - tx.

Bernie

Herfried K. Wagner said:
You can create a base form providing the logo and let all other forms
inherit from this base form ("Create Inherited Form...").
 
Back
Top