Open two winforms at same time...

  • Thread starter Thread starter trint
  • Start date Start date
T

trint

Hi,
I have a product entry program that I need, at the time of entering
the description,
to open an extra window for the image that goes with the description.
This product adding program is a windows application for updating our
companies
website.

Here is what I need help with:
When the tabcontrol "product description" is clicked, I need another
winform (WinForm3) to
open which will display an image to coincide with the product
description (since the
images are sometimes too large for the description page).

Any help is appreciated.
Thanks,
Trint
 
Hi,
I have a product entry program that I need, at the time of entering
the description,
to open an extra window for the image that goes with the description.
This product adding program is a windows application for updating our
companies
website.

Here is what I need help with:
When the tabcontrol "product description" is clicked, I need another
winform (WinForm3) to
open which will display an image to coincide with the product
description (since the
images are sometimes too large for the description page).

Any help is appreciated.
Thanks,
Trint

if(tabControl1.SelectedTab.Name == "Description")
{
WinForm3 FrmDescription = new WinForm3();
objFrmDescription.Show();
}

-
shashank kadge
 

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