QTableWidget - Python PyQt5 Qt Designer

  Рет қаралды 29,715

Turtle Code

Turtle Code

3 жыл бұрын

We made a desktop application using QTableWidget library from the Pyqt5 library in the Python programming language. We designed the desktop application in the Qt designer program.
You can support us by subscribing to Turtle Code KZbin channel and following other social media accounts.
Subscribe to KZbin Channel
➤ l24.im/2L9hbGr
GitHub - Source Codes
➤ l24.im/zDgj7yi
Video Series:
Android App Development Tutorial
➤ l24.im/lmikwz
Python Pyqt5 Tutorial
➤ l24.im/jPVh
Python Turtle Tutorial
➤ l24.im/b4T3A7d
Python Game Tutorial
➤ l24.im/MJ7h
Python Selenium Tutorial
➤ l24.im/GIZKru
#python #tablewidget

Пікірлер: 53
@turtlecode
@turtlecode 3 жыл бұрын
Github Source Code : github.com/turtlecode/QTableWidgetPythonPyQt5QtDesigner İnstagram : instagram.com/turtlegamecode/ Twitter : twitter.com/turtlegamecode Tiktok : www.tiktok.com/@turtlecode
@pyqt3366
@pyqt3366 3 жыл бұрын
thanks for github
@turtlecode
@turtlecode 2 жыл бұрын
@@pyqt3366 You're welcome
@knamify
@knamify 6 ай бұрын
Supper Good Good . Thank
@turtlecode
@turtlecode 6 ай бұрын
Thanks for comment. You can support us by sharing it with your friends.
@user-yd8ju7uh4f
@user-yd8ju7uh4f 8 ай бұрын
Огромное спасибо, все просто и понятно
@turtlecode
@turtlecode 8 ай бұрын
Спасибо за хороший комментарий. Поделившись с друзьями, вы можете помочь нам 😊😊
@waqasali6644
@waqasali6644 Жыл бұрын
Well explained
@faranahmad204
@faranahmad204 4 күн бұрын
thank you.
@turtlecode
@turtlecode 4 күн бұрын
you're welcome.
@dnetprogrammer2906
@dnetprogrammer2906 2 жыл бұрын
Good tutorial, well done
@turtlecode
@turtlecode 2 жыл бұрын
Hey Dnet. If you are interested I release lots of videos about desktop app and android app. Keep following and share with your friends for support us :)
@nguyenviet908
@nguyenviet908 2 ай бұрын
thank you
@turtlecode
@turtlecode 2 ай бұрын
You are welcome. You can support us by sharing videos on your social media accounts.
@Trigoter
@Trigoter 3 жыл бұрын
When will the kotlin video come out?
@turtlecode
@turtlecode 3 жыл бұрын
I'll upload one more video
@shanvantharunmozhi
@shanvantharunmozhi 2 жыл бұрын
dude amazing vids!
@turtlecode
@turtlecode 2 жыл бұрын
Have you checked out other playlists? 👉 kzbin.infoplaylists
@joeking5211
@joeking5211 Жыл бұрын
Super, nicely paced, learned a great deal even though it'll be in PySide6, but all seems relevant so far. Would really like to know how to set that if any cell on arow is clicked that the whole row gets selected, stuck on that.
@turtlecode
@turtlecode Жыл бұрын
Glad it was helpful!
@uguryuksel4127
@uguryuksel4127 2 жыл бұрын
Good thanks ✋😇
@turtlecode
@turtlecode 2 жыл бұрын
Hi Ugur, thanks for good comment
@pyqt3366
@pyqt3366 3 жыл бұрын
Good Tutorial
@turtlecode
@turtlecode 3 жыл бұрын
Thanks for comment
@waqasali6644
@waqasali6644 Жыл бұрын
I want to create a table with time hours heading. One cell divides into 4 representatives for 15 minutes (15*4) = 60 minutes
@-mathsinsinhala8126
@-mathsinsinhala8126 2 жыл бұрын
good one
@turtlecode
@turtlecode 2 жыл бұрын
Thanks for comment
@KaiqueFura200
@KaiqueFura200 2 жыл бұрын
When I'm going to show only 10,000 records on the tablewidget, it gets very slow. How do I resolve this? Using TableView it shows quickly, however it is very complex to mess with it, I would like to stay with TableWidget. Anyway, do you know a way for the tablewidget to load any data numbers without slowing down?
@turtlecode
@turtlecode 2 жыл бұрын
Hey Kaique, 10,000 records is too much. Generally, programmers prefer to fetch so many records from the internet service instead of embedding them in the code. At least that's what I would do. I don't have a sample program like this yet. But soon I will start uploading API service videos (weather app etc.). If you know about extracting data from the internet, you can do it. Otherwise, I recommend you to follow the videos that I will upload soon.
@derp4721
@derp4721 8 ай бұрын
from pyqt5 import qtwidget not working for me. there's an error when i try to install pyqt5 and ive checked everything seems to be in order.
@turtlecode
@turtlecode 8 ай бұрын
hey, can you send me error image by email? turtlecode.question@gmail.com
@slavon213t
@slavon213t Жыл бұрын
Thank you for this video. How do I can move row to up or down?
@turtlecode
@turtlecode Жыл бұрын
Thanks for your comment. You can replace it with index. I'll post a video about it when I get the chance.
@VirtualTech
@VirtualTech 6 ай бұрын
I have written a code to hide buttons in table cells when clicked. But they reappear when new row is added. What could be the problem
@turtlecode
@turtlecode 6 ай бұрын
Can you send the codes? Maybe I can help
@VirtualTech
@VirtualTech 6 ай бұрын
@@turtlecode This is the link to my python file : drive.google.com/file/d/1ePiIq-96F5OjOv_5E5KMHwgnXuI-QAMB/view?usp=sharing Some info abt the code : i) Table is created in "create_table" function ii)ADD button in the table is created in "create_button_widgetissued" and "create_button_widgetrecieved" function iii)New rows and buttons are added to the table in "enter_details" function iv)Signature dialog box is opened in "open_signature_dialog_issued" and open_signature_dialog_recieved" function. (it uses SignatureDialog class in the botttom of the code) v) "hiderec" and "hideiss" functions hide the ADD buttons in the table. vi)Visibility status of buttons is stored in "button_widgets[ ]" list.
@naifsuhaim8511
@naifsuhaim8511 Жыл бұрын
Great video. How can I mask a column that is meant to be passwords ? like echomode in qline edit
@turtlecode
@turtlecode Жыл бұрын
Passwords are kept in the database with different encryption techniques.
@naifsuhaim8511
@naifsuhaim8511 Жыл бұрын
@@turtlecode Is there a way to hide them with the characters ****** ? and be able to show them when a button is pushed ?
@turtlecode
@turtlecode Жыл бұрын
ı need to search. I haven't use it in my projects before
@fritzsamuelchery1609
@fritzsamuelchery1609 2 жыл бұрын
how can I disable resize a column in a QTableWidget
@turtlecode
@turtlecode 2 жыл бұрын
maybe this is an answer stackoverflow.com/questions/67652014/disable-editing-of-qtablewidget-in-pyqt5-with-scrolling-enabled
@buminkagan9976
@buminkagan9976 Жыл бұрын
Hocam anlatiminiz guzel lakin, yabanci dil oldugu icin surekli videoyu durdurup altyaziyi okumak zorunda kaliyoruz. Aslinda uygulama orneklerini bir de Turkce seslendirmeyle yapsaniz super olur. Turkce playlist yapabilirsiniz.
@turtlecode
@turtlecode Жыл бұрын
vaktim olunca tüm videoları türkçeye çevireceğim.
@buminkagan9976
@buminkagan9976 Жыл бұрын
teşekkür ederim
@karthikakarthika6032
@karthikakarthika6032 Жыл бұрын
how will you avoid duplicate rows
@turtlecode
@turtlecode Жыл бұрын
ı will upload a new video about it soon.
@user-lm7gm8xp3j
@user-lm7gm8xp3j Жыл бұрын
hi, I have a problem when adding an entry. the program breaks without any messages, only in the terminal it writes "Process finished with exit code -1073740791 (0xC0000409)". I looked on the Internet, but not everything is right. please help) PS I apologize if the message is written incorrectly, I am writing with the help of google translator
@turtlecode
@turtlecode Жыл бұрын
Hey. Did you do all step in video step by step?
@user-lm7gm8xp3j
@user-lm7gm8xp3j Жыл бұрын
​@@turtlecode Yes. I enter the data I need, click on save, a couple of seconds and the application closes. Everything was perfect. It worked right up to the moment with the button. I'm taking data from a sql table, can this affect how applications work?
@turtlecode
@turtlecode Жыл бұрын
tescenterinfo@gmail.com send me a video with your error.
@user-lm7gm8xp3j
@user-lm7gm8xp3j Жыл бұрын
@@turtlecode I'm wildly sorry. i missed "t" in one line. found helpful advice. if your PyCharm does not write traceback and does not explain what the problem is (as it was for me), you need to go to Run-> Edit Configuration, check the Run with Python Console checkbox. in the console found a specific place of the error. Thank you for the video. subscribed
@turtlecode
@turtlecode Жыл бұрын
I am glad 😊
Разработка на python / PySide6 работа с QTableView
19:27
Михаил Каташевцев
Рет қаралды 4,1 М.
EVOLUTION OF ICE CREAM 😱 #shorts
00:11
Savage Vlogs
Рет қаралды 12 МЛН
Nastya and SeanDoesMagic
00:16
Nastya
Рет қаралды 44 МЛН
Inside Out 2: Who is the strongest? Joy vs Envy vs Anger #shorts #animation
00:22
JPEG is Dying - And that's a bad thing
8:09
2kliksphilip
Рет қаралды 180 М.
Stop, Intel’s Already Dead! - AMD Ryzen 9600X & 9700X Review
13:47
Linus Tech Tips
Рет қаралды 977 М.
PyQt5 QTableWidget tutorial: Load data, fill tables, format tables [Table Widget]
18:04
Convert GUI App to Real Program -  Python to exe to setup wizard
23:27
Python Simplified
Рет қаралды 506 М.
PyQt6 Course For Beginners [Python GUI Framework PyQt ]
3:09:20
Parwiz Forogh
Рет қаралды 162 М.
Let's code a beginner's Python BANK PROGRAM 💰
15:01
Bro Code
Рет қаралды 134 М.
EVOLUTION OF ICE CREAM 😱 #shorts
00:11
Savage Vlogs
Рет қаралды 12 МЛН