Спасибо за разъяснение и полезную ссылку! Про EMsvEntriesChanged я подумал, что надо второй, так как это событие после EMsvEntriesCreated вызывается у меня 2 раза для MMS, и я решил брать последнее,...
Type: Posts; User: Alekzandr; Keyword(s):
Спасибо за разъяснение и полезную ссылку! Про EMsvEntriesChanged я подумал, что надо второй, так как это событие после EMsvEntriesCreated вызывается у меня 2 раза для MMS, и я решил брать последнее,...
Добрый вечер!
Подскажите пожалуйста есть ли возможность слушать и посылать MMS используя сокеты аналогично SMS_Utilities_API?
Если слушать MMS используя сокеты нельзя, то если я правильно...
I managed to solve my problem. Now I can add Reply option when creating local SMS.
Thanks for advices! :)
Hello!
The problem with Reply option when creating local sms was discussed many times on this forum, but I didn't find any solution.
Tell me please if this problem has been solved already.
Thanks...
wizard_hu_, thanks for help! I'll try to check the source code.
I want to know if there is a possibility to do this in more rational way.
(And there is issue with Reply option in Inbox folder when "creating local SMS")
Could I write something instead:...
Hello!
Is there any way to put sms arrived via socket to Inbox folder like in this example, but without creating local sms like in this example. Thanks in advance!
Thanks for help! I'll try to find some decision..
symbianyucca, do you mean I nead to use regular expressions?
and is there any standart function to split a string into an array of words?
symbianyucca, the point is to find the whole word in string. I mean that in string "Hello world" word "Hello" would be found, but word "Hel" wouldn't.
ltomuta, thanks, I'll check it out.
Hello!
Help me please to solve a problem.
Is there any kind of function to find word in string? For Example, if I'll use
str.Find(_L("Sasha"));
str.Find(_L("Masha"));
...
Спасибо, вы очень помогли разобраться!
Но ведь когда приходит смс с номера +79991112233, то в инбоксе будет имя контакта и если бы в нем был записан номер +79991112233 и если бы был 89991112233.
Я рассчитывал, что найдутся оба...
Доброго времени суток!
Повторюсь новой веткой в форуме со своей проблемой поиска имени по номеру.
Начало было здесь.
#include <e32base.h>
#include <e32cons.h>
#include <cpbkcontactitem.h>...
truf, спасибо за полезные ссылки в исходники.
Да, это будет нелегкая задача.
Проблема, как в первом моем сообщении, есть. С номерами менее 7 цифр я пока не тестировал. Но думаю проведу...
И есть ещё проблема:
Due to the way numbers are stored in the database, it is recommended that at least 7 match digits are specified even when matching a number containing fewer digits. Failure to...
Сформировать сформировал, проблема с MatchPhoneNumberL. Например, такая:
Как это можно исправить?
Проблема эта возникла из-за того, что пользователь, например, может записать номер как...
Подскажите пожалуйста наиболее рациональный вариант.
Когда на телефон приходит смс, то телефон находит для этого номера - имя в контактах.
Если я правильно понял, то функция MatchPhoneNumberL...
symbianyucca, thanks a lot for help! i've solved my problem.
truf, спасибо! Вы очень помогли понять что к чему)
If when event for EMsvEntriesChanged occurs there will be only one sms id in the array (for sms that changed status to Read), then it will be possible to handle event for EMsvEntriesChanged that...
Если ограничиться тем, что пользователь будет делать смс прочитанными по одной, то получается можно ограничится только проверкой статуса при возникновении EMsvEntriesChanged, чтобы статус стал...
Когда открывается первый раз определенное сообщение, то ведь только у него меняется статус непрочитанного на прочитанное. Получается, что в массиве должна быть только одна запись? Вы написали, что...
I need some help please,
how could I get access to the message for what EMsvEntriesChanged event occurs? I need to access not last received sms as in most examples.
The purpose is to catch the...
Во всех примерах, что я видел в EMsvEntriesChanged в HandleSessionEventL делается проверка:
iNewMessageId == entries->At(0)
то есть как я понял в EMsvEntriesChanged анализируют только последнюю...