<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How to print the text in the app wizard in Other NXP Products</title>
    <link>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1976240#M25954</link>
    <description>&lt;P&gt;Hello Everyone I have build a Gui using the app wizard now to like to print the data of the received data of the uart to the gui i don't know how to print the data of the uart in my gui can someone please help me&lt;/P&gt;</description>
    <pubDate>Thu, 17 Oct 2024 16:31:46 GMT</pubDate>
    <dc:creator>mathan</dc:creator>
    <dc:date>2024-10-17T16:31:46Z</dc:date>
    <item>
      <title>How to print the text in the app wizard</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1976240#M25954</link>
      <description>&lt;P&gt;Hello Everyone I have build a Gui using the app wizard now to like to print the data of the received data of the uart to the gui i don't know how to print the data of the uart in my gui can someone please help me&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 16:31:46 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1976240#M25954</guid>
      <dc:creator>mathan</dc:creator>
      <dc:date>2024-10-17T16:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the text in the app wizard</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1976311#M25955</link>
      <description>&lt;P&gt;&lt;SPAN&gt;in detail i need to know How to change the text of the app wizard while during the program time for example i had a text box with text"on" if i press the button on the ra6m3 board it should change the text on the gui to "off" how to implement this&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Oct 2024 17:53:07 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1976311#M25955</guid>
      <dc:creator>mathan</dc:creator>
      <dc:date>2024-10-17T17:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the text in the app wizard</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1976951#M25964</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/242149"&gt;@mathan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I ask which chip you are using?&lt;/P&gt;
&lt;P&gt;BR&lt;/P&gt;
&lt;P&gt;Hang&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 09:30:51 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1976951#M25964</guid>
      <dc:creator>Harry_Zhang</dc:creator>
      <dc:date>2024-10-18T09:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the text in the app wizard</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1977063#M25971</link>
      <description>&lt;P&gt;I am using RA6M3 board i have solved the issue of writing the text to the text box i have done with&amp;nbsp;&lt;SPAN&gt; APPW_SetText(ID_SCREEN_WIFI, ID_TEXT_01, RxData); Now can you please help me to add a text to the listbox&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Oct 2024 11:34:44 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1977063#M25971</guid>
      <dc:creator>mathan</dc:creator>
      <dc:date>2024-10-18T11:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the text in the app wizard</title>
      <link>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1977868#M25989</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.nxp.com/t5/user/viewprofilepage/user-id/242149"&gt;@mathan&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;&lt;SPAN class="ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak"&gt;To add new text to the listbox dynamically during runtime, you can use the APPW_SetItemText() function or equivalent to update the content of the listbox.&lt;BR /&gt;Here’s an example of how you can do it:&lt;BR /&gt;&lt;BR /&gt;// Assuming RxData contains the data received from UART&lt;BR /&gt;char RxData[] = "New UART Data";&lt;BR /&gt;&lt;BR /&gt;// Add the received UART data to the listbox&lt;BR /&gt;APPW_SetItemText(ID_SCREEN_MAIN, ID_LISTBOX_01, RxData);&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;BR&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Hang&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2024 07:29:00 GMT</pubDate>
      <guid>https://community.nxp.com/t5/Other-NXP-Products/How-to-print-the-text-in-the-app-wizard/m-p/1977868#M25989</guid>
      <dc:creator>Harry_Zhang</dc:creator>
      <dc:date>2024-10-21T07:29:00Z</dc:date>
    </item>
  </channel>
</rss>

