Here are two links that might help you to get started --
http://www.developer.nokia.com/Community/Wiki/Creating_custom_user_control_in_Expression_Blend_for_Windows_Phone...
Type: Posts; User: mrudulpen; Keyword(s):
Here are two links that might help you to get started --
http://www.developer.nokia.com/Community/Wiki/Creating_custom_user_control_in_Expression_Blend_for_Windows_Phone...
I am not sure WriteableBitmap is supported for windows 8. Atleast documentation does not claim it to be supported.
Regards
Hi,
You can go to first part of tutorial on this blog
The tuts are now outdated a bit for example carbide is upgraded to 2.4 and u dont need to do a separate update and Qt version is new etc......
Hi,
Thats not a private directory.
Its accessible to all apps on device.
Private directory would be \private\<SID>\
May be u shld save ur file to that directory.
Apologies, didnot notice its a java thread,
I dont have much experience with javame, but you can check out this thread.
It seems to force screen to Landscape at the end of thread.
Hi,
You can do custom drawing in HandleResourceChange
check this link
You can handle your drawing in handleresourcechange.
Look at this link
What sdk are you using?
If its 3.2 and above there should be support I guess for string from the open c/c++, else on 3.0 or 3.1 add openc/c++ on top of the sdk.
Also if you are using carbide. When you import or create new project select correct sdk, so next time you try to build in carbide, it will build only for that sdk.
Hi,
As you said its a listbox.
You can search for "Using listbox" in documentation. Or on wiki for this forum.
Hi,
I think you can do that using references in the rtf doc that you create for help.
Personally haven't tried out.
Hi,
The terms are pretty clear in their names-
New - Anything that is new in your inbox. Its like wrt to some time or old mails etc.
Unread - Anything that is unread. That includes the new item....
Hi,
Create Console Application and use RSendAs api to send sms, if you dont want to use any UI. If you want to use UI use CSendUi and the application should be of GUI type or having Cone Env.
...
Hi,
iCodes are dependant on the keyboard/FEP mode been used while iScanCodes are independant of them.
You can refer for more explaination over here
Hi,
If you know how to play with makefile you can create do a qmake -project and then qmake and there would be a make file which you can edit and then build on command prompt. Else I guess simpler...
Hi,
Download sources and create a C++ library using Qt Creator ( New -> C++ library )
Copy that library in your sources.
Then include the created library like it is explained over here
Hi,
According to my understanding, Carbide doesnot catch alloc errors per se... Its the UHeap macros that catch the Alloc errors.
From my experience
If you are debugging you should see the...
hi,
Probably you can build a library out of the project and then include the library in Symbian by placing it in your sources and including in your .pro file under libs section.
Hi,
Its in file videorecordhwdevice.h
Its not part of sdk 3 fp2. Probably you need 5.0 sdk or partnership
Hi,
You can check if its a memory leak, by having a UHeapMark and Mark End macros.(Chk the exact syntax in documentation or any example program that comes with doc) And if you are debugging, when...
Can you show your read / write functions. This definitely looks like a memory leak as you also have guessed.
Hi,
Refer to "Using TTime in Date & Time Handling" in documentation.
Try using
_LIT(KDateString11,"%F%/0%Y%/1%M%/2%D%/3");
time.FormatL(dateString,KDateString11);
It will show 2009/12/30...
Hi,
Yup mif is generated. Transferred to correct location, checked on device.
Refering to wiki link
Hi,
Yup already done that and doesnt help :(
Hi,
I have picked a svg icon from epoc to check if I can display icon for the application I am trying to develop.
The icon seems to be visible in emulator but not on device. Can somebody point...