Hi,
Thank you all.
Actually I don't want to talk about how to prevent being uinstalled here.
I just want to know is it possible to block the system features I specified below by...
Type: Posts; User: vacheldai; Keyword(s):
Hi,
Thank you all.
Actually I don't want to talk about how to prevent being uinstalled here.
I just want to know is it possible to block the system features I specified below by...
Hi ltomuta:
Thanks for you reply.
I know any application which is running during uninstall will be killed by install server. But, install server will wait for a moment if the running...
Thanks for your reply. You know, there are always such kind of requirement in enterprise to prevent data leakage. Company policy might prevent employees to do this or that. User can not uninstall an...
Hi,
Does anybody know how to disable following system features by programming: Bluetooth, Infrared(IR),USB, WiFi and storage card.
Any comment and idea will be appreciated. Thank you very...
The most possibility is the capabilities you are using are not included in your development cert.
BR.
Vachel
Hi all,
I need to copy some binaries on MMC and make my application auto-installed when card inserted. I've already made the PA type SIS package and placed it to the folder E:\private\10202DCE as...
Hi guys,
Sometimes, I got "AknIcon 3" panic when exiting my application, which running in S60 3rd edtion devices.
Anybody can give me the explaining of this panic will be thankful.
Best...
Hi, i'm using the following code:
const TUid uid = {EAknNaviPaneEditorIndicatorMessageLength};
MAknEditingStateIndicator *ei = CAknEnv::Static()->EditingStateIndicator();...
如果纯粹是提示一下,用日历相关的API就可以实现,如果你希望提示后还要自动做一些事情,那就只有在你的程序里面自己做计时,然后通过音频相关的API进行播放。
//Connect to proxy server 10.0.0.172:80 by using socket.ConnectL();
//When connected, send the request to the proxy server
_LIT8(KURL,"GET http://222.222.222.222:8080/portal.jsp?param=aaa\r\n...
CEikRichTextEditor本身显示的就是Rich...
NotifyIncomingCall是在待机状态下监测电话的呼入,NotifyStatusChange是监测电话从振铃到接通或者挂断的变化。需要详细的信息可以参考EMCC的AnsPhone例程。
EMCC里面的例子只有在S60 2nd里面,也就是Symbian OS 7以上的平台才能使用,如果是针对SDK...
自己编写一个从CEikRichTextEditor和MFormCustomDraw继承的控件,重载DrawBackground方法,具体使用方法可以参考SDK文档。
CAknView*的变量如果你使用了AppUi类的AddViewL( iSomeView)方法,将由View管理器负责消毁,程序不用管。
类里面是可以的。
Br.
TMsvId* entryId;
entryId = static_cast<TMsvId*>(aArg2); // entry id from the session event
if ( *entryId == KMsvGlobalInBoxIndexEntryId ) // 新条目是否被创建在收件箱里面
...
TMsvId* entryId;
entryId = static_cast<TMsvId*>(aArg2); // entry id from the session event
if ( *entryId == KMsvGlobalInBoxIndexEntryId ) // 新条目是否被创建在收件箱里面
...
现在的S60 2nd Edtion不支持全局的静态或非静态变量,如果用了全局变量,在wins udeb时候可能没有问题,但是到了armi urel链接的时候就会报错。
到3rd Edition也就是OS9的时候,据说可以支持全局静态变量。
你可以检查一下通过OTA下载下来的SIS文件,是否包含.sis的后缀,如果后缀名不是.sis,虽然可以同样安装,但是安装过后的文件不会出现在“程序管理”中。
Newlc有一篇文章讲到了如何加速模拟器,去找一下吧。
建议看一下SDK目录下Series60Ex目录下的listbox例子,里面很好的展示了如何动态切换listbox,你也可以看一下关于form的例子,应该就可以满足你的要求。
同意楼上的观点
Dim的英文本意就是隐藏,所以,SetItemDimmed的第二个参数的意思表示为是否需要隐藏,你应该是把参数搞反了。
我希望检索一个文件夹(包含子文件夹)中是否存在一个文件,该用什么方法,试了TFindFile,但是好像只能搜索一个指定的文件夹,不能搜索子目录。
用GET方法都不行啊,哪位有相关綺验,望指教,十分感谢!
TBuf8<512> buf;
buf.Append(_L8("GET / HTTP/1.1\r\n"));
buf.Append(_L8("Host:www.google.com:80\r\n"));
...