Hi All,
I am trying to play an mp3 stream from a HTTP server using CMdaAudioPlayerUtility class. I used the OpenUrl() method of this class, where I pass the url of my stream. The audio format is...
Type: Posts; User: dgaur; Keyword(s):
Hi All,
I am trying to play an mp3 stream from a HTTP server using CMdaAudioPlayerUtility class. I used the OpenUrl() method of this class, where I pass the url of my stream. The audio format is...
When I start the RConnection, I want the user to select the destination group.
But how do I know which destination user has selected.
I can use Rconnection GetConnectionInfo API to get access...
I can connect to the destination group by this method.
But how do I know which destination the connection is currently using.
I can use Rconnection GetConnectionInfo API to get access point...
Hi Fellow Members,
I am trying to use the RCmManager to get the destinations list on FP2 devices. But I need to use the same application on Fp1/MR devices as well. So I added a code where I check...
Hi All,
I am using a list box with a search box. I want to enable Pinyin mode for search box. I want to run this with Chinese language support so that my list box can contain English and Chinese...
Hi All,
I am using a list box with a search box. I want to enable Pinyin mode for search box. I want to run this with Chinese language support so that my list box can contain English and Chinese...
Hi All,
I am trying to control the power-off events. My requirement is, when power-off button is clicked send a SMS out. Once the SMS is sent out (RunL is called of SMS Sender Active Object),...
Yes. I got the latest from the same link. Have you ever tried this??
Do I need to do something extra in the Example code? I mean do I have to include any other lib apart from dsclient.lib OR do I...
I agree. But if I dont comment the definitions in "dossvrservices.h", the example code is giving linkage error for methods in CDosEventListenerBase class. Does the example code mmp is missing some...
Yes I did. I extracted all the headers and libs provided in Plugin package and kept it in appropriate place. I guess otherwise the example code would have not compiled. Though I have to make some...
Congrats Amit!!!
Happy postings!!!
Hi,
I am trying to use KAccessoryModeChanged APIs to detect the headset key events. But unfortunately I dont get any events.
I installed the SDK pluggin for 3rd Editon FP1 for this and...
Hi,
I am trying to use KAccessoryModeChanged APIs to detect the headset key events. But unfortunately I dont get any events.
I installed the SDK pluggin for 3rd Editon FP1 for this and...
Alternatively, you can zip the files and rename it to .wgz. Then run the emulator and use "File"->"Open" menu of emulator to open the .wgz file.
Hi All,
I am "New Born" in this widgets world. But what I am looking here is, whether is it possible to access device functionalities like "Making a Call" or "Sending a SMS" or accessing the...
Try this
m_iListBox->SetCurrentItemIndex(3);
Hi Aquarian,
It is always good to give details of your requirements viz. platform used, device etc.
Anyways if you are looking for solution on 3rd edition FP1, there is an Audio Routing library...
I guess for your case, you can monitor the message store for any folder (inbox/outbox/sent) state change and retreive the message details. There is some Messaging example code on forum...YOu can...
Here is the code which I am using for similar purpose...You can modify according to your requirement..
---The Header File -----
#include <e32base.h>
#include <es_sock.h>
#include...
Can you replace your smssender.cpp with this new one...
// INCLUDE FILES
#include <gsmubuf.h>
#include <gsmuset.h>
#include <stdio.h>
#include <SMSCLNT.h>
Are you including the source file smssender.cpp in your mmp??
Just before the line in cpp which is giving error, add this
bool lRetVal;
Hi,
I guess before jumping to Symbian, you need to refresh your programming skills...Anyways, regarding the errors you mentioned follow the instructions...
1. Remove false from return statement...
Hi Shilpa,
You need to implement your custom list and override its itemdrawer class.
You can find more on wiki...
http://wiki.forum.nokia.com/index.php/Custom_list
There is no native tree control. You need to implement your own.
How I did was using the list control. I implemented my own data structure to hold the tree data. And implement a visitor pattern to...