0
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
hi frogleg,
Thnks for giving me code. Actully, your code is working but my requirements is not being ful-filled.
0
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
Depend upon user roles (Admin or User) you can do with if-else condition.
0
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");
}
}
}