Tagged Questions

10
votes
4answers
585 views

Why is a modal/modeless dialog called modal/modeless?

I always have trouble remembering whether the modal or modeless dialog is the one blocking operations in other parts of the application. Does anyone know why they are called that way?
1
vote
3answers
599 views

Modeless JDialog not showing contents

(Java SE 6) I'm trying to create a pop-up dialog that displays a "please wait" message while my program does some time-intensive work. To do this, I've chosen to use a modeless JDialog, so that the ...