ic. Dont know how to though. Is there a way to include your custom messages at installation point? I don't think so. Haven't come across so far.
Type: Posts; User: jinishakya; Keyword(s):
ic. Dont know how to though. Is there a way to include your custom messages at installation point? I don't think so. Haven't come across so far.
try this.
"myfile.xyz" - "e:\myfile.xyz"
basically specify the entire path.
Yes, thats my point. There is a memory leak and one obvious one is the dangling pointer you leave behind when Exit command is handled.
I remember now. My default device was pointing to a sdk that I had already deleted. So I just changed the default device to the sdk that I was currently using.
do you have the default device set correctly?
Anyways, if I am able to figure out how mine got corrected will post it.
I had a similar problem quite some time ago. I cannot clearly remember how I resolved it but I do remember uses "devices" in the command line to set the appropriate device. You could try that and see...
There is a possibility of memory leak in this piece of code. If Exit() is pressed, what happens to informationNote ? You have created a CAknInformationNote object but you have not handled its...
Create a dialog class. There should be some example code in the SDK. Then use a RTimer to update the text on the dialog.
Every application that uses the Framework has a CEikonEnv static object. Hence you can use it freely from nearly every where. Check out the documentation for CEikonEnv.
As for the two line of...
Hi. Here is a code snippet of what I have been doing to handle the screen orientation change. Hope it helps.
void CMyAppUi::HandleResourceChangeL(TInt aType)
{...
Could you provide some more info. some code snippets would be good.
Seems like all you need is a dialog. Here is a piece of come that might help.
CEikonEnv* eikenv = CEikonEnv::Static();
TBool yes = eikenv->QueryWinL(const TDesC &aFirstLine, const TDesC...
Hi Yucca Thanks for your reply. I have been using the following codes for my listboxes and they have been working fine.
CFbsBitmap* aBitmap, aMask;
AknIconUtils::CreateIconL(aBitmap, aMask,...
You don't need to specify the size if you are using svg icons. Try with removing the call to set size.
In N73 muvee director has been abstracted as "Create muvee" option in media gallery. This option is available if at least one video or one image is selected. But be aware that if this video is a...
Codes I have used sometimes for logging.
_LIT(Kpath, "e:\\");
_LIT(Kfilename, "log.txt");
RFs fs;
User::LeaveIfError(fs.Connect());
User::LeaveIfError(fs.SetSessionPath(Kpath));
...
I had a similar problem with one of the examples that came with the SDK. The application would launch but it was not visible. The reason was that the view was not defined in the resource.
If this...
I am using the OpenFileL(CFileStore, RFile) overload.
Below is the excerpt from my document file.
void CHelloWorldBasicDocument::OpenFileL(CFileStore *&aFileStore, RFile &aFile)
{
aFileStore =...
Hi Bobbycalf
Thanks for your codes quick reply. I just tried them. didn't work.
I am also making my recognizer write the file name and the buffer to the log. The confidence level is also...
Hi,
I have come across an interesting problem with the recognizer.
I created a recognizer to recognize mime type "Application/ogg" and the recognizer codes work well. When I click on an...
Just a hunch.
Did you return EKeyWasConsumed in the OfferKeyEventL function.
Try
return (iListBox->OfferKeyEventL(aKeyEvent, aDataType));
1. Your container must inherit from MEikListBoxObserver.
2. You must call iListBox->OfferKeyEventL(aKeyEvent, aType) in the OfferKeyEventL(aKeyEvent, aType) function of your container class.
Here is my suggestion towards learning symbian.
1. download and isntall S60 2.x sdk. don't start with S60 3.0.
2. Get the book "Developing Series 60 Applications, A guide for Symbian OS c++...
Hi all,
Thanks for your help.
The recognizer for carbide.vs plugin worked.
Jini
hey navjotsingh1979,
if you are wanting to launch your exe at phone start up then there is a dedicated api in 3.0 for that. its called series_60_startup_list_management_api
There is...