|
|
User login
Feeds |
Link Name not found??
|
|||||
| Mon, 2004-11-15 13:17 | |
|
Hi, I have been troubled by a problem. In my .rss file I have the normal message query declared , but it keep giving me the 'Link Name not found'. Can somebody point out anything that may have been left out. ******************************************************** //includes just for reference #include <eikon.rh> #include <eikon.rsg> #include <avkon.rh> #include <avkon.rsg> #include "findbt.hrh" //the real resource RESOURCE DIALOG r_message_query { flags = EGeneralQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow; buttons = R_AVKON_SOFTKEYS_OK_EMPTY; items= { DLG_LINE { type = EAknCtPopupHeadingPane; id = EAknMessageQueryHeaderId; itemflags = EEikDlgItemNonFocusing; control = AVKON_HEADING { }; }, DLG_LINE { type = EAknCtMessageQuery; id = EAknMessageQueryContentId; control = AVKON_MESSAGE_QUERY { }; } }; } Thanks. --Mayur. |
|
Forum posts: 29
Forum posts: 6
I have this same problem. The AVKON_HEADING -part of the dialog gives this error. Have you resolved the problem or does somebody know the solution to this?
- i -
Forum posts: 33
try
control = AVKON_HEADING
{
headinglayout=R_AVKON_LIST_HEADING_PANE_POPUPS;
};
instead of the empty one. This worked for me
Amogh