Hi
I have two checkboxes and a button. Under the button click handler,
private void button1_Click(..)
{
if(checkbox1.true) { //start a process }
if(checkbox2.true) { //start process 2 once process 1 is done}
}
Both process 1 and 2 are started asynchronously. How do i set the dependency between process 2 and process 1? I do not want to poll if process 1 is done before starting process 2. That would block the UI. ANy other solution?
THanks