Then I try to change the selected value into my combo, on win it "print"
the right value, on linux, it print the preceding value. It's a bug?
And after, on win then this frame is load, there is no values into the
combo, on linux, there is the first load. I think that is better if
there is no values loaded the the frame appear
Then I try to change the selected value into my combo, on win it "print"
the right value, on linux, it print the preceding value. It's a bug?
Which version? I don't see this with the current release, gtk2-unicode build. You could also try to get the new value from the event.GetString() instead.
And after, on win then this frame is load, there is no values into the
combo, on linux, there is the first load. I think that is better if
there is no values loaded the the frame appear
That is just the different ways that the native widgets work. You can make the first value in your list be an empty string and it will work everywhere.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
Then I try to change the selected value into my combo, on win it "print"
the right value, on linux, it print the preceding value. It's a bug?
Which version? I don't see this with the current release, gtk2-unicode build.
[michele@michele michele]$ python
Python 2.3.3 (#2, Feb 17 2004, 11:45:40)
[GCC 3.3.2 (Mandrake Linux 10.0 3.3.2-6mdk)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
import wx
wx.__version__
'2.5.3.1'
my specific version is:
wx-2.5.3-gtk2-unicode
You could also try to get the new value from the
event.GetString() instead.
I forgot to use this. Thanks
And after, on win then this frame is load, there is no values into the
combo, on linux, there is the first load. I think that is better if
there is no values loaded the the frame appear
That is just the different ways that the native widgets work. You can make the first value in your list be an empty string and it will work everywhere.
Yes, but after this I see a blank space when I open my combo, and I
don't like this. I'll leave all like now.