<?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[a qml problem]]></title><description><![CDATA[<p dir="auto">QML Problem:<br />
Write an application in QML, which has a multi line text box, one button and a text field.</p>
<p dir="auto">As soon as the application is started, a timer should start in C++ code and update the textfield defined in QML.</p>
<p dir="auto">Entering text in the text area and pressing the button should write the string in the text area to a file.</p>
]]></description><link>https://forum.qt.io/topic/64228/a-qml-problem</link><generator>RSS for Node</generator><lastBuildDate>Mon, 15 Jun 2026 11:24:50 GMT</lastBuildDate><atom:link href="https://forum.qt.io/topic/64228.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 16 Feb 2016 05:51:57 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to a qml problem on Tue, 16 Feb 2016 08:40:50 GMT]]></title><description><![CDATA[<p dir="auto">thank you sir,<br />
can you please also elaborate  how can i sort out this problem , "** Entering text in the text area and pressing the button should write the string in the text area to a file**".</p>
]]></description><link>https://forum.qt.io/post/313569</link><guid isPermaLink="true">https://forum.qt.io/post/313569</guid><dc:creator><![CDATA[samsher]]></dc:creator><pubDate>Tue, 16 Feb 2016 08:40:50 GMT</pubDate></item><item><title><![CDATA[Reply to a qml problem on Tue, 16 Feb 2016 08:35:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/samsher">@<bdi>samsher</bdi></a>       for creation a timer you can use this type</p>
<pre><code>Item {
        Timer {
            interval: 500; running: true; repeat: true

          onTriggered: time.text =Date().toString()


        }

        Text { id: time
        x:95
        y:120

        }
    }
</code></pre>
<p dir="auto">for  creation  a textinput you can use</p>
<pre><code>TextInput { text: "Hello"; font.capitalization: Font.AllLowercase }
</code></pre>
<p dir="auto">Qpushbutton</p>
<pre><code>QPushButton#evilButton { background-color: red }
</code></pre>
<p dir="auto">all thing is easy in qml Qt,some try.</p>
]]></description><link>https://forum.qt.io/post/313567</link><guid isPermaLink="true">https://forum.qt.io/post/313567</guid><dc:creator><![CDATA[stackprogramer]]></dc:creator><pubDate>Tue, 16 Feb 2016 08:35:02 GMT</pubDate></item></channel></rss>