Great tutorial, will love to see you do a database tutorial with Firebase, where we take inventory records in a pyqt desktop app and store them in Firebase database.
@codefirstwithhala2 жыл бұрын
Great suggestion! I've been looking into making a video combining PyQt + Firebase. Will do one soon! Thanks for the comment
@user-367ehdy32 жыл бұрын
I really like all of your tutorials, thank you very much 🙌
@younesammari62142 жыл бұрын
I was looking for it Thanks for the tutorial
@codefirstwithhala2 жыл бұрын
Happy to help!
@kuahara2 жыл бұрын
Fantastic video. Thank you for your time and contribution. This is very appreciated.
@rrcr47699 ай бұрын
Hi, How do I develop the same things using a Qt Design Studio PyQt6 as I don't t=see the same interfaces as you show in your videos? Thank You, Raj
@luciansacota9 ай бұрын
Hi! How can I save the list, so that checkboxes appear when opening (checked or unchecked)
@SHONNER Жыл бұрын
I used pip to install qtconsole. But the program still crashed even after pip updated my qtpy. I got the program to run by deleting the import qtconsole line and adding: from PyQt5 import QtCore
@ezekiasmastaki4471 Жыл бұрын
Hello Hala. Wonderfull PYQT tutorial. May I ask if it's possible to add custom object (like object from a Person class ) into a QlistWidget?
@HabibUrRahman-mu8zf Жыл бұрын
How do you get which Item is checked? And perform the action
@warsisarjeelrahman39402 жыл бұрын
Hello Hala. Love your PYQT videos. Could you make a video about the drag and drop feature in pyqt? There's not a lot of updated videos on that, so I'm sure it will help a lot of people.
@codefirstwithhala2 жыл бұрын
Thanks for the suggestion, sure thing!
@timgoransson2 жыл бұрын
Hi Hala, Do you have any plans on a pyqt stylesheet tutorial? ways to style your UI. As a follow up question, how would you approach style "presets" for your UI? For example a dropdown where if you pick an option it changes the colors of all the buttons for example.
@codefirstwithhala2 жыл бұрын
Hi Tim, it's coming soon for sure! Thank you for the comment
@toonanimationstudio2 жыл бұрын
Please any tutorials especially using flag I don't really understand it
@ehilalkr11 ай бұрын
how can we get main.ui?
@youtube-joker2 жыл бұрын
Hello Hala, I enjoy watching your videos and thank you for these great videos. However, it is a pity that you are still using PyQt5 and not the new version PyQt6. I tried to implement this checklist in PyQt6, but unfortunately without success. Could you make this code available in PyQt6, or make another video for the PyQt6 version? Kind regards from Germany
@codefirstwithhala2 жыл бұрын
Hi there. There's not many major changes between PyQt5 and PyQt6. The most notable change is going from short names for enums and only using the long-form names. So, to get this code working with PyQt6, you'll have to replace QtCore.Qt.ItemIsUserCheckable with QtCore.Qt.ItemFlag.ItemIsUserCheckable. Replace QtCore.Qt.Checked with QtCore.Qt.CheckState.Checked. Replace QtCore.Qt.Unchecked with QtCore.Qt.CheckState.Unchecked. You should be good to go!
@youtube-joker2 жыл бұрын
@@codefirstwithhala Thanks for the quick reply: It works so far, but there seems to be some kind of problem with the "todo_listWidget". In PyCharm it is marked as an error. When I start the program and click "toggleall_button" the program crashes.
@youtube-joker2 жыл бұрын
I have now solved it, it is now running with PyQt6. But I have another question. How can I change the color of the items and how can I make it strikethrough (setStrikeOut(True)?
@carloseduardogomezlozano4915 ай бұрын
Qt.ItemFlag.ItemIsUserCheckable, Qt.CheckState.Unchecked, Qt.CheckState.Unchecked. Si actualizan a PyQt6. Buen día