<?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[How to code a loading&#x27;.&#x27; &#x27;..&#x27; &#x27;...&#x27; page that redirects to another ui after 2 seconds?]]></title><description><![CDATA[<p dir="auto">I am extremely new to qt designer and python.<br />
I have made a UI page that will appear when you open the application. I want the UI page to have an animated "loading..." where the dots change every 0.5 seconds. I want this page to automatically change to my other UI page after 2 seconds of waiting.</p>
<p dir="auto">How would I code that? And where would I put that code?</p>
<p dir="auto">Thanks so much,</p>
<p dir="auto">Aaron</p>
]]></description><link>https://forum.qt.io/topic/112734/how-to-code-a-loading-page-that-redirects-to-another-ui-after-2-seconds</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 16:37:18 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/112734.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 20 Mar 2020 00:39:41 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to How to code a loading&#x27;.&#x27; &#x27;..&#x27; &#x27;...&#x27; page that redirects to another ui after 2 seconds? on Tue, 24 Mar 2020 04:18:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/itsnotaron">@<bdi>itsnotaron</bdi></a> said in <a href="/post/584332">How to code a loading'.' '..' '...' page that redirects to another ui after 2 seconds?</a>:</p>
<blockquote>
<p dir="auto">I don't need a loading page, but to make it more realistic/to get more marks, I want to add a 2 second loading page.</p>
</blockquote>
<p dir="auto">You can make a fake loading screen, which simulates loading some stuff by using a <code>QTimer</code>  which will increase the <code>QProgressBar</code> by some value.</p>
<p dir="auto">Skip the "task" - part. Just make the timer consecutively increase your progress by some amount of steps or some value or percentage<br />
<a href="https://doc.qt.io/qt-5/qprogressdialog.html#details" target="_blank" rel="noopener noreferrer nofollow ugc">https://doc.qt.io/qt-5/qprogressdialog.html#details</a></p>
]]></description><link>https://forum.qt.io/post/584336</link><guid isPermaLink="true">https://forum.qt.io/post/584336</guid><dc:creator><![CDATA[Pl45m4]]></dc:creator><pubDate>Tue, 24 Mar 2020 04:18:47 GMT</pubDate></item><item><title><![CDATA[Reply to How to code a loading&#x27;.&#x27; &#x27;..&#x27; &#x27;...&#x27; page that redirects to another ui after 2 seconds? on Tue, 24 Mar 2020 03:48:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sgaist">@<bdi>SGaist</bdi></a> For an assignment I have, I need to make a (fake, but) realistic looking application. I proposed a loading page, so I want to follow through with that.<br />
I don't need a loading page, but to make it more realistic/to get more marks, I want to add a 2 second loading page.</p>
]]></description><link>https://forum.qt.io/post/584332</link><guid isPermaLink="true">https://forum.qt.io/post/584332</guid><dc:creator><![CDATA[itsnotaron]]></dc:creator><pubDate>Tue, 24 Mar 2020 03:48:22 GMT</pubDate></item><item><title><![CDATA[Reply to How to code a loading&#x27;.&#x27; &#x27;..&#x27; &#x27;...&#x27; page that redirects to another ui after 2 seconds? on Fri, 20 Mar 2020 08:30:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/itsnotaron">@<bdi>itsnotaron</bdi></a><br />
Apart from what <a class="plugin-mentions-user plugin-mentions-a" href="/user/sgaist">@<bdi>SGaist</bdi></a> says (always heed his advice!).</p>
<p dir="auto">In addition to <a class="plugin-mentions-user plugin-mentions-a" href="/user/jsulm">@<bdi>jsulm</bdi></a> , there is also <code>QSplashScreen</code>, <a href="https://doc.qt.io/qt-5/qsplashscreen.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://doc.qt.io/qt-5/qsplashscreen.html</a> if you specifically intend during application startup.  You can change message on it dynamically.  I'm sure it's the same principle as <code>QProgresss...</code>.</p>
]]></description><link>https://forum.qt.io/post/583630</link><guid isPermaLink="true">https://forum.qt.io/post/583630</guid><dc:creator><![CDATA[JonB]]></dc:creator><pubDate>Fri, 20 Mar 2020 08:30:55 GMT</pubDate></item><item><title><![CDATA[Reply to How to code a loading&#x27;.&#x27; &#x27;..&#x27; &#x27;...&#x27; page that redirects to another ui after 2 seconds? on Fri, 20 Mar 2020 07:16:29 GMT]]></title><description><![CDATA[<p dir="auto">Hi and welcome to devnet,</p>
<p dir="auto">Out of curiosity, why impose that 2 seconds delay to your user ?</p>
<p dir="auto">Based on your description it's not really justified.</p>
]]></description><link>https://forum.qt.io/post/583620</link><guid isPermaLink="true">https://forum.qt.io/post/583620</guid><dc:creator><![CDATA[SGaist]]></dc:creator><pubDate>Fri, 20 Mar 2020 07:16:29 GMT</pubDate></item><item><title><![CDATA[Reply to How to code a loading&#x27;.&#x27; &#x27;..&#x27; &#x27;...&#x27; page that redirects to another ui after 2 seconds? on Fri, 20 Mar 2020 05:50:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/itsnotaron">@<bdi>itsnotaron</bdi></a> Sounds like you need <a href="https://doc.qt.io/qt-5/qprogressdialog.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://doc.qt.io/qt-5/qprogressdialog.html</a><br />
Or <a href="https://doc.qt.io/qt-5/qprogressbar.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://doc.qt.io/qt-5/qprogressbar.html</a> depending on how you want to do this.</p>
]]></description><link>https://forum.qt.io/post/583610</link><guid isPermaLink="true">https://forum.qt.io/post/583610</guid><dc:creator><![CDATA[jsulm]]></dc:creator><pubDate>Fri, 20 Mar 2020 05:50:00 GMT</pubDate></item></channel></rss>