<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[help !! addRow doesn&#x27;t show]]></title><description><![CDATA[<p dir="auto">I have problem with PyQt5, I implement software from Udemy course. The instructor write the addRow property but it doesn't show in Pycharm IDE as shown in photos. also when I write addRow manually to the app. The app is crash.! <a href="https://ibb.co/PjXJX0N" target="_blank" rel="noopener noreferrer nofollow ugc">addRow photo</a></p>
]]></description><link>https://forum.qt.io/topic/134868/help-addrow-doesn-t-show</link><generator>RSS for Node</generator><lastBuildDate>Fri, 08 May 2026 15:35:12 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/134868.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 07 Mar 2022 05:31:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to help !! addRow doesn&#x27;t show on Thu, 24 Mar 2022 07:16:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sgaist">@<bdi>SGaist</bdi></a>  Yes sir, that was the mistake, I used QVBoxLayout(), but the correct is a QFormLayout. Thank you so much.</p>
]]></description><link>https://forum.qt.io/post/707491</link><guid isPermaLink="true">https://forum.qt.io/post/707491</guid><dc:creator><![CDATA[Kamalep]]></dc:creator><pubDate>Thu, 24 Mar 2022 07:16:27 GMT</pubDate></item><item><title><![CDATA[Reply to help !! addRow doesn&#x27;t show on Sat, 12 Mar 2022 20:31:39 GMT]]></title><description><![CDATA[<p dir="auto">Hi,</p>
<p dir="auto">I would say that the layout used is a <a href="https://doc.qt.io/qt-5/qformlayout.html" target="_blank" rel="noopener noreferrer nofollow ugc">QFormLayout</a>.</p>
]]></description><link>https://forum.qt.io/post/706167</link><guid isPermaLink="true">https://forum.qt.io/post/706167</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Sat, 12 Mar 2022 20:31:39 GMT</pubDate></item><item><title><![CDATA[Reply to help !! addRow doesn&#x27;t show on Sat, 12 Mar 2022 08:43:20 GMT]]></title><description><![CDATA[<p dir="auto">perfect , I will try, what you suggest !! but this exercise for course in Udemy ( Python GUI Programming Using PyQt5 by Volkan Atış) , The tutor who write this code :)</p>
]]></description><link>https://forum.qt.io/post/706136</link><guid isPermaLink="true">https://forum.qt.io/post/706136</guid><dc:creator><![CDATA[Kamalep]]></dc:creator><pubDate>Sat, 12 Mar 2022 08:43:20 GMT</pubDate></item><item><title><![CDATA[Reply to help !! addRow doesn&#x27;t show on Thu, 10 Mar 2022 06:57:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kamalep">@<bdi>Kamalep</bdi></a> said in <a href="/post/705863">help !! addRow doesn't show</a>:</p>
<blockquote>
<p dir="auto">QVBoxLayout</p>
</blockquote>
<p dir="auto">has no addRow() method!<br />
You need to put all these "self.lblname, self.name_entry" into horizontal layouts and add these horizontal layouts to bottom_layout (<a href="https://doc.qt.io/qt-5/qboxlayout.html#addLayout" target="_blank" rel="noopener noreferrer nofollow ugc">https://doc.qt.io/qt-5/qboxlayout.html#addLayout</a>).</p>
]]></description><link>https://forum.qt.io/post/705865</link><guid isPermaLink="true">https://forum.qt.io/post/705865</guid><dc:creator><![CDATA[jsulm]]></dc:creator><pubDate>Thu, 10 Mar 2022 06:57:01 GMT</pubDate></item><item><title><![CDATA[Reply to help !! addRow doesn&#x27;t show on Thu, 10 Mar 2022 06:37:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jonb">@<bdi>JonB</bdi></a></p>
<p dir="auto">the self.bottom_layout = QVBoxLayout()</p>
<p dir="auto">here is the code</p>
<pre><code>    def layouts(self):
        # Creating main layout
        self.main_layout = QVBoxLayout()
        self.top_layout = QVBoxLayout()
        self.bottom_layout = QVBoxLayout()

        # Creating child layout to main layout
        self.main_layout.addLayout(self.top_layout)
        self.main_layout.addLayout(self.bottom_layout)
        # Adding Widget top layout
        # Top layout
        self.top_layout.addStretch()
        self.top_layout.addWidget(self.title)
        self.top_layout.addWidget(self.img_add)
        self.top_layout.addStretch()
        self.top_layout.setContentsMargins(120, 20, 10, 30)  # left, top , right, bottom
        # Bottom layout
        self.bottom_layout.add
        self.bottom_layout.addRow(self.lblname, self.name_entry)
        self.bottom_layout.addRow(self.lblsurname, self.surname_entry)
        self.bottom_layout.addRow(self.lblphone, self.phone_entry)
        self.bottom_layout.addRow(self.lblemail, self.email_entry)
        self.bottom_layout.addRow(self.lblimg, self.btnimg)
        self.bottom_layout.addRow(self.lbladdress, self.address_editor)
        self.bottom_layout.addRow(self.lblemail, self.email_entry)
        self.bottom_layout.addRow("", self.btnadd)
        #sitting main layout for window
        self.setLayout(self.main_layout)
</code></pre>
<p dir="auto">if you want see all my project, i uploaded to github , the code is in Section-4 file name is <a href="http://main.py" target="_blank" rel="noopener noreferrer nofollow ugc">main.py</a>.<br />
<a href="https://github.com/Kamalep/Udmey_PyQt5" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/Kamalep/Udmey_PyQt5</a></p>
]]></description><link>https://forum.qt.io/post/705863</link><guid isPermaLink="true">https://forum.qt.io/post/705863</guid><dc:creator><![CDATA[Kamalep]]></dc:creator><pubDate>Thu, 10 Mar 2022 06:37:15 GMT</pubDate></item><item><title><![CDATA[Reply to help !! addRow doesn&#x27;t show on Mon, 07 Mar 2022 09:38:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kamalep">@<bdi>Kamalep</bdi></a><br />
What type is <code>self.bottom_layout</code>?  It looks like it is not of a type which has any <code>addRow()</code> method....  I don't think any of the classes derived from <code>QLayout</code> have such a method.</p>
<p dir="auto">And please paste the text of relevant excerpts of code rather than screenshots.</p>
]]></description><link>https://forum.qt.io/post/705435</link><guid isPermaLink="true">https://forum.qt.io/post/705435</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Mon, 07 Mar 2022 09:38:09 GMT</pubDate></item></channel></rss>