Sorry if this isn't the right board to post to (5th edition moved here). On the N97 when I add the E-mail widget for my MTM it always shows (0) for the unread email count. Under the MTM service...
Type: Posts; User: tcalamawy; Keyword(s):
Sorry if this isn't the right board to post to (5th edition moved here). On the N97 when I add the E-mail widget for my MTM it always shows (0) for the unread email count. Under the MTM service...
I am trying to use the Touch UI APIs in one of my apps, the __S60_50__ macro works fine in source files, but not for the mmp. I am trying to use it like this:
#ifdef __S60_50__
LIBRARY ...
I am also using CAknListQueryDialog box for multiselection checkbox with 5th edition, and I am unable to select the boxes. I expected this to be handled by Nokia's implementation. My...
When I use the "Search" app on my E51 it does not find any messages in my MTM. How do I enable my messages to be part of the search?
I noticed the Find() function is not called from my MTM client...
I have followed this wiki article to format the memory card. It works fine on E-series but not on N-series devices. I always get KErrInUse -14.
...
Any idea what could be wrong with what I am doing? It should work by defining a read/write policy for an RProperty. I do not want to use CustomSecurityCheckL() because that means I have to use a...
I also never found a solution to reject messages and have them normally flow to the Inbox. I had to save them myself which I definitely agree is a bad solution, but unfortunately the only one...
I have created an array of security policies as shown below to limit the writing of an RProperty to my processes only. However, I receive a -46 PlatSec error on the emulator, that the SID for the exe...
I am receiving the same error using an E51. My post is here: http://discussion.forum.nokia.com/forum/showthread.php?t=153167
Never got a response... However, I was able to debug the basic gui app....
Ok thanks, I'll try both ways and measure performance.
I have successfully connected Carbide 2.0 with TRK 3.0.9 on my E51. I tried both the attach to process and launch process debug configurations. After I select my process to debug, I receive the...
I am trying to have code in my application that will uninstall it under certain circumstances. I tried to use SwiUI::RSWInstSilentLauncher but that sort of launches the Installer as an embedded...
Hi,
I just wanted to confirm that creating CMsvEntry as a member variable and then using SetEntryL would give the best performance compared to create it for each operation and deleting? i.e. most...
Yes I do use smsMtm->AddAddresseeL(aFromAddress) followed by smsMtm->SaveMessageL()...
I searched, and other posts also have the same problem. If someone knows how to get the reply menu option to...
I'm doing the following, from what I see CSmsHeader SetFromAddressL will call SetToFromAddressL, right?
CSmsHeader* newHeader = CSmsHeader::NewL(CSmsPDU::ESmsDeliver, body);
...
Thanks, yes I can compile. I'm nearly there... Message details shows "From:" now instead of "To:", but still no reply option. Looks like I missing something else?
Well, searching around it seems I would need to create the ESmsDeliver header. Of course, another roadblock... Now the lib needed isn't part of the SDK. I really think this is ridiculous, how much is...
So how is this resolved? It would be useful to others if you post the solution to the original problem. I'm assuming the SmsPdu may have to be changed to SMS-DELIVER, (sent from SC to MS)?
I do call SetActive() after the Ioctl call. Then close the socket, but the sms isn't delivered to the Inbox... I guess I'll try saving it myself, but I hate that I have to do that.
workmad3, glad to hear my code helped. It was quite a struggle since the documentation was non existent.
I did solve it with the overload version...
When you say "releasing your socket, report the error", what does this translate to?
Releasing your socket = iSocket.CancelIoctl(); iSocket.Close()?
Report the error = ...
Actually, I tried that yesterday after posting:
if (ret == KErrNotFound)
{
iSocket.Ioctl(KIoctlReadMessageFailed, iStatus, &iPckgBuf, KSolSmsProv);
}
It caused my AO to continuously get...
I am having some trouble understanding how to reject the message if it does not match my criteria so that it shows up in the Inbox. I found that the smsAddr.SetTextMatch() function just matches the...
I am also having this problem, where the font color in a form is always black. On FP1/FP2 devices it seems to correctly use the skin text color, but not on 3.0 devices like E61.
I tried setting...
Thanks Paul, I decided to remove errrd from my sis, and only use for debug sis. Unfortunately, I lost infoprint as well. If I get TCB then ill consider enabling/disabling by code.