|
Answer Snippets (Read the full thread at stackoverflow):
After Oracle acquired them, it appears that this product is defunct .
Compiling C# into Symbian apps.
|
|
I want my S60 Application to utilize the Stomp protocol.
Although it would be fairly simple to implement myself (but nothing is ever as simple as I hope with Symbian) - I am wondering if anyone has any experience in this already.
It seems a Stomp library...
Started by adam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
As Adam says - the implementation needed to be purely within the Symbian framework or it would be unusable.
I've just finished my implementation of a STOMP client for Symbian, fully using the Active Scheduler.
|
|
Does anyone know if there's a working port of the Symbian OS C++ Descriptors functionality to other operating systems? I recall there being some code towards that here , although last time I tested it, it did not compile with G++ due to some missing/undefined...
Started by Tyson on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
However, since some of the descriptor functions 'leave' you'd have... .
I haven't seen such ports, but you may want to wait for the upcoming Symbian Foundation platform them) to another platform from the Symbian source once it's open sourced.
|
Ask your Facebook Friends
|
How to send SMS after 4 days from a Symbian app by running the application in the bachground. Means application sends SMS after 4 days? Is that possible?
Please reply soon.
Started by sonia on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
So if you are new I'd recommend doing some of the tutorials, reading the books .
If what you want to achieve is to send an SMS every 4 days, then you can use the Symbian Task Scheduler challenge on Symbian.
|
|
Hi,
I have pretty much finished my first working Symbian application, but in my hastened learning have paid little attention to memory management and pushing to and cleaning up the stack?
Could somebody please point me in the direction of some of the ...
Started by adam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Shameless://www.quickrecipesonsymbianos.com
I have in the past used HookLogger from Symbian to trace and investigate memory leaks Symbian....
Exmplain all you need to know about the CleanupStack and Memory management for Symbian C++.
|
|
Hi
In my Symbian S60 application, my Options menu works as expected. But the Exit button does nothing.
I am developing with Carbide and have used the UI Designer to add items to the options menu.
Does anyone know how to enable the exit button, or why ...
Started by adam on
, 6 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Are you handling (in your appui::HandleCommandL ) command ids EEikCmdExit and EAknSoftkeyExit?
if ( aCommand == EAknSoftkeyExit || aCommand == EEikCmdExit ) { Exit(); }
Have you looked inside the HandleCommandL( TInt aCommand ) method of the AppUi class... .
|
|
Hi
What is the preferred/easiest way to manipulate TDesC strings, for example to obtain a substring.
I will give you an example of my scenario.
RBuf16 buf; ... CEikLabel label; ... label->SetTextL(buf); // (SetTextL takes a const TDesC&)
I want to ...
Started by adam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Use the libraries that Symbian has specifically made available, instead of standard C/C++ libraries that Symbian may or may not directly on the ....
Of Symbian C++ from a standard C or C++ point of view all the time.
|
|
Hi
I wish to store a single variable in my application that will be saved between runs. This will be a version number that will be used to trigger an update option and so will change only rarely.
Does anyone have suggestions on the best way of implementing...
Started by adam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Good thinking to tell the installer to copy the file to a place like c:\System\Apps\${AppName}\${filename.
Not familiar with the Symbian environment, but something similar most likely exists.
|
|
I have a .mbm file that I copy to my device using this line in the .pkg file
"$(EPOCROOT)epoc32\data\z\resource\apps\MyApp.mbm" -"!:\resource\apps\MyApp.mbm"
Then in the draw function of my container I do this..
_LIT(KMBMFile , "\\resource\\apps\\MyApp...
Started by adam on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
See Symbian Coding Standards for more details.
_LIT(KMBMFile , "C:\\RESOURCE\\APPS\\MyApp.mbm" ); CFbsBitmap* iBitmap with 'i', which iBitmap above is not.
Use code such as this..
|
|
I am using Carbide (just upgraded to 2.0) to develop an S60 3rd Edition application.
I would like to know the easiest way to change the icon (both the application icon on the device menu and the icon at the top left of the main view) because I have the...
Started by adam on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
To reboot your device after installation - the application icon is in the Symbian cache.
|