views:

22

answers:

1

Image

Here is the image for my solution Explorer. What i want is to use HR Management forms to b loaded through button click on a form of Classic Steel HR. So can anyone tell me how

+2  A: 

I can't see your image here, unfortunately - but if I get what you're trying to ask; you can access forms from another assembly if they're public.

Then just check this setting is true:

Tools > Options > Windows Forms Designer > General : AutoToolboxPopulate

Alternatively:

Alternatively, you need to make sure that the HR project is referenced by the Classic_steel_hr project then in your forms code (assuming it's namespace is HR)

using HR;

private void ShowForm()
{
  HR.Form1 hrForm = new HR.Form1();
  hrForm.Show();
}
Russ C
am trying alot for that hosting but image doesn't show up i always end up having an error image thats why well thanks buddy letme try your way
Mobin
I've just opened the link manually, it looks like what I suggested above should work.
Russ C