Re: [wxPython-users] MessageDialogs on linux
by Robin Dunn other posts by this author
Mar 24 2003 10:33PM messages near this date
[wxPython-users] Re: MessageDialogs on linux
|
RE: [wxPython-users] time control
christopher.j.regan@[...].com wrote:
> Hello Just a quick question, i created some dialogs using
> wxMessageDialog and it seems that no matter what i specify as the
> buttons there always appears a help button. Any ideas how to get rid
> of it. I implement the dialogs this way:
>
> theBox = wxMessageDialog(self, msgText, title, wxOK |
> wxICON_INFORMATION | wxCENTRE | wxSTAY_ON_TOP)
>
> as you can see i only want an ok button but for some reason that help
> button shows up also. Thanks
>
wxSTAY_ON_TOP probably has the same value as wxHELP. Since it's a modal
dialog you shouldn't need wxSTAY_ON_TOP anyway.
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@[...].org
For additional commands, e-mail: wxPython-users-help@lists.wxwindows.org
Thread:
Davor Cengija
Robin Dunn
|