1、将安装光盘直接挂载至系统,记住盘符,如i:,后面要用2、win+x,选择命令提示符(管理员),然后输入如下命令,接的修改source后面的盘符 C:\Windows\system32>dism.exe /online /enable-feature /featurename:NetFX3 /So...
Truck HistoryTime Limit: 2000MSMemory Limit: 65536KTotal Submissions: 17271Accepted: 6621DescriptionAdvanced Cargo Movement, Ltd. uses trucks of diffe...
分类:
其他好文 时间:
2014-07-11 23:00:17
阅读次数:
212
sudo./configure--prefix=../armv7--disable-ffmpeg--disable-ffplay--disable-ffprobe--disable-ffserver--enable-cross-compile--sysroot="/Applications/Xcod...
分类:
其他好文 时间:
2014-07-11 22:12:38
阅读次数:
543
有时候有些操作是防止用户在一次响应结束中再响应下一个。但有些测试用户就要猛点,狂点。像这种恶意就要进行防止。当然有些异步操作时,可以在调用前enable 掉。等CallBACK 后再enable起来。过程中按钮是不能点的。1、可以使用:- (void) timeEnough{ UIButton *b...
分类:
移动开发 时间:
2014-07-09 18:27:30
阅读次数:
253
2.配置无线
vi /etc/config/wireless
config wifi-device wlan0
option type mac80211
option channel 5
# REMOVE THIS LINE TO ENABLE WIFI:
# 删除或注释掉option disabled...
分类:
其他好文 时间:
2014-07-09 12:37:59
阅读次数:
339
如需转载请标明出处:http://blog.csdn.net/itas109
整个工程下载地址:http://download.csdn.net/detail/itas109/7607735
这里采用tableWidget显示双排列表
双排列表代码
QTableWidgetItem* item[50];
int Row;
if (num%2 == 1)
{
Row = n...
分类:
其他好文 时间:
2014-07-09 10:01:31
阅读次数:
295
CentOS6.3中,要想使用Ceph的blockdevice,需要安装更高版本的QEMU。安装好ceph后,安装qemu-1.5.2#tar-xjvfqemu-1.5.2.tar.bz2#cdqemu-1.5.2#./configure--enable-rbd一定要加上--enable-rbd选项,这样qemu才能支持rbd协议。这一步可能会报错:ERROR:Userrequestedfeaturerado..
分类:
其他好文 时间:
2014-07-09 08:41:34
阅读次数:
477
Write an algorithm such that if an element in an MxN matrix is 0, its entire row and column is set to 0.
分类:
其他好文 时间:
2014-07-08 22:17:29
阅读次数:
193
支持标前缀
1)查询不等于且有等于
$this->db->get_where('host',array('host'=>'ddd','id !='=>0))->row();
2)2表相交
return $this->db
->select('f.*,count(s.id) as subtotal')
->f...
分类:
数据库 时间:
2014-07-08 20:05:19
阅读次数:
241
//举例查询(userid,name,sex为user表的数据库字段)publicfunctiontesta(){$this->load->database();$query=$this->db->query(‘SELECT*FROMuser‘);foreach($query->result()as$row){echo$row->userid;echo$row->name;echo$row->sex;}}//举例插入(use..
分类:
数据库 时间:
2014-07-08 08:41:54
阅读次数:
273