Link Name not found??

Login to reply to this topic.
Mon, 2004-11-15 13:17
Joined: 2004-06-11
Forum posts: 404
Hi,
I have been troubled by a problem. Angry
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.


Tue, 2004-11-16 15:37
Joined: 2004-10-30
Forum posts: 29
Link Name not found??
u may not include one of the id in .hrh file which is in .rss file. just check it.
Tue, 2005-01-04 13:23
Joined: 2004-12-15
Forum posts: 6
Link Name not found??
Hi,

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 -
Wed, 2007-09-19 07:02
Joined: 2007-09-19
Forum posts: 33
Re: Link Name not found??

try
control = AVKON_HEADING
{
headinglayout=R_AVKON_LIST_HEADING_PANE_POPUPS;
};

instead of the empty one. This worked for me


Amogh

  • Login to reply to this topic.