Le samedi 6 juin 2015 13:40:13 UTC+2, Laura Creighton a écrit :
> In a message of Fri, 05 Jun 2015 11:15:31 +0200, Christian Gollwitzer writes:
> >Am 05.06.15 um 11:03 schrieb Alexis Dubois:
> >> Anyone else for an idea on that?
> >>
> >Well, it is a crash on exit.
Anyone else for an idea on that?
--
https://mail.python.org/mailman/listinfo/python-list
On Tuesday, June 2, 2015 at 4:13:27 PM UTC+2, Laura Creighton wrote:
> In a message of Tue, 02 Jun 2015 06:09:34 -0700, Alexis Dubois writes:
> >Hello !
> >
> >I have this kind of message every time I quit my PyQt4 app whatever the
> >method to quit is: a quit action m
Hello !
I have this kind of message every time I quit my PyQt4 app whatever the method
to quit is: a quit action menu, the windows "red cross", by quit(), close(),
destroy(), deletelater(), ...
"python.exe has stopped working"
->Check online for a solution
->Close the program
I need to specify
Thank you Laura, it works.
(Even if connecting the scrollbar of one list to other lists is not what I
exactly want to do, but no matter, I change the line
"w1.verticalScrollBar().valueChanged.connect(w2.verticalScrollBar().setValue)"
a little bit to fit my need. )
--
https://mail.python.org/mai
Thanks Peter, but no, even if it could be possible to use a QTableWidget
instead of my 8 lists.
--
https://mail.python.org/mailman/listinfo/python-list
Le jeudi 28 mai 2015 12:12:42 UTC+2, Laura Creighton a écrit :
> You want to define a scrollable area and then add your labels to it.
> The code here:
> http://stackoverflow.com/questions/22255994/pyqt-adding-widgets-to-scrollarea-during-the-runtime
>
> should show you what you need to do, though
Hello everyone!
My QT GUI contains 8 QlistWidgets filled with a large amount of data.
Each item of a list is related to items of other lists in the same row.
So I want to scroll the 8 lists with only one vertical scrollbar (and
vice-versa)
But I don't know how to manage this.
Do you have an idea