I just managed to eliminate this kind of errors by editing the generated .mk file to contain following:
[Makefile_0xEC910151.mk] <- Your uid or filename there !
do_nothing :
@rem...
Type: Posts; User: veskola; Keyword(s):
I just managed to eliminate this kind of errors by editing the generated .mk file to contain following:
[Makefile_0xEC910151.mk] <- Your uid or filename there !
do_nothing :
@rem...
Did you put the DLL file to \sys\bin\ and ECom registration resource to the \resource\plugins folder. If the DLL uses some other resource, e.g. for UI, it should also be copied.
When ever i have...
Maybe you could monitor the task list and to check which application is the top most. You should react to each change of the task list.
Br V
Yes, sorry, i mistake that R-classes case, but post the topic to keep on mind of the case of common automatic variables and usage of cleanup stack.
Br V
>> ...so there any workaround...
Hello,
No, the resource files are located in the ROM memory, there is no possibility to modify these...uups, there is one: http://www.nokia.com/careers
Br V
Hello,
If you are using PopAndDestroy to get item out of the cleanup stack it means the object is removed and it is deleted. That is not sensible for the automatic object which are deleted...
Hello,
That (localization work) is something what should be done by phone manufacturer, not by application developer(s).
A certain application one is able to write within foreign language,not...
Hello Sandy.
Obviously the text is draw from right to left if you are using ready made controls, becase in Hebrew/Arabic the text should be reversed. This is done automatically for all the strings...
Not sure about the problem / solution but i take a peek of our implementation and there is this
void COurOwnListBox::SizeChanged()
{
CEikTextListBox::SizeChanged();
<...>
...
No.
Br V
TInt intNumber = (TInt) (realNumber + 0.5); // rounding up
TInt intNumber = (TInt) (realNumber); // just cut integer part
TReal roundedRealNumber = ((TReal)( (TInt)(realNumber*1000)) )/...
Hello,
It is not so difficult, my suggestion is to use following:
[custom.rss]
NAME NCPL // todo: define your four character id there
Hello,
.mbg files are header files for graphics and are generated when the project is compiled. First try to compile in the command prompt (abld build winscw udeb) and check graphics (e.g icons)...
Hello,
Did you try this inside yourapp_reg.rss:
RESOURCE APP_REGISTRATION_INFO
{
app_file="YourApp";
hidden = KAppNotHidden;
embeddability = KAppNotEmbeddable;
newfile =...
Hello,
I have used that HandleResourceChange method and it is called even if the application is on the background.
If you still have problem to get the event you could try to overwrite the...
Hello,
Typically there is no sense to change the resolution of the device, becase it is sensible to "drive" the device with maximum resolution of the lcd screen.
There happen change in some...
Hello,
_LIT (KText , "Test Text");
HBufC* Class1::GetDescriptionL()
{
HBufC * hBuf = KText().AllocL();
return hBuf;
TLex obj(strValue);
TUint32 val;
obj.Val(val, EDecimal);
TInt64 val2 = val;
Br V
Hello,
This sounds like a task given for a student :-o. What is the problem to implement calculator, UI or the calculation part ?
Here are some ideas what i have used to implement stack based...
Hello,
There is nothing special trcks to implement S80 dialog based application. hello world application can be used as a base and implement following:
(helloworld_appui.cpp)
void...
Hi,
This is convention issue of C / C++ lanquage. You cannot have this kind of declaration:
_LIT(KLitResourceFileName, "z:\resource\mycode.rsc");
becase in C / C++ there is used control...
Hi,
Quite easy way to implement the editor is to use CEikEdwin class. There is need to implement a container for this control.
Br V
Hi,
After this change: buttons=R_EIK_BUTTONS_CANCEL_OK; ->
buttons=R_AVKON_SOFTKEYS_OK_CANCEL;
there is need to build the project in the command prompt to get resource file updated.
Br V
Hello,
Look the definition of the only parameter (TContactDbObserverEvent), there you find the contact id. I think it is best to create a test application, put breakpoint to the eventhandler and...
Hi,
Yes there is, see Enum TContactDbObserverEventType from the SDK...and here is how to setup a listener:
[.h]
class CYourClass
public MContactDbObserver
{