Read-only archive of the All About Symbian forum (2001–2013) · About this archive

How create multipage-dialog ?

1 replies · 1,301 views · Started 07 October 2003

How create multipage-dialog from resources ?

My next code don't work

RESOURCE DIALOG r_test_dialog
{
title = "test"
pages = r_pages;
}

RESOURCE ARRAY r_pages
{
items=
{
PAGE={text="page1";id=EPage1;},
PAGE={text="page2";id=EPage2;}
};
}

what's wrong ?

I have it trouble too, it because 'lines' must be defined:
...
PAGE
{
text="Photo";
lines=r_lines2;
}
...

RESOURCE ARRAY r_lines2
{
items=
{
DLG_LINE
{
...
};
}