2
Answers

Deep Linking in Winform

Hi,
 
How to open Application( EXE file) click on URL from(e-mail).and access this link in Our Application(WInform C#). like,
some one invite for a vedio confrence session through mail or chat using link.
when we click on that link it will be open Application(exe file) and join confrence using that application. Please suggest some solution with some sample codes.
 
Thanks,
Shefali 
Answers (2)
0
Sal Rosales
NA 9 0 16y

ok, I just throught there might have been a If (control is not checkbox). An else statement it will be.

thanks

0
Niradhip Chakraborty
NA 6.5k 527k 16y
foreach (Control control in Controls)
{
      if (control is CheckBox)
      {
         //  you know code here for control which is checkbox
      }
      else
       {
        //  you know code here for control which is not checkbox
       }
}