Python Forum
How can I create a new tag with PyQt5? - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: GUI (https://python-forum.io/forum-10.html)
+--- Thread: How can I create a new tag with PyQt5? (/thread-36041.html)



How can I create a new tag with PyQt5? - nickzsche - Jan-12-2022

Hello, I want to see the data I entered with PyQt5 by creating a new label. For example, if I gave 5 data, it should create 5 labels, if I gave 100 data, it should create 100 labels. How can I create and overwrite a new code-based item with PyQt5?


RE: How can I create a new tag with PyQt5? - menator01 - Jan-12-2022

A good starting point would be here.


RE: How can I create a new tag with PyQt5? - Axel_Erfurt - Jan-12-2022

What should the labels be for?

If it's for text, a table might be the better way. You can easily remove or add rows there.