Questions tagged [symbian]

Symbian is a discontinued embedded operating system and software platform for smartphones.

Symbian has APIs for , , , , and .

897 questions
0
votes
3 answers

primary key declaration error while creating table

CreateL() { _LIT(KSQLCountry, "CREATE TABLE Country(CountryID INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,CountryName VARCHAR(45) NOT NULL,CountryCode VARCHAR(10) NOT NULL)"); User::LeaveIfError(iDatabase.Execute(KSQLCountry)); } while creating…
rahulm
  • 23
  • 3
0
votes
3 answers

const char* to TDesC16

I have a const char* that specifies the file that I want to delete. I want to use RF::Delete to delete a file which takes a TDesC16 as input argument. Does anyone know how to easily convert RFs fs; TUint err; const char *pFileToDelete =…
Heinz
0
votes
1 answer

integration of PhoneGap with BlackBerry and Symbain

I need some help on integrating phonegap for BlackBerry and Symbian OS. I have tried with phonegap plugin for BB and Symbian but it does not work. Can somebody send me links on how it is to be done?
user1791122
0
votes
1 answer

Symbian Windows Phone bluetooth communication

If wanted to communicate bluetooth messages between Symbian and Windows Phone using Qt and C# respectively,how would I go about it? What apis or classes would be able to communicate between the two platforms?
Gerharddc
  • 3,921
  • 8
  • 45
  • 83
0
votes
1 answer

Main Panic 42 when allocating dynamic array

Until now I thought that a Main Panic 42 occurs only when I try to access data that is outside of boundaries of an array for instance. Thanks to some nice feedback of you guys I was able to solve me other problem. However, what happens now is that I…
Philipp
0
votes
3 answers

Symbian panics when deleting dynamic array

I am trying to allocate a char array of size 1000. This array is passed to a function where it should be filled with the data that has been received from the TCP Socket. The problem occurs then when I try to delete[] buffer: Here I get as a result a…
Philipp
0
votes
1 answer

Symbian: How correctly cancel long async socket operation

I have one simple question that is care me. It's about Sockets API in Symbian. How should I close the current long async operation? For example, if I doing the operation like CSecureSocket::StartClientHandshake for GPRS it's quite long operation. If…
0
votes
1 answer

Automatic update new version of symbian application

I have a Qt Symbian application. I didn't publish it via Nokia OVI store. I'm distributing the app in my own website. What I need to know is, If I released a new version of my app, the user should be able to automatically download the new version. I…
Joshua
  • 27
  • 2
  • 7
0
votes
1 answer

Symbian/Phonegaps-1.10 | TypeError: Result of expression 'localStorage' [null] is not an object

I get TypeError: Result of expression 'localStorage' [null] is not an object when I try access to localStorage on Symbian/Phonegap app Looks like this related to error that ocurr before: TypeError: Result of expression…
CAMOBAP
  • 5,523
  • 8
  • 58
  • 93
0
votes
1 answer

Symbian App life cycle: Apps never killed?

Coming from Android/WP7 and having been involved in Symbian projects by the past, i would like now to exactly understand the Symbian App life cycle. I want to understand how the Apps are killed.. if they are.. I found this: "The Symbian platform is…
pedro242
  • 33
  • 5
0
votes
1 answer

"Failed to create the process" after adding a DLL to the project

[FYI: I've got the answer, and I'm in process of writing the solution. This post is only for reference for others with similar problem] I'm working on some small application on Symbian-Belle platform. Everything was doing well until I've hit a…
quetzalcoatl
  • 32,194
  • 8
  • 68
  • 107
0
votes
2 answers

strcpy in Symbian?

I am looking for a strcpy equivalent in Symbian. I do not wanna use the strcpy function from stdlib. Here is what I wanna do: char name[128]; TBuf8 aName = _L("Test"); strncpy( name, aName.Ptr(), 127 ); *( name + MAX_FILENAME_LEN ) = 0; So…
Robert
0
votes
2 answers

Problems with Symbian descriptor assignment

Once again I am struggeling with Symbians Descriptors... char fileName[128] = "somethingsomething"; Next I have then en TEntry object which has a member iName. To this iName I would like to assign my fileName. I tried to do it as follows: TEntry…
Claus
0
votes
1 answer

How to circumvent Symbian naming conventions?

I'm about to write a C++ library that is to be used by a Windows application as well as on Symbian. Linux is not a current requirement but should generally be possible, too. For this reason I would like to use the STL/Boost naming conventions…
foraidt
  • 5,519
  • 5
  • 52
  • 80
0
votes
2 answers

Nokia 6600 battery status detecter

I need to write a mobile application (midlet) that will run on Nokia 6600 (SDK 60 2nd Edition CW). the application's goal is to detect power interruptions(whenever there is no more electrical power going into the battery) and log them. this mobile…
Attilah
  • 17,632
  • 38
  • 139
  • 202