tags:

views:

534

answers:

1

In our app we have a form that can be opened up non-modally. We have another form that can be opened up modally.

From the modal form you can click a button to open up the non-modal form. This works fine, you can then mess about with both the modal and non-modal form.

However, if the non-modal form was opened up before the modal one, then the non-modal form can no longer be accessed until the modal form is closed.

Is there anyway, short of closing and re-opening the non-modal form that I can bring the non-modal form to the front from the modal form??

Thanks

+1  A: 

What you describe is the expected behaviour.

If "A" is non-modal and "B" is modal then:

Opening "B" then "A" will mean that both forms can be accessed as the last opened form is non-modal.

Opening "A" then "B" will mean that only "B" can be accessed as the last opened form is modal.

So if you want both forms to be accessible regardless of the order they were opened you will need to make both non-modal.

ChrisF