[wxPython-users] Re: MessageDialogs on linux
by Davor Cengija other posts by this author
Mar 24 2003 4:01PM messages near this date
[wxPython-users] MessageDialogs on linux
|
Re: [wxPython-users] MessageDialogs on linux
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
I have e.g.:
def NotImplementedDialog(self, event):
dialog = wxMessageDialog(self, "Funkcionalnost nije
implementirana", "Nije implementirano",
wxOK | wxICON_INFORMATION)
dialog.CentreOnParent()
dialog.ShowModal()
dialog.Destroy()
and it works as expected.
wxPythonGTK-py2.2-2.4.0.6-1 on Mandrake 8.2
--
davor.cengija@[...].hr
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@[...].org
For additional commands, e-mail: wxPython-users-help@lists.wxwindows.org
Thread:
Davor Cengija
Robin Dunn
|