没readkey的情况type Tstring=record s:array[0..maxn] of char; n:longint; end;procedure scan(var S:Tstring);beginS.n:=0; while not seekeoln do with S...
分类:
其他好文 时间:
2014-11-02 18:09:43
阅读次数:
194
在CentOS5.8下配置asterisk11.0.1+FreePBX2.11安装测试成功,后续添加硬件测试IP电话通话,以及Extension.conf编程扩展!...
分类:
其他好文 时间:
2014-11-02 12:33:47
阅读次数:
504
rowformater方法可以扩展自定义列:The cell formatter function, take three parameters:value: the field value.rowData: the row record data.rowIndex: the row index.C...
分类:
其他好文 时间:
2014-11-01 17:47:25
阅读次数:
142
--1.实验环境 SQL> conn scott/tiger Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 Connected as scott@howe SQL> drop table record p...
分类:
其他好文 时间:
2014-10-31 22:09:46
阅读次数:
169
Innosetup功能很强大,可以通过它提供的Wizard接口来定制界面,但我对PASCAL语言不熟悉,也不清楚通过那种接口可改动的范围有多大,最后做出来的效果是否好,所以选择了通过一个DLL来实现我的界面。首先,脚本中增加如下设置,以禁至所有Inno setup自身显示的界面:DisableDir...
分类:
其他好文 时间:
2014-10-31 18:36:01
阅读次数:
348
切换为听筒模式声音由听筒发出
am = (AudioManager)getSystemService(Context.AUDIO_SERVICE);//听筒模式
切换为正常模式
am.setMode(AudioManager.MODE_NORMAL); //正常模式
判断是否为扬声器
am.isSpeakerphoneOn();
权限...
分类:
移动开发 时间:
2014-10-31 10:09:42
阅读次数:
1225
MATLAB Toolboxestop(Top)Audio-Astronomy-BiomedicalInformatics-Chemometrics -Chaos-Chemistry-Coding-Control-Communications-Engineering-Data Mining-Exce...
分类:
其他好文 时间:
2014-10-30 20:47:04
阅读次数:
1167
??万维网联盟(W3C)昨天宣布,HTML5标准规范终于最终制定完成了,并已公开发布。对于前端工程师来说,这无疑是一个振奋人心的好消息。??众所周知,HTML5改变了互联网,将成为下一代web标准,HTML5拥有许多新的特性,用于绘画的canvas元素,用于媒介回放的video和audio元素,.....
分类:
Web程序 时间:
2014-10-30 18:59:17
阅读次数:
294
create or replace function refresh_product_usage() returns void as $$declare rec record; sub_rec record; init_pro_id integer; parent_product_id integ....
分类:
数据库 时间:
2014-10-30 09:20:25
阅读次数:
275
原本一直使用 TList, 将定义的一个个 Record 保存在TList 里面, 为了能把某些对象管理起来, 例如一个类的 n 多实例,可以进行索引、查找、释放等今天刚看到原来已经有了一个叫 TDictionary 对象,用起来挺方便。 挺像我们在DB中定义的 Dictionary 表,Key、V...