Yii2的安装第一步:把下载的compser.phar包放在项目根目录下,把yii2的文件也放到项目的根目录下。第二步:dos命令下进入项目目录第三步:使用命令创建yii应用php composer.phar create-project --prefer-dist --stability=dev ...
流量粒子效果ParticleSystem* particle = ParticleMeteor::create();particle->setTexture(TextureCache::getInstance()->addImage("CloseNormal.png"));this->addChil...
分类:
其他好文 时间:
2014-07-18 12:26:57
阅读次数:
209
sharepoint admin svc must be running in order to create deployment timer job 若要创建计时器作业,必须运行SVC...
分类:
其他好文 时间:
2014-07-18 11:19:35
阅读次数:
197
自定义序列帧动画:Animation* animation = Animation::create();SpriteFrameCache* spriteFrameCache = SpriteFrameCache::getInstance();spriteFrameCache->addSpriteFr...
分类:
其他好文 时间:
2014-07-18 09:39:35
阅读次数:
186
1.pthread_create function creates thread that share the same memory with the process.2.pthread_join function wait for threads until they stop3.The pth...
分类:
系统相关 时间:
2014-07-18 00:19:54
阅读次数:
317
1、复制表结构及数据到新表CREATE TABLE 新表SELECT * FROM 旧表这种方法会将oldtable中所有的内容都拷贝过来,当然我们可以用delete from newtable;来删除。不过这种方法的一个最不好的地方就是新表中没有了旧表的primary key、Extra(auto...
分类:
数据库 时间:
2014-07-18 00:07:21
阅读次数:
261
SQL Server主键的写法:--列级create table dept(dept_no int primary key,dept_name nvarchar(20) not null)--表级create table dept(dept_no int not null,dept_name nva...
分类:
数据库 时间:
2014-07-17 23:36:30
阅读次数:
400
ExtJs 3 自定义combotree/** * 自定义下拉树,支持初始化值时自动定位树节点。 * 还没有考虑性能问题。继承自Ext.form.ComboBox也很浪费。 * 代码中的cu.get()是自定义的异步请求方法。 * @author Linzongxue * @create_date ...
分类:
Web程序 时间:
2014-07-17 23:09:16
阅读次数:
486
Here, you can find how to create and deploy a SharePoint Provider hosted App, and there are some simply demos about how to connect the SharePoint usin...
分类:
移动开发 时间:
2014-07-17 18:24:20
阅读次数:
279
psutil - A cross-platform process and system utilities module for Python1. 安装pip 安装即可。windows 下需要安装 vs2008,否则报错:Unable to find vcvarsall.bat如果已经安装 vs2...