I want to display a dialog which tells the users to wait while the
program is initializing, but don't want any buttons
in the dialog. The dialog will terminate itself when the intialization
finishes, as opposed to the user clicking on a button.
Is this possible with the standard dialogs- such as the wxMessage
dialog?
I want to display a dialog which tells the users to wait while the
program is initializing, but don't want any buttons
in the dialog. The dialog will terminate itself when the intialization
finishes, as opposed to the user clicking on a button.
Is this possible with the standard dialogs- such as the wxMessage
dialog?
I've thought about that- but according to PIA the splash object
requires a click from the user, or a timeout in ms, in order to
terminate.
Since I don't know when the initialization will finish, I'd rather not
hardcode
a timeout, due to timing differences from machine-machine.
Also- the splash widget requires a bitmap- I just want to display a
small text message.
···
On Nov 29, 8:14 pm, Cody Precord <codyprec...@gmail.com> wrote:
Hi,
On Nov 29, 2009, at 10:08 PM, cappy2112 wrote:
> I want to display a dialog which tells the users to wait while the
> program is initializing, but don't want any buttons
> in the dialog. The dialog will terminate itself when the intialization
> finishes, as opposed to the user clicking on a button.
> Is this possible with the standard dialogs- such as the wxMessage
> dialog?
It's a wx.Frame so you can call Close if you want to close it programaticaly.
···
On 11/29/09 8:46 PM, cappy2112 wrote:
I've thought about that- but according to PIA the splash object
requires a click from the user, or a timeout in ms, in order to
terminate.
Since I don't know when the initialization will finish, I'd rather not
hardcode
a timeout, due to timing differences from machine-machine.
I've thought about that- but according to PIA the splash object
requires a click from the user, or a timeout in ms, in order to
terminate.
Since I don't know when the initialization will finish, I'd rather not
hardcode
a timeout, due to timing differences from machine-machine.
Also- the splash widget requires a bitmap- I just want to display a
small text message.