Hello,
Is there any examples or pointers how can I
query and set information in profiles? (ringtones)
Thanks.
Type: Posts; User: mmalo; Keyword(s):
Hello,
Is there any examples or pointers how can I
query and set information in profiles? (ringtones)
Thanks.
Hello,
How can I define the bitmap-file in the resource so that
it's independed for app-path? In 3650 the app could be
installed in memory-card (e:) or in phone (c:)
I'm trying to use form...
You are very likely referring to hardcoded path. In the 3650 the MMC-drive is e: Here's piece of code I use to use relative paths:
const TDesC& appFullPath(const TDesC& aFilename)
{...
Hello,
I'm buildinga simple About-dialog with 2 DLG_LINE items; EAknCtPopupHeadingPane and EEikCtRichTextEditor.
The dialog is implemented in single CRtfDialog-class derived from CAknDialog....
I found a "correct" solution. Here's a code sample how to display built-in IAP-selection dialog:
TUint32 apSelected = 0;
CApSettingsHandler* apHandler = CApSettingsHandler::NewLC(
ETrue,...
I'm replying to myself (so it'll hopefully solve someone elses problem also)
When using prefs-override with CIntConnectionInitiator the iStatus needs to be set to iStatus = KRequestPendin before...
Hello,
Have you tried:
CAknGlobalNote::CancelNoteL ( TInt aNoteId )
Hello,
How do I retrieve the information on which network the phone is currently on? (i.e. the id for example FI 2G, Sonera, etc.)
Thanks.
Hello,
You can get pointer to AppUi with:
CMyAppUi* pApp=(CMyAppUi*)iEikonEnv->AppUi();
Remember to include CMyAppUi.h in the class you're using it from if you wish to cast to your own...
Hello,
In the AppUI-class add method for handling focus change. aForeground indicates the state.
void CMyAppUi::HandleForegroundEventL(TBool aForeground)
{...
Hello,
I'm having hard time trying to initiate internet connection with CIntConnectionInitiator.
I'm using the code sample from SDK "as is" but it doesn't work:
...
Hello,
Below is a simplified example of my ApSelection code that crashes in the emulator and in the phone ( User 71 ). If I debug it in the emulator it crashes to EUSER while exiting the method....
Hello,
Is it possible to display built-in IAP-selection list and retrieve the selected IAP's ID without initiating the network connection?
Thanks.
Hello,
I'm using following to popup a listbox:
CEikFormattedCellListBox* list = new(ELeave) CAknSingleGraphicPopupMenuStyleListBox;
CleanupStack::PushL(list);
CAknPopupList* popupList =...
Hello,
1) The solution that you mentioned "...without cable" does NOT need RAS and is the easiest way to setup network for emulator.
2) There is RAS in XP. Found in network->add new connection...
Hello,
How can I query active DNS(s)-address? Can I use RSocket or do I need to dig down to CommsDB? Any source-code available?
Thanks.
Hello,
I'm trying to use RGenericAgent to initiate network connection for my socket-application. What are the correct steps to do this?
1) In my Socket-Class (CActive derived) before...
Hello,
What is the guideline/tools needed to match 8-bit palette from desktop to 7650? Is there any a tool or method to convert 24bit image to 8-bit epoc web-safe palette that would optimize...
Hello,
I know this is propably very simple question but I couldn't find it from SDK:
Where are the required libraries for linker defined for Series60-classes?
In the symbian part of SDK all...
Hello. Does this help?
http://nkn.forum.nokia.com/devrel/threadshow.cfm?mb=7038809959063292&msg=45189640892&page=1
Hello All,
I finally managed to get the network to work from emulator without the cable. Actually the solution is so simple that I cannot understand why NOKIA haven't officially solved nor...
Hello,
I'm using laptop as my alternative development platform. It only has single standard COM-port (+2 USB, Infra, etc.). The current method to setup network requires 2 free serial-ports +...
Hello,
I have an application that is using sockets. It works OK allmost all the time but some users report error during HTTP-download.
My Socket-class is CActive-derived object following pretty...
CDesCArray* listboxArray = STATIC_CAST( CDesCArray*, list->Model()->ItemTextArray() ); // list=your listbox. I'm using CAknDoubleLargeGraphicPopupMenuStyleListBox here.
TBuf<50> tListItem;
//...
Hello,
How do I enumerate defined IAPs and select one automaticly for network connection? Examplecode appreciated.
Thanks.