Any thread which issue an asynchronous event will not be blocked (because its the beauty of asynch event).
And when the task will be completed by other thread it will notify the current thread and...
Type: Posts; User: pawan_G; Keyword(s):
Any thread which issue an asynchronous event will not be blocked (because its the beauty of asynch event).
And when the task will be completed by other thread it will notify the current thread and...
because the req which u have raised is processed in other thread/ process (ASP) (in normal case), like timers etc.
but it can block the thread too if you are waiting for the req to complete (using...
This will help u,,,
http://wiki.forum.nokia.com/index.php/Capturing_keys_in_background
I doono how this works,,, but AFAI can think u need some capabilities....
Try the magic of CWindowGc::DrawRect(), before using this set the pen and brush, after drawing it draw ur text.
So here we go,, as per my understanding,, this is a static library so use
STATICLIBRARY siprtpexsipengine.lib in ur mmp file
and not
LIBRARY siprtpexsipengine.lib
Hope this will help
bitmap1-> original bitmap
bitmap2-> new bitmap after inversion (create it with the same size and mode as bitmap1)
TBitmapUtil utils1(bitmap1);
TBitmapUtil utils2(bitmap2);...
ok,,, one question first.
are u using siprtpexsipengine.lib in your MMP file
i think u are confusing with the convensions of symbian,
HBufC-> here C stans for the constness
NewLC() -> here C stands for the cleanup stack push items
Check if u have any folders in that root ...........
i believe that u are using NotiFyChange() of CTelephony.
have you tried the argumnet "EOwnedCall1RemotePartyInfoChange"
some easy steps:
1. get the TUInt8 from HBufC8
2. define the size and display mode of the bitmap to create
3. initialize abd create the bitmap.
4. lock the heap for the bitmap (if it can be...
i believe that siprtpexsipengine is a static library??
if it is then dso file will not exist for it and if u want to include it in your prj then use STATICLIBRARY keyword.
For inversion:
use TBitmapUtils (which u are using).
and to store the bitmap:
Just create the new bitmap of same size and while inverting save the pixel info in new bitmap
Code will...
how u are detecting that that the other phone is disconnected?
try WIKI,,,
http://wiki.forum.nokia.com/index.php/How_to_Answer_call_using_CTelephony_3rd_Edition
But why you want to restart the application??? i mean what kindddaa req u have actually?
it is crashing
iContentData = iContentData->ReAlloc(iContentData->Length()
+ aBodyData.Length());
here as iContentData is NULL
Cancel()
IMPORT_C void Cancel();
Description
Cancels any outstanding request for a timer event.
Any outstanding timer event completes with KErrCancel.
check out the iStatus value in RunL()
please do reply if any body knows about it..
never tried but u can try the following steps if you know the name of the process:
1. Open the handle of the process in your process (RProcess::Open())
2. issue Logon() on this handle.
3. get...
Hi All,
can anyone please exlain me the relation between
wsini.ini
CWsScreenDevice::DisplayMode()
and RWindow transparency.
AFAIK that if the TDisplayMode = EColor16MA (EColor16MA Display...
yes in TLanguage enumeration it is not present. but
can u plz look into this in SDK help
Symbian OS v9.5 » Symbian OS Tools and Utilities » Software Installation Toolkit - reference » Package...
CImageDecoder,
and this peice of code:
_LIT(Filename,"c:\\map.png");
_LIT8(Mime,"image/png");
RFs Fs;
User::LeaveIfError( Fs.Connect() );
CImageDecoder* ImageDecoder;
i think we dont have any diect API's for setting the image to application background.
So if you have simple UI with container i.e. class derived from CCoeControl theh you can draw the image in the...