how can i open 2 DialogEx In parallel from 1 page?
result = DialogEx.Show("Dialog1", true, nil, nil);
result = DialogEx.Show("Dialog2", true, nil, nil);
this code open the second DialogEx Only after I close the first. Is it possible to open them in parallel?
result = DialogEx.Show("Dialog1", true, nil, nil);
result = DialogEx.Show("Dialog2", true, nil, nil);
this code open the second DialogEx Only after I close the first. Is it possible to open them in parallel?
Comment