Check my reply a couple of posts up, it should help you.
Thomas
Type: Posts; User: ojve; Keyword(s):
Check my reply a couple of posts up, it should help you.
Thomas
Update:
I solved my problem. The bug was that i cancelled the action in its destructor even though it had already been cancelled, not thinking about that the actions are not AO's and so the cancel...
I could, but that would complicate things a lot in other places and right now I don't have the time for that. Right now I know that it is the Cancel() of the phone call activity that doesn't return....
This is what happens when I try to exit when a phonecall activity is running:
- I call the destructor of the scheduler
- The schedulers destructor calls Cancel()
- DoCancel() of the scheduler...
Except that it's not so simple really (at least not to me):s
DoCancel() is never explicitly called in my code. My question was if I should call User::RequestComplete() with KErrCancel from within...
Ok, didn't think it would make any real difference. Anyhow changed the DoCancel() to:
void CPhoneCallClient::DoCancel()
{
switch(iState)
{
case EPhoneCallClientConnecting:...
Well, it's a little complex...
I have a scheduler(an active object) that schedules activities(active objects), who in turn consist of a series of actions(not active objects) who use helper classes...
Hi!
I'm having a really hard time tracking down an error in my code and I don't really know where to look any more.
I have an active object issuing requests to other objects that are in turn...
Perfect!
Thx!
//T
Hi!
I'm observing some weird behavior, and it would be great if someone could explain it to me. It seems that my subclass destructors are not called. When I put breakpoints in the destructors of...
Ok, thank you!
Is this documented anywhere?
//T
Hi!
We am facing the expiration of my current Symbian Developer Certificate. Right now we have a couple of units of our software out for testing. Will these stop working when the certificate...
That worked a charm! Thank you!
//T
Hi!
I'm trying to use mifconv to create my application icon, but I'm having problems. When I cd to the epoc32\tools folder and run:
mifconv.exe icon.mif icon.svg
I get the following...
Hi!
I'm trying to play an error notification sound? Isn't this enough to do it?
TBaSystemSoundType soundType(KErrSystemSoundMessageUID);
CoeSoundPlayer::PlaySoundNow(soundType);
//T
OK,
Thank You
//T
Hi!
How come this is so?
I was recently in contact with ARM and they told me the following:
I have downloaded and installed v4.0 but when I try to compile I get a lot of:
...
Hi!
I am trying to use TUriParser8 to validate a URI that the user enters into a form, but I always get an error, no matter what the input is.
_LIT8(KUri,"192.168.0.1:8090");...
Hi!
I'm doing a form in my application, with a number of different field for the user to fill out. Most of the fields in the form are text fields, in which case the current input method is...
Hi!
I a little bit confused about which is the best practice when deleting AO's. Should I cancel the AO in the destructor or should I make sure to do that before deleting it?
//T
They are two different AO's and so I have to have two different TRequestStatus' and call SetActive() once for each of them
Standard answers like that don't really help people, unless they are...
Hi, I'm trying to understadn how to create an object that provides asynchronous services to an Active Object. The object will in turn use other Asynchronous Service Provider, and so will also have to...
I'm sorry if I sound stupid, but how do I install an idle-function? All my UI updates are caused by events.
I tried registering as a view activation observer and run the query the first time a...
Perfect! That's actually just what I was doing, thank you!
Where would be the appropriate place to launch a startup query?
//T
Well, In my program I have several dialog for querying the user for input. For example when the app is started, the first thing the user sees is confirmation query that he/she must answer with yes or...