Hi not_dying
Thanks very much for logic of converting bitmap..
Just got confused with function name. I wish to convert from EColor16M to EColor16MU.
I guess i will need to modify some part of...
Type: Posts; User: vniles; Keyword(s):
Hi not_dying
Thanks very much for logic of converting bitmap..
Just got confused with function name. I wish to convert from EColor16M to EColor16MU.
I guess i will need to modify some part of...
Hi
I have one very specific requirement where i need to convert one image into other image format.
Source image is in EColor16M displaymode, while destination image needs to be in EColor16MU...
Hi
I am trying to write an app which needs to have 2 browser controls on a single container. For begining i modified browser control sample app.
I create two browser controls in ConstructL()....
hello
We wish to launch our application on key combination *#03. Application can be in background state. If its not in background it should be launched.
We are not understanding how to trap...
Hello
let me thank first.
NOTE: Its not for 3rd edition. Otherwise there were no problems
This is been first time we r doing such thing so it is quite adventurous for us.
TLS in theory...
Hello
We r porting application from some other platform to symbian. The program/software makes use of Global static data extensively. We r porting it to
symbian dll. We r stuck up with the issue...
Hello
We have a game SuDoKu running on series 60 3rd edition. Help for the game is launched using following code
CArrayFix<TCoeHelpContext>* aContextList = new...
Hello
Is there a way to hide application from app manager?. I know how to do it from phones desktop. There r some applications which do not show in the app manager
Thanks & Regards
Niilesh
Hello
We have a image processing application running on the Series 80 device i.e. Nokia 9500. We are in feasibility study of porting it to the series 60 3rd edition devices. We r stuck up with the...
Hello
Can anybody know how to set sms send notification off ...
I want to know if there is any api
Thanks & Regards
Niilesh
Hello
I want to change my application's language to marathi. I have heard about loc or rls files to dothis. But never done with it. Over all, some posts suggest that symbian doesn't support indian...
Hello
Its not compulsory for 3rd edition to create svg files for grahica/bitmap. Its just a convinient way of making your application's user interface scalable for change in mode...
hello
You can override CCoeControl::OfferKeyEventL(). (Or use if it is already implemented).
use following switch
if(EEventKeyDown == aKeyEvent.iCode)
{
switch(aKeyEvent.iScanCode)
{
Hello Tina,
Thanks for reply !!!
Actually i got a workaround. I found one example from forum nokia. It displays properties from phone, such as, Vibration ringing volume etc.
Accessing...
Hello
I am developing an application in which i need to switch phone on Silent profile for some duration and again switch it back to the normal profile or o user selected profile. Everything needs...
Hello
Browse directory
\EPOC32\RELEASE\WINS\UDEB\Z\SYSTEM\APPS\.
You will find a folder named after your application. This folder typically contains resource files (rsc), app file, aif and...
Hello
You can run following code on Hide menu of yours. This will take your app to background.
void SendToBackground()
{
//Send To background
RWsSession fSession;...
Hello
We have used lots of GUI in our application with CEikGlobalTextEditor
(I hope you are refering to same). With my experience of working on Symbian platform, its always better to construct...
Hi
You can do it in following way
e.g.
const TText8* cString = (TText8*)"Hi Hello";
TBuf8<40> buf3(cString);
NOTE: See Jo Stichbory's 'Synbian OS Explained book' Page No: 63 to 65
Hello
I am currently developing a application on Series 80. I want to launch help for my program. I have done this before for Series 60.
I wanted to know is there any help launcher available...
Hello
TInt64 gfxGetMemoryInfo()
{
RFs FsSession;
TInt64 nFreeSpace;
if(KErrNone == FsSession.Connect())
{
TVolumeInfo aDriveVolInfo;
if(KErrNone == FsSession.Volume(aDriveVolInfo,...
Hello
You can do following in your initializing classes
// Hide the status pane
CEikStatusPane* pStatusPane = iEikonEnv->AppUiFactory()->StatusPane();
pStatusPane->MakeVisible(EFalse);
...
Hello
Usually this error comes when,
1. You have more than 1 sdks installed and do not have correct device set as default device
Or
2. You do not have EPOCROOT set properly
for 1.
Hello
Thanks Matin I will check it out
Thanks & Regards
Niilesh
Hello
I want to access call log of phone
How do I do it? I dont know anything about this..
Any sample code will be helpful
Please help