Can enabling marquee on listbox serve your purpose?
Type: Posts; User: Shilpa13; Keyword(s):
Can enabling marquee on listbox serve your purpose?
Ok.
I hope you are setting the layout, primary scrolling n secondary scrolling types properly.
Check functions SetLayoutL SetPrimaryScrollingType SetSecondaryScrollingType.
In SDK or wiki...
Are you calling SetContainerWindowL on grid control while constructing it?
You need to define the resouce before using it. Shuffle the order.. Define first r_vrex_app_play_option n then use it in another resource.
I think it date time issue. Check the time setting of your device.
Your machine time should be slightly ahead of your device timing. Hope it helps.
Its possible.. its custom setting item.
Refer CAknCheckBoxSettingPage and CAknSettingItem classes.
Refer...
Hi
Please go through http://www.forum.nokia.com/document/Cpp_Developers_Library/GUID-96C272CA-2BED-4352-AE7C-E692B193EC06/html/Form_API4.html
Also see wiki n SDK for form examples.
Hope it...
What error u are getting?
Could u please explain bit more, what exactly you are trying to do..?
Are u talking about tooltip kinda thing..?
I would suggest
IMPORT_C static TInt DllSetTls(TInt aHandle, TAny *aPtr);
IMPORT_C static TAny *DllTls(TInt aHandle);
Use above function instead of DLL::SetTls(), DLL::Tls()) functions
If...
Guys.. the issue mentioned by the thread starter is something different
"when a character is entered it displays the character as it is
when a second character is entered it converts first char...
Solution for this issue is
MAknQueryValue* queryValue = CAknEnumeratedTextPopupSettingItem::QueryValue();
if(queryValue)
{
queryValue->CurrentValueIndex();// it returns u the correct...
hi!
Its EAknPanicOutOfRange.
Did u try trapping the function CreateFilterL, what is the leave code if so?
Are you sure application crashes while executing above function?
I would try making the container without skin n set background color as black.. Not sure about the scrollbar skin.
Please go through http://ashfaq.ghori.googlepages.com/tracingmemoryleakinsymbian2 .
It might help you.
The observer function is not pure virtual..
class MAppUiObserver
{
public:
virtual void WriteMessageToList(const TDesC& aMsg) = 0;
};
Could you please let us know the crash code..?
I hope, you understand, index starts from zero(0) not from one(1).You are giving invalid index to the function..so it will crash..
hi!
Its because, the edit-indicator is hiding the tabs.
Use SetAknEditorFlags with flag EAknEditorFlagNoEditIndicators with CEikGlobalTextEditor.
Seems like its a baseline issue.
Check
S60 3rd Edition SDK for Symbian OS, MR
Developer Guides >> Avkon UI Resources – Grids >>Setting Up the Cell Structure
for more details.
Hey.. did u try SetCurrentItemIndexAndDraw?
Hi!
Please have look at class TBitmapUtil in SDK. It might serve your purpose.
GetPixel returns the number in hexadecimal system.. like e.g. 0xffffff for white, 0x000000 for black.
Hope...
If you dont need edit indicator you can use
SetAknEditorFlags with flag EAknEditorFlagNoEditIndicators with CEikGlobalTextEditor.
Hi!
Following link might help u.
http://discussion.forum.nokia.com/forum/showthread.php?t=64507&highlight=dynamic+tab
hi!
Can be timer priority issue.