Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #100942 > unrolled thread

Re: Message Box

Started byDennis Lee Bieber <wlfraed@ix.netcom.com>
First post2015-12-28 23:55 -0500
Last post2015-12-28 23:55 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: Message Box Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2015-12-28 23:55 -0500

#100942 — Re: Message Box

FromDennis Lee Bieber <wlfraed@ix.netcom.com>
Date2015-12-28 23:55 -0500
SubjectRe: Message Box
Message-ID<mailman.46.1451364928.11925.python-list@python.org>
On Mon, 28 Dec 2015 16:43:02 -0500, Malik Brahimi <mbrahimi02@gmail.com>
declaimed the following:

>I have an event driven script that prompts users as the events are
>triggered with a message box. Is there anyway with any GUI toolkit to
>create these dialogs simultaneously in the event that they coincide? I have
>been trying everything, but I can't seem to get it right.
>

	Typically (Well... M$ Windows world), "message boxes" are /modal/ --
the first message box to display takes over (or blocks other) event
processing until the user has acknowledged the displayed message box.

	Generic "dialog boxes" tend to be /non-modal/ -- they allow the rest of
the application to operate in parallel.

	So -- you may be looking at coding up full dialog boxes instead of
using convenience message boxes. That also means all the overhead of event
handling for the dialog (where a message box directly returns the status)

https://en.wikipedia.org/wiki/Dialog_box
-- 
	Wulfraed                 Dennis Lee Bieber         AF6VN
    wlfraed@ix.netcom.com    HTTP://wlfraed.home.netcom.com/

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web