i think different setting item should be dealt separately.
As for the blue tooth setting, you always can find some code with it.
Type: Posts; User: zesky; Keyword(s):
i think different setting item should be dealt separately.
As for the blue tooth setting, you always can find some code with it.
i share the same question with you.
hi, have a look at this
http://wiki.forum.nokia.com/index.php/Image:Send_AT_Commands.zip
Thank you for reply!
After my fully test, i will send the ralated paper to you!
弱弱的问一下,S40和Symbian有关系吗
After some tests and study, i found some s40 phones have a very serious exploit. It is very easy to be attacked and cause a serious problem with your phone. I want to report it to Nokia, but i don't...
原先我采用的是CBufferedImageDecoder用来解码,虽然有时有异常,但是基本上能显示,
我尝试了一下CImageDecoder::DataNew,同样的数据,为什么我的RunL中老是得到KErrUnderflow,我试了很多次,一直是这样。
谢谢,看了你的回复,我对一些概念理解的更深了!
我采用的就是第二种方式,每次运行前检测
if (istate==EDecoding)
{
iDecoder->Cancel();
// iDecoder->Reset();
}
可是结果都是一样的,程序还是会退出.
不好意思,你说的我不是很清楚,我觉得关键问题是真机的运算能力有限。
比如我在模拟器上无论条目移动多快都不存在这个问题,在真机上如果太快有时就会产生异常。
关键是我不可能限制条目滚动速度,因此只能处理图像解码产生异常的问题。
目前需要在两个程序之间共享一部分数据,数据应该是一个描述符列表,CDesArray类型,我已经试过RChunk,可是RChunk只能共享一大片连续的数据,而我需要共享的CDesArray里面的数据确实一个个HBufC的指针,处理起来非常麻烦,而且我不知道怎么读写16位的数据。
又看了看资料,发现还有一些方法可以实现...
我遇到一个问题,在一个列表框中,每一个条目都有一幅图片,我想实现一个动态显示的功能,就是当鼠标移动到框内的条目,自动显示该条目的图像。目前已经成功实现这个功能,但是我发现有时候如果你移动过快,有时候程序会崩溃,估计是上一幅图片没有解码完毕,同时又有一个新请求的缘故。
我使用的是CBufferedImageDecoder,每次OpenL和Convert前都调用Reset();...
答案是自己实现一个,呵呵
---------
zesky
thanks Paul, you are right. i have to externalize the array before copying it, i think this is why i got such error.
Because they are in different processes, so the HbufC can't be read in another...
I want to copy a CDesCArray to a global chunk in a server so my client can access it. Here is my code:
CDesCArray* iNameArray;
TDesC8* Data=(TDesC8*) iNameArray;
RChunk chunk;
// Open the...
i am afraid you have to implemented a custom pop-up dialog by your self.
i don't think it support such function.
--------------
zesky
they are using CAknGlobalNote and so on
-------------
zesky
不太清楚你为什么会得到这样的结果,但是contactsDb->CloseContactL(card->Id());
应该在大括号里面。
----------------
zesky
CPbkContactItem 16,7
估计这个也还没公开-_-''
不过问题解决了,删除图像不象删除其他条目直接删除就行了,首先要把存储清空。
呵呵
---------
zesky
我在进行删除通讯录缩略图的时候,遇到几个CPbkContactItem的panic,网上怎么也找不到答案。
CPbkContactItem* item = iEngine->OpenContactLCX(iCurrentContact);
TPbkContactItemField * field = item->FindField(EPbkFieldIdThumbnailImage);...
thanks wizard!
i have seen CCoeControl* CCoeAppUi::TopFocusedControl() const
in 3rd, but it is not exported in 2rd and declared as private.
Is there any other way i can use this?
or is any other...
Cxt_programmer ,改头文件不行吧,我试了,跟Dll中的函数就对应不上了。。。
did you try Copy?
在CCoeAppui中有一个control stack,里面有所有的控件,我想取得这里所有的控件,但是在导出的函数中没有实现相关的功能。 我查了SDK,发现有个函数CCoeControl* CCoeAppUi::TopFocusedControl() const
但是声明是私有的,也没有办法访问。
不知道有没有什么办法可以获得CCoeAppUi 中的控件?
i really need to get the control in the CCoeAppUi,
but i havn't seen any function ported to return the control in it. The TopfocusedControl function is declared private, so i can't use it.
Is any...