the "*" is handled by the system FEP, I ones asked this same question on nokia, and didn't get any answers on opening the special character screen, so I quess at least you can not open the special characters screen from your app. Anyway, have you tried on sending the "*" to your app. Was wondering if the FEP would catch it and open the dialog as usual.
the "*" is handled by the system FEP, I ones asked this same question on nokia, and didn't get any answers on opening the special character screen, so I quess at least you can not open the special characters screen from your app. Anyway, have you tried on sending the "*" to your app. Was wondering if the FEP would catch it and open the dialog as usual. yucca
i dont know how to can i send "*" to my app . I guess it can be done using OfferKeyEventL method. But i have no idea how to properly call it for "*"
just send it as keyevent. I remember having written a sample code somewhere in forum nokia, so maybe you could do a bit of seaching there.
yucca
Searching forum nokia for example ..... can i open that dlg using method "RunCharMapDlgLD(this);"
I'm trying to use it in different way but getting different errors :
when try this : iEikonEnv::CDlgDialogFactory()::RunCharMapDlgLD(this);
errors :
error C2039: 'CDlgDialogFactory' : is not a member of '`global namespace'' error C2146: syntax error : missing ';' before identifier 'CDlgDialogFactory' error C2065: 'CDlgDialogFactory' : undeclared identifier error C2039: 'RunCharMapDlgLD' : is not a member of '`global namespace'' error C2146: syntax error : missing ';' before identifier 'RunCharMapDlgLD'
when trying :
iEikonEnv->CDlgDialogFactory()->RunCharMapDlgLD(this); or iRichTextEditor->CDlgDialogFactory()->RunCharMapDlgLD(this);
a message box is displayed in app "Feature not supported"
Forum posts: 142
yucca
yucca
i dont know how to can i send "*" to my app . I guess it can be done using OfferKeyEventL method. But i have no idea how
to properly call it for "*"
Thanks for reply, u always helping
Forum posts: 142
yucca
yucca
Searching forum nokia for example .....
can i open that dlg using method "RunCharMapDlgLD(this);"
I'm trying to use it in different way but getting different errors :
when try this : iEikonEnv::CDlgDialogFactory()::RunCharMapDlgLD(this);
errors :
error C2039: 'CDlgDialogFactory' : is not a member of '`global namespace''
error C2146: syntax error : missing ';' before identifier 'CDlgDialogFactory'
error C2065: 'CDlgDialogFactory' : undeclared identifier
error C2039: 'RunCharMapDlgLD' : is not a member of '`global namespace''
error C2146: syntax error : missing ';' before identifier 'RunCharMapDlgLD'
when trying :
iEikonEnv->CDlgDialogFactory()->RunCharMapDlgLD(this);
or
iRichTextEditor->CDlgDialogFactory()->RunCharMapDlgLD(this);
a message box is displayed in app "Feature not supported"
HandleCommandL(EEikCmdInsertSymbol); //should open "Special Char Selection" dlg but nothing is happening
Forum posts: 10
can i use "OfferKeyEventL(const TKeyEvent& aKeyEvent,TEventCode aType)" for this purpose?
if yes how to call it for "*"
You can use SimulateKeyEventsL() inside OfferKeyEventL() function.