码迷,mamicode.com
首页 >  
搜索关键字:auto logout    ( 14789个结果
定时器(了解)
// Test.cpp : 定义控制台应用程序的入口点。//#include "../I_Timer.H"#include void onTimer1(){ std::cout createTimer();#if 1 auto myTimer1 = /*Timer::createTime...
分类:其他好文   时间:2014-05-05 23:28:48    阅读次数:341
centos6.4安装VMwareTools
centos6.4安装VMware Tools,同样适用于VMware、ESXi、Hypervisor#如果文件不存在需要创建mkdir /mnt/cdrom#挂载光驱mount -t auto /dev/cdrom /mnt/cdrom#复制文件cp /mnt/cdrom/VMwareTools-...
分类:其他好文   时间:2014-05-04 19:14:48    阅读次数:330
EasyUI DataGrid 中字段 formatter 格式化不起作用
今天用 EasyUI datagrid 来做列表,要对一些数据进行格式化,判断某字段状态时,发现 formatter 格式化对应的函数不起作用。 <table id="list_data" title="未审核报表" class="easyui-datagrid" style="width: auto;height:350px;" url="" toolbar="#too...
分类:其他好文   时间:2014-05-04 18:57:35    阅读次数:400
JAVA之File类-删除一个有内容的文件夹
package ioTest.io3; /* * 删除有内容的文件夹:从最里面一直向外删除。建议千万不要删除硬盘上面有用的文件夹哦 * 方法思路 * 循环+递归 */ import java.io.File; public class RemoveDir { public static void main(String[] args) { // TODO Auto-generat...
分类:编程语言   时间:2014-05-04 09:25:58    阅读次数:464
写个关于使用cocostudio Armature实现动画自由切换的小demo
这是一个关于使用cocostudio实现动画自由切换的小demo   auto sprite =Sprite::create("background.png"); sprite->setAnchorPoint(Point(0,0)); this->addChild(sprite); ArmatureDataManager::getInstance()->addArmatureFi...
分类:其他好文   时间:2014-05-04 09:17:46    阅读次数:344
Cocos2d-x3.0 文件处理
1、从文件中读取内容 auto sharedFileUtils = FileUtils::getInstance(); std::string ret; sharedFileUtils->purgeCachedEntries(); std::vector searchPaths = sharedFileUtils->getSearchPath...
分类:其他好文   时间:2014-05-04 00:09:23    阅读次数:408
java连接sql server 2008的问题(jdbc驱动的方法)
这是程序代码,我是按照网上和视频讲解的步骤写的代码:import java.sql.*;public class jdbc {/*** @param args*/public static void main(String[] args) {// TODO Auto-generated method...
分类:数据库   时间:2014-05-03 23:00:11    阅读次数:385
关于Mysql删除表数据的两种方式对比
1、deletefromtable_name一行一行删除,只删除表数据,auto_increament仍停留在最后一天数据的下一个值。2、truncatetable_name快捷删除表数据。先删除整个表,然后重新建表结构。auto_increament从1开始。
分类:数据库   时间:2014-05-03 20:34:16    阅读次数:386
Cocos2d3.0 制作PList文件
auto root = Dictionary::create(); auto string = String::create("string element value"); root->setObject(string, "string element key"); auto array = Array::create(); ...
分类:其他好文   时间:2014-05-03 16:27:48    阅读次数:380
cocos2d-x3.0 RenderTexture(二)
.h #include "cocos-ext.h" #include "ui/CocosGUI.h" #include "cocostudio/CocoStudio.h" USING_NS_CC; USING_NS_CC_EXT; using namespace ui; .cpp auto background = LayerColor::create(Color4B(200,200...
分类:其他好文   时间:2014-05-02 21:27:20    阅读次数:367
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!