<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xml:base="http://www.newlc.com" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>NewLC - constructing multipage dialog - Comments</title>
 <link>http://www.newlc.com/topic-3971</link>
 <description>Comments for &quot;constructing multipage dialog&quot;</description>
 <language>en</language>
<item>
 <title>Re: constructing multipage dialog</title>
 <link>http://www.newlc.com/topic-3971#comment-45887</link>
 <description>&lt;p&gt;I make single-page form and all work fine. Then I make maulti-page form by changing .rss file&lt;/p&gt;

&lt;p&gt;Forms descriptions (RESOURCE FORM ) I make from single-page form by copy-paste. &lt;/p&gt;

&lt;p&gt;But after these changes program terminates by call ExecuteLD function of form object.&lt;br /&gt;
Why ?&lt;/p&gt;</description>
 <pubDate>Thu, 17 Apr 2008 16:56:11 +0200</pubDate>
 <dc:creator>Co2009</dc:creator>
 <guid isPermaLink="false">comment 45887 at http://www.newlc.com</guid>
</item>
<item>
 <title>Re: constructing multipage dialog</title>
 <link>http://www.newlc.com/topic-3971#comment-11782</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;Thanks a lot.&lt;br /&gt;&lt;br /&gt;But some stange things happen:&lt;br /&gt;&lt;br /&gt;I have a LISTBOX in my dialog. The items of the listbox is only viewed in the first page. &lt;br /&gt;&lt;br /&gt;Any ideas?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Again, tanks a lot for your help&lt;/div&gt;</description>
 <pubDate>Wed, 07 Sep 2005 15:07:17 +0200</pubDate>
 <dc:creator>magsus</dc:creator>
 <guid isPermaLink="false">comment 11782 at http://www.newlc.com</guid>
</item>
<item>
 <title>constructing multipage dialog</title>
 <link>http://www.newlc.com/topic-3971#comment-11781</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;How does one &amp;nbsp;*dynamically* create multi-page dialogs?? &amp;nbsp;It is easy to do it with the use of the resource file, but I couldn&#039;t find any examples of dynamically created ones.. Does anyone know any tutorials or code to do it?&lt;/div&gt;</description>
 <pubDate>Mon, 14 Feb 2005 14:48:51 +0100</pubDate>
 <dc:creator>Anonymous</dc:creator>
 <guid isPermaLink="false">comment 11781 at http://www.newlc.com</guid>
</item>
<item>
 <title>constructing multipage dialog</title>
 <link>http://www.newlc.com/topic-3971#comment-11780</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;Helped me too, thanks! That .rss example saved my day.&lt;br /&gt;Somehow the S80 SDK documentation claims that the dialogs on the first page can be defined in the DIALOG structure, but it doesn&#039;t work, I get a CONE 14 panic. &lt;br /&gt;Works fine when all dialog pages are defined in the ARRAY of PAGE!&lt;/div&gt;</description>
 <pubDate>Mon, 14 Feb 2005 08:06:26 +0100</pubDate>
 <dc:creator>bert q</dc:creator>
 <guid isPermaLink="false">comment 11780 at http://www.newlc.com</guid>
</item>
<item>
 <title>constructing multipage dialog</title>
 <link>http://www.newlc.com/topic-3971#comment-11779</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;Thank you very much for your help!&lt;/div&gt;</description>
 <pubDate>Thu, 02 Dec 2004 10:38:41 +0100</pubDate>
 <dc:creator>cmc100</dc:creator>
 <guid isPermaLink="false">comment 11779 at http://www.newlc.com</guid>
</item>
<item>
 <title>constructing multipage dialog</title>
 <link>http://www.newlc.com/topic-3971#comment-11778</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;Its simple .Here is the sample resouece file .&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;codeheader&quot;&gt;Code:&lt;/div&gt;&lt;div class=&quot;code&quot;&gt;RESOURCE ARRAY r_one_page&lt;br /&gt; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;br /&gt; &amp;nbsp; items=&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//add some controls you want to show in the dialog&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;DLG_LINE&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#125;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#125;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&amp;#125;&lt;br /&gt;&lt;br /&gt;RESOURCE ARRAY r_two_page&lt;br /&gt; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;br /&gt; &amp;nbsp; items=&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;PAGE&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;id = 0;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;text = &amp;quot;page1&amp;quot;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lines = r_one_page;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#125;,&lt;br /&gt;PAGE&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#123;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;id = 1;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;text = &amp;quot;page2&amp;quot;;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;lines = r_one_page;&lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#125; &lt;br /&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;#125;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&amp;#125;&lt;br /&gt;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&lt;br /&gt; &amp;nbsp; &amp;nbsp;&lt;br /&gt;RESOURCE DIALOG r_example_dialog&lt;br /&gt;&amp;#123;&lt;br /&gt;title=&amp;quot;Clock demo dialog&amp;quot;;&lt;br /&gt; &amp;nbsp; &amp;nbsp;buttons=R_EIK_BUTTONS_CANCEL_OK;&lt;br /&gt; &amp;nbsp; &amp;nbsp;flags=EEikDialogFlagNoDrag;&lt;br /&gt; &amp;nbsp; &lt;br /&gt; &amp;nbsp; &amp;nbsp;pages=r_two_page;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;</description>
 <pubDate>Thu, 02 Dec 2004 10:20:20 +0100</pubDate>
 <dc:creator>amitaggarwal</dc:creator>
 <guid isPermaLink="false">comment 11778 at http://www.newlc.com</guid>
</item>
<item>
 <title>constructing multipage dialog</title>
 <link>http://www.newlc.com/topic-3971</link>
 <description>&lt;div class=&quot;smf-content&quot;&gt;&lt;/div&gt;&lt;p&gt;&lt;a href=&quot;http://www.newlc.com/topic-3971&quot;&gt;read more&lt;/a&gt;&lt;/p&gt;</description>
 <comments>http://www.newlc.com/topic-3971#comments</comments>
 <category domain="http://www.newlc.com/forums/user-interface">User Interface</category>
 <pubDate>Thu, 02 Dec 2004 08:18:26 +0100</pubDate>
 <dc:creator>cmc100</dc:creator>
 <guid isPermaLink="false">4851 at http://www.newlc.com</guid>
</item>
</channel>
</rss>
