<?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[Run an external application inside a qwidget]]></title><description><![CDATA[<p dir="auto">Want to run an Excel.exe inside a Display widget.<br />
Any idea?</p>
]]></description><link>https://forum.qt.io/topic/62542/run-an-external-application-inside-a-qwidget</link><generator>RSS for Node</generator><lastBuildDate>Fri, 14 Aug 2026 06:52:36 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/62542.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 11 Jan 2016 14:01:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Run an external application inside a qwidget on Mon, 11 Jan 2016 17:38:12 GMT]]></title><description><![CDATA[<p dir="auto">There's a <a href="http://doc.qt.io/qt-5/qaxwidget.html" target="_blank" rel="noopener noreferrer nofollow ugc">QAxWidget</a> exactly for the purpose of embedding ActiveX controls inside widgets.</p>
]]></description><link>https://forum.qt.io/post/306704</link><guid isPermaLink="true">https://forum.qt.io/post/306704</guid><dc:creator><![CDATA[Chris Kawa]]></dc:creator><pubDate>Mon, 11 Jan 2016 17:38:12 GMT</pubDate></item><item><title><![CDATA[Reply to Run an external application inside a qwidget on Mon, 11 Jan 2016 14:25:17 GMT]]></title><description><![CDATA[<p dir="auto">Hi<br />
you can have a look at QAxObject<br />
<a href="http://doc.qt.io/qt-5/qaxbase.html" target="_blank" rel="noopener noreferrer nofollow ugc">http://doc.qt.io/qt-5/qaxbase.html</a><br />
It allows you to remote control Excel. (via automation)<br />
Not sure you can get to be inside your widget.</p>
<pre><code>QAxObject *excel;
excel = new QAxObject("Excel.Application", this);
excel-&gt;setProperty("Visible", 1);
</code></pre>
<p dir="auto">Also read about automation here.<br />
<a href="http://www.informit.com/articles/article.aspx?p=1405560&amp;seqNum=2" target="_blank" rel="noopener noreferrer nofollow ugc">http://www.informit.com/articles/article.aspx?p=1405560&amp;seqNum=2</a></p>
]]></description><link>https://forum.qt.io/post/306677</link><guid isPermaLink="true">https://forum.qt.io/post/306677</guid><dc:creator><![CDATA[mrjj]]></dc:creator><pubDate>Mon, 11 Jan 2016 14:25:17 GMT</pubDate></item></channel></rss>