hi,
I'm using CMdaAudioRecorderUtility class to play/record using a descripter. Whenever I use OpenL() function using TMdaDesClipLocation, the MoscoStateChangeEvent() callback gives me...
Type: Posts; User: abhishekmishra; Keyword(s):
hi,
I'm using CMdaAudioRecorderUtility class to play/record using a descripter. Whenever I use OpenL() function using TMdaDesClipLocation, the MoscoStateChangeEvent() callback gives me...
hi,
I'm using CMdaAudioRecorderUtility class to play/record using a descripter. Whenever I use OpenL() function using TMdaDesClipLocation, the MoscoStateChangeEvent() callback gives me...
hi,
I'm using CLogClient to add the logs generated by my application. I've proceeded with the following approach:
(A) Initialized and installed an instance of CActiveScheduler
(B) Created a...
hi there,
Is there any static class in SDK 6.0 that gives me file separator just like the TLocale class gives me the Time Separator. Currently I have to define it as char ("//") and use it in my...
hi,
Is it possible to do recording of a "streaming audio" using symbian/nokia SDK api's on 9210/7650 devices? If so what is the SDK/library?
Real network supplies the real player for 9210 but...
Hi,
Is there any tool or utility (like "Purify" for normal C++ applications) to find the memory leaks for an application written in Symbian 6.x (C++) ported on Nokia 9210?
If not then how to...
Hi,
The indices that you are using in your program are too long. For example, The TBuf<LENGTH> array if you are using, have LENGTH, of a large value. Reduce it to some reasonable length.
rgds...
hi there,
Follow the following logic:
(1) Get the Task (app/exe) you want to run.
(2) Start that application.
Example:
TUid lUid;
//Get the uid of the application to run
hi there,
have a look at the compound control example at this site.
rgds
abhi
hi,
For sending SMS, Symbian supports "CSmsSettings" class, that is illustrated in the GDSMS example. However, the NokiaCPP documentation says, they are discontinuing this class (as mentioned in...
Hi,
I'm unable to locate the .ini file wsini.ini on the device (Nokia 9210).
With the emulator the file exists in the folder:...
hi,
You "can have" additional buttons (other than CBA Buttons) on a "Dialog Box" using "EEikCtLabeledButton" and "LBBUT" classes. They looks & work fine on the emulator (just like normal desktop...
hi,
You can first convert the TLex into TBuf. From TBuf, you can typecast into any needed form, say , TDes, etc. A Sample example is as under:
---------
_LIT(KMsg," Going to make a Lex...
hi ,
First get the session entry. If successful, try to get the CBaseMTM ref from the registry. Typecast the CBaseMTM to the CSMSBaseMTM. Get the header from the CSMSBaseMTM. After this use the...
hi,
"etelbgsm.h" file is situated in "\Symbian\6.0\QuartzCPP\Epoc32\Include" directory. Copy this file and put it under "\Symbian\6.0\NokiaCPP\Epoc32\Include" directory. They are same for both...
hi,
Just see the following three settings:
(1) If the installed directory, "\Symbian\6.0\Shared\EPOC32\Tools\"
contains a bldmake.bat file
(2) The "EPOCROOT" variable is set to the appropriate...
Hi,
Is there any way to programmatically access the self mobile number given on the SIM (That is, mobile number given to the device by the service provider)?
I can access the service provider's...
hi there,
Symbian Provides an enum class "MSVIDS.H". These are the IDs for the given boxes (Inbox,Outbox, etc).
In order to access/operate on the messages given in the requested folder, you need...
hi ,
You can take the include file "etelbgsm.h" from Quartzcpp/epoc32/include directory. It is same for Nokiacpp.
For treasure program to work, you need to first move the message to the outbox...
Is there any way to use CSendAs on the emulator? Whenever, the very first function of CSendAs::NewL(*this) is hit in the code, the function returns a failure.
The same code works FINE on Actual...
Hi,
I've written an SMS application based on Treasure program. I'm able to send the message, but that message gets in the draft folder only.
Even after adding the logic to "send the message...
How to port a Symbion application as a daemon process or more clearly as a "service". E.g. as soon as the emulator launches up, the application starts running as a "service". In unix we can put the...