I do need localization. My complete MMP is currently as follows:
/*
============================================================================
Name : OpteamPocket.mmp
Author :...
Type: Posts; User: ahlmans; Keyword(s):
I do need localization. My complete MMP is currently as follows:
/*
============================================================================
Name : OpteamPocket.mmp
Author :...
Yep, thanks for your help, sincerely. Do you know how to make the compiler output just one file?
Okay, now I am starting to understand what is going on. By having the following:
START RESOURCE 2001DF19.rss
TARGET 2001df19.rsc
TARGETPATH \private\2001df19\apps
END
I have, it is not there. It exists in a backup of the SDK folder that was used before I reinstalled the SDK, but its modification date is a long time ago. I am guessing I have been using this file...
Okay, I am trying to figure out how to compile the RSC file. As I understand, the RSC file is compiled out of the RSS file, is this correct?
I tried changing the RSS entry to
START...
Hi skumar_rao!
You mean search for the file on my system? I did that, but there does not seem to be any file with that name. Should Carbide not make the file when compiling the app? And if so,...
Hi!
I am having the same problem as many others, but I cannot seem to get it working with the hints listed here. After reinstalling Carbide.c++ I cannot compile my app into a SIS since makesis...
Hi!
I want to append an integer to a descriptor with leading zeros. I want the integer to always occupy five characters in the string. How would I go about formatting the number with leading...
Hi!
If I create a nice color scheme in carbide by manually changing the colors from the prefs., where does carbide store these settings? I might want to create a backup of the settings and use...
Yeah, I got it working. Seems that Carbide just does not really get that _DEBUG has been defined (the code inside the conditional statement is greyed out). However, the code works as expected.
Any pointers on how to make one that does not need interaction every time the configuration changes? (i.e. having to change it manually)
EDIT: Thanks STen, but _DEBUG does not seem to get defined.
How can I detect whether the current build is debug or release? Is there some preprocessor symbol or similar that I can use, like:
#ifdef DEBUG
iDebug = ETrue;
#else
iDebug = EFalse;
#endif...
Thanks!
That was it! I recompiled it using the 3rd Ed. MR SDK and it worked.
Hi!
We have an application that works fine on most S60 3rd Ed phones. However, on the Nokia E65 no icon is displayed either in the menu or in the app statusbar. The title of the app is shown in...
Thanks for your time. I know the state can be monitoried with HandleForegroundEventL. I just thought that there might be some way to ask the system about the current state directly instead of having...
Hi!
How do I detect whether the currently running S60 3rd Ed app is the foremost app or running in the background?
Thanks!
BTW, where does LANGUAGE_01 get defined? The row:
#elif LANGUAGE_01 // Englanti
in my rls file depends on the symbol being defined, and it somehow works. But where does the symbol actually...
Hmm, I would want to always install all the resource files since I want the app to be available in the correct language if the user changes language after installation.
Is there a way to disable...
Hi!
I have an app which is available in English, Swedish and Finnish. When installing the app on a phone that has one of these languages selected, the app correctly starts in that language....
Thanks!
I got it working with Global notes. I know this may not be the best way to do it, but here it suits me fine, since this behaviour is unlikely to change.
When my app starts it goes through the SMS inbox, which takes quite a while. When this happens I want it to come to the foreground, display a wait note with a "please wait..." text and do the...
Last bump, I promise :)
Nobody knows?
Hi!
My app waits for SMS-messages and display a custom note when new SMS-messages arrive. I then update the number of received messages on the note. For this I use a wait note since I need the...
Hi!
I need to display a message to the user that wont block the execution of the program. The message needs to stay on screen until the user presses a button and then I need a function to be...