How to move forms from one to another project ( including bitmaps )

  • Thread starter Thread starter Peter Stojkovic
  • Start date Start date
P

Peter Stojkovic

What is the correct way to move BITMAPS and drawings inside a windows-forms
from one project to another project.

The problem is the following row:
Dim resources As System.Resources.ResourceManager = New
System.Resources.ResourceManager(GetType(frm_ageing_state1))



Where are the bitmaps located ?

What I have to do, if i want copy the form to another project INCLUDING the
bitmaps and drawings ??





THX

Peter Stojkovic
 
Hi Peter,

In C#, the resources including bitmaps are stored in the .resx file of
the form. You should copy that file togeter with your form. I guess
things similar in VB.NET.

Hope it helps,
Thi
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top