Questions tagged [carbide]

carbide is an opensource developer tool by Nokia. Which help the Developers to create Nokia Apps with the help of C/C++

An Eclipse plugin for Symbian. It is developed by Nokia.

"The tools family will cover C++, theme editing, and other relevant tool needs." http://www.developer.nokia.com/Community/Wiki/Category:Carbide

40 questions
0
votes
4 answers

Symbian C++ - Load and display image from .mbm file

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 ,…
adam
  • 22,404
  • 20
  • 87
  • 119
0
votes
2 answers

Symbian C++ - S60 application launches through TRK and Carbide, but not afterwards or when downloaded

My application has just started exhibiting strange behaviour. I can boot it through the Carbide Debugger (using TRK) and it works fine with no visible errors and is left installed on the device. Any further attempts to launch the application fail,…
adam
  • 22,404
  • 20
  • 87
  • 119
0
votes
1 answer

How to compile for S60 2nd Edition in Carbide 2.3

Im using carbide 2.3 to develop an application for 3rd and 5th editions of S60. Now my customer also wants to make the application compatible for 2nd edtion. I have downloaded and installed CW 2nd edition S60 SDK. But carbide 2.3 doesnt provide any…
Santosh
  • 419
  • 1
  • 5
  • 13
0
votes
2 answers

Reading from XML file using XmlHandler class from Forum Nokia - Symbian C++

I'm trying to use XmlHandler class ( link to Forum Nokia with code of XmlHandler Class ) on Symbian S60 3rd FP2 edition to read xml files. I have in my function this code: CXmlHandler *iXmlHandler; TFileName fileName; iXmlHandler =…
Marek
  • 23
  • 4
0
votes
1 answer

How to switch view in Symbian C++?

I'm just trying to switch between Test1View and Test2View on Symbian S60 3rd FP2 edition in Symbian C++ language. I have some components on both of them, but Test2 is for another operations than Test1, so I need to switch it to Test2. I read on…
Marek
  • 23
  • 4
0
votes
2 answers

XML parsing error on symbian s60

I have a problem with Carbide C++. I'm trying to use function from Nokia Forum to read xml files. So I found this article: http://wiki.forum.nokia.com/index.php/How_to_parse_XML_file_using_CParser_class And I've created a XmlHandle.h and…
Marek
  • 1
  • 1
0
votes
1 answer

Symbian-Carbide: Can't update 2.3.0 to 2.5.0

Just installed the SDK and ADK. while updating, it gives the following error: "unexpected end of zlib input stream" a dozen times.
Alon Amir
  • 4,913
  • 9
  • 47
  • 86
0
votes
1 answer

Carbide.c++ 1.2.2 not displaying SDK S60 2nd Edition CW templates

I downloaded Carbide.c++ 1.2 and also downloaded the SDK S60 2nd Edition CW. I installed the SDK and it is recognized in the Window->Preferences->Carbide C++->SDK preferences. but when I try to create a new project, the templates related to the SDK…
Attilah
  • 17,632
  • 38
  • 139
  • 202
0
votes
1 answer

How to compile SpeechMe

I am trying to compile the SpeechMe project: http://projects.developer.nokia.com/speechme/wiki so that I can use the voice recognition in another project I want to make. I have followed all the instructions and downloaded the full sources of…
Gerharddc
  • 3,921
  • 8
  • 45
  • 83
0
votes
2 answers

showing extra data in array values

I am using this part of c code in carbide c/c++ char c1[]={0x01}; char c2[]={0x02}; char* c [] = {c1,c2}; when i check values of c[0],c[1].. i am seeing two values like this in debug mode c[0] = \x01\x01 & (x) = *[0] = \x01 c[1] =…
012346
  • 199
  • 1
  • 4
  • 23
1 2
3