Hi everybody,
I wonder if anybody found this issue, I'm having an application that at some point uses a CAknNumberQueryDialog to query an integer value. The following code, works on every 3rd edition devices except N73 and I can't figure it out why it doesn't work on this one:
TInt numberOfPictures = 30;
CAknNumberQueryDialog* queryDialog = CAknNumberQueryDialog::NewL(numberOfPictures);
queryDialog->PrepareLC(R_COMPOSE_QUERY_NUMBER);
TBuf<128> dialogTitle;
iEikonEnv->ReadResource(dialogTitle, LR_PICTURES_COUNT);
queryDialog->SetPromptL(dialogTitle);
if (queryDialog->RunLD())
{
}
And the resources is:
RESOURCE DIALOG r_compose_query_number
{
flags = EAknGeneralQueryFlags;
buttons = R_AVKON_SOFTKEYS_OK_CANCEL;
items =
{
DLG_LINE
{
type = EAknCtQuery;
id = EGeneralQuery;
control = AVKON_DATA_QUERY
{
layout = ENumberLayout;
label = "Pictures";
control = AVKON_INTEGER_EDWIN
{
min = 1;
max = 75;
};
};
}
};
}
Cheers everyone!



