I am using wxPython 3.0.1.1 on a Windows Vista 32-bit platform. If I try the following:
def ShowMessage(self):
wx.MessageBox('Download completed', 'Info',
wx.OK | wx.ICON_INFORMATION)
This works as expected. However, when I try:
def ShowMessage(self):
wx.MessageBox('Download completed', 'Info',
wx.OK | wx.ICON_QUESTION)
No icon appears and no error or warning message is given! and this also true for:
def ShowMessage(self):
wx.MessageBox('Download completed', 'Info',
wx.YES_NO | wx.ICON_QUESTION)
Why?