help

Login to reply to this topic.
Thu, 2006-04-27 08:48
Joined: 2006-03-11
Forum posts: 43
how can i create one help ?and i want to write some long text..
pls reply...

Thu, 2006-04-27 09:31
Forum Nokia Champion
Joined: 2005-08-31
Forum posts: 124
Re: help
hi Sheena,

check ur sdk help u'll find cshelp project or u'll have the helpexample in ur sereis60EX check it and follow the steps for making the help file.


Regards,
Mateen maldar

Mateen Maldar

Thu, 2006-04-27 09:37
Joined: 2006-03-11
Forum posts: 43
Re: help
thank u 4 ur reply....
Thu, 2006-04-27 12:33
Joined: 2006-01-09
Forum posts: 105
Re: help
Hi:

you can use CAknMessageQueryDialog class in order to display your help dialog...
you can make your help file's content as your dialog's...


Keep it up...
CodePupil

Thanks and Regards
CodePupil
__________________________
You are I and I am he .. !!

Fri, 2006-04-28 11:29
Joined: 2006-03-11
Forum posts: 43
Re: help
can u pls tell me how i get scroll bar ,bcoz i  need a vry long text...
Fri, 2006-04-28 11:34
Joined: 2006-01-09
Forum posts: 105
Re: help
Hi,

if you use CAknMessageQueryDialog , you will get Scroll facility automatically...

however you can also use CEikRichTextEditor in which you can set scroll bars(vertical/horizontal).


Cheers!!
CodePupil

Thanks and Regards
CodePupil
__________________________
You are I and I am he .. !!

Wed, 2006-05-03 11:47
Joined: 2006-03-11
Forum posts: 43
Re: help
but i need to display a very long text..using resource file its giving errors...so is this possible like write the text document in a buffer and display ...
pls reply...
Thu, 2006-05-04 05:39
Joined: 2006-01-09
Forum posts: 105
Re: help
Hi

just write your text in a text file and attach this text file with CEikRichTextEditor...

Is That Clear???


Cheers!!
CodePupil

Thanks and Regards
CodePupil
__________________________
You are I and I am he .. !!

Thu, 2006-05-04 10:55
Joined: 2006-01-09
Forum posts: 105
Re: help
Hi Smiley

here is code snippet..

///code starts

const TFileName file(KHelpFilePath);//containing your text file path


iRichEdwin->InsertFromTextFileL(file,CPlainText::EOrganiseByParagraph );//attaching file with CEikRichTextEditor....iRichEdwin is object of CEikRichTextEditor


iRichEdwin->SetCursorPosL(1,ETrue);//setting cursor position


///code ends

hope...it would work....



Cheers!!
CodePupil

Thanks and Regards
CodePupil
__________________________
You are I and I am he .. !!

  • Login to reply to this topic.