Discussion Board

Results 1 to 8 of 8
  1. #1
    Registered User khiethamarie's Avatar
    Join Date
    Jul 2010
    Posts
    17
    anyone can help me on how to create HELP field in symbian c++? I used an empty form and label that contains the content of my Help but there is an error "Text length exceeds specified limit of ff"
    please help me...

  2. #2
    Super Contributor mahbub_s60's Avatar
    Join Date
    Mar 2008
    Posts
    1,481
    Do you mean the help file or help system of your Symbian C++ application? If yes then there are good example in the SDK for example HelpExample

    If you are talking about other issues, could you clarify a bit more?

  3. #3
    Registered User khiethamarie's Avatar
    Join Date
    Jul 2010
    Posts
    17
    i want to create a help file in my application so that the user will be guided using my application and i dont have any idea doing that please help me..

  4. #4
    Registered User kis_spn's Avatar
    Join Date
    Feb 2007
    Location
    India
    Posts
    1,128
    Hi,

    I think, You are looking Context-sensitive help.

    For creating same kind of help go through below basic threads

    http://wiki.forum.nokia.com/index.ph...ve_Help_Basics
    http://wiki.forum.nokia.com/index.ph...sensitive_help
    http://wiki.forum.nokia.com/index.php/Help_file_usage

    Hope, It'll help you.

  5. #5
    Registered User khiethamarie's Avatar
    Join Date
    Jul 2010
    Posts
    17
    i want to add that help form to my application.. and my idea is adding another empty form to my application and label to holds the text of that help field there is an error "text exceeds..." and i dont know how to add the .hlp form to my application.. please help.

  6. #6
    Registered User kis_spn's Avatar
    Join Date
    Feb 2007
    Location
    India
    Posts
    1,128
    For adding help in your application ...please follow below mentioned steps:

    Step-1: From SDK Help browse to Developer Library » Tools and Utilities » Context-sensitive help guide

    step-2:Using this guide create your application related .hlp and .hlp.hrh file

    step-3: place this .hlp file c:\system\help folder.

    step-3: In your appUi class declared the function
    CArrayFix<TCoeHelpContext>* HelpContextL() const

    step-4: In your HandleCommandL() method under help menuitem use this code.
    CArrayFix<TCoeHelpContext>* buf = CCoeAppUi::AppHelpContextL();
    HlpLauncher::LaunchHelpApplicationL(iEikonEnv->WsSession(), buf);

    step-5: code for HelpContextL() method
    CArrayFix<TCoeHelpContext>* CMYAPPUI::HelpContextL() const
    {

    TUid KUidHelpExampleApp; // this is the uid of your .hlp file.

    CArrayFixFlat<TCoeHelpContext>* array =
    new(ELeave)CArrayFixFlat<TCoeHelpContext>(1);
    CleanupStack::PushL(array);
    array->AppendL(TCoeHelpContext(KUidHelpExampleApp,KContext1));
    CleanupStack::Pop(array);
    return array;
    //KContext1 is the help context,you get this value from your .hlp.hrh

    file

    }

    step-5: include it in your .pkg file
    "app.hlp: -"!:\resource\help\app.hlp"

  7. #7
    Registered User khiethamarie's Avatar
    Join Date
    Jul 2010
    Posts
    17
    where i can find the Developer Library » Tools and Utilities » Context-sensitive help guide i'm using carbide v2.3 i cant find it on my toolbar.. thanks...

  8. #8
    Nokia Developer Champion kiran10182's Avatar
    Join Date
    Mar 2006
    Location
    Helsinki, Finland
    Posts
    8,236
    - Open this link: http://library.forum.nokia.com/
    - And search for Context-sensitive help guide
    Nokia Developer Wiki Moderation team

Similar Threads

  1. Unable to create and display popup field
    By varshini.muthukrishnan in forum Symbian Tools & SDKs
    Replies: 0
    Last Post: 2010-03-31, 13:22
  2. Replies: 6
    Last Post: 2009-08-07, 13:18
  3. How To Create PopUp Field in S60 3rd Ed??
    By sauvikds in forum Symbian User Interface
    Replies: 2
    Last Post: 2008-12-24, 13:54
  4. The bit field order of symbian?
    By yangyunsy in forum Open C/C++
    Replies: 1
    Last Post: 2008-12-16, 14:46
  5. how to create nickname field in contact?
    By raysky in forum Symbian C++
    Replies: 1
    Last Post: 2008-09-22, 04:29

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved