Is there such a message box?

Hi, ALL,

I have a HyperTreeList control from which I;m adding the leaf to the list box.

If the leaf already exists I don’t need it to be added. Instead it has to be displayed in the warning message,

Something like this:

"

Those items already exists and will not be added:

a

b

c
"

Problem is that the list of items can become quite large. Is there some standard message box in wxPython that will be able to handle such error message or I’m stuck with creating my own dialog?

Thank you.

Hi Igor,

···

On 19/09/2013 09:29, Igor Korot wrote:

Hi, ALL,
I have a HyperTreeList control from which I;m adding the leaf to the list box.
If the leaf already exists I don't need it to be added. Instead it has to be displayed in the warning message,
Something like this:

"
Those items already exists and will not be added:

a
b
c
"

Problem is that the list of items can become quite large. Is there some standard message box in wxPython that will be able to handle such error message or I'm stuck with creating my own dialog?

The wxPython Demo is your friend:-) .

What about the ScrolledMessageDialog?

Werner