![]() |
Saving entered text for next usement - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Saving entered text for next usement (/thread-14875.html) |
Saving entered text for next usement - Rigunas - Dec-21-2018 Hello, I'm working with Python(x,y) and Qt Desinger 4. I got a browse button where I can seach for a file, after I selected the file it's loaded in a QLineEdit where my programm gets the path and works with it. Now I want that, if I close the application and reopen it, that the QLineEdit still got the text from before. Is there a way to do that? Grettings Matthias RE: Saving entered text for next usement - buran - Dec-21-2018 you need to store that info somewhere, e.g. database, text file (plain file, config file, whatever), etc. and then read it back when start the program |