Discussion Board
-
Custom Dialog for About?
2004-04-19, 05:55
#1
Regular Contributor
Hi!
I need to make an About functionality...
I need a Custom Dialog with a Text Editor Control inside it so i can display ABOUT informations of my program... ?
What functions of CEikDialog do i need to use and/or override?
tnx in advance...
-
Super Contributor
well, this is not the most specific question, but I guess that you should use these:
void SetSizeAndPosition( const TSize& aSize);
void PreLayoutDynInitL();
TBool OkToExitL(TInt aKeyCode);
and probably use container inside your dialog so you can make nice and rich formating.
But your question is really too general...
-
Registered User
Hi!
I can suggest the simplest solution for your "About":
CAknInformationNote *note = new (ELeave) CAknInformationNote;
note->ExecuteLD(_L("Best regards to you"));
good luck
Arcady
-
Super Contributor
It is pretty ugly About box...:-))
But very easy to implement....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules