1
Answer

Web Setup in Silverlight Application

Prasant Jinaga

Prasant Jinaga

13y
1.7k
1

Hi All,

I have a Silverlight Application.I just wanted to crete a web Setup and share it with some other people so that they can also test.

Could anyone know how to share the Silverlight Application with other Prople which works in Other machines.

Can anyone help on this please.

Thanks,
Prasant

Answers (1)
0
Sam Hobbs

Sam Hobbs

NA 28.7k 1.3m 14y
Yes, Sahil, Frogleg did not give you the complete answer but it is assumed you understand Frogleg's code well enough to be able to modify it to do what you need to do.
0
Sahil Jani

Sahil Jani

NA 349 125.4k 14y
hi frogleg,

Thnks for giving me code. Actully, your code is working but my requirements is not being ful-filled.
0
Sahil Jani

Sahil Jani

NA 349 125.4k 14y
Hi, Sutish

My form is not depending upon the role base activity.
This form is accessed by all to fill-up. And I have only one button in that form on which I have to perform two activities one after the other.
So, is there any solution with you to do this thing?

Please help me regarding this.
0
Suthish Nair

Suthish Nair

NA 31.7k 4.6m 14y

 Depend upon user roles (Admin or User) you can do with if-else condition.
0
Frogleg

Frogleg

NA 7.9k 33k 14y
One way

 bool firstClick = false;
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
if (firstClick == false)
{
firstClick = true;
MessageBox.Show("First click");
}
else
{
firstClick = false;
MessageBox.Show("Second click");
}
}
}