[Solved] Python.exe has stopped working

2015-06-19 Thread Alexis Dubois
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.

Re: Python.exe has stopped working

2015-06-05 Thread Alexis Dubois
Anyone else for an idea on that? -- https://mail.python.org/mailman/listinfo/python-list

Re: Python.exe has stopped working

2015-06-02 Thread Alexis Dubois
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

Python.exe has stopped working

2015-06-02 Thread Alexis Dubois
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

Re: [QT] Scroll multiple lists with one scrollbar

2015-05-28 Thread Alexis Dubois
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

Re: [QT] Scroll multiple lists with one scrollbar

2015-05-28 Thread Alexis Dubois
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

Re: [QT] Scroll multiple lists with one scrollbar

2015-05-28 Thread Alexis Dubois
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

[QT] Scroll multiple lists with one scrollbar

2015-05-28 Thread Alexis Dubois
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