首页 > 2014年07月10日 > 全部分享
Assetbundle的杂七杂八
使用Assetbundle时可能遇到的坑一 24十一郎未分类No Comments转自 http://www.unitymanual.com/blog-3571-132.html1.Editor版本不能读取与自己版本不同的assetbundle这个问题描述起来很简单:比如:老板原来让你用4.1打包(...
分类:其他   时间:2014-07-10 10:25:38    收藏:0  评论:0  赞:0  阅读:385
HTML5内置邮箱验证属性
只需给提交的表单(邮箱)添加只需要type=“email”即可。例: 邮箱: 确定demo:邮箱:确定
分类:Web开发   时间:2014-07-10 10:25:00    收藏:0  评论:0  赞:0  阅读:328
RadioButton、CheckBox与ToggleButton
1.RadioButtonRadioButton被称作为单选框,通常都是以组的形式出现,可以在一组控件中选择一个。RadioButton的使用首先需要加入,在这个组中,我们进行单选按钮的声明。 1 7 8 15 16 23 RadioButton这里我...
分类:其他   时间:2014-07-10 10:24:27    收藏:0  评论:0  赞:0  阅读:336
PHP的一些 有用但不常用的函数记录
1. microtime() 当前 Unix 时间戳以及微秒数。 connect("127.0.0.1", 11211);$time_start = microtime_float();//保存数据for($i = 0; $i set("key$i",$i,0,3);}$time_end = mi....
分类:Web开发   时间:2014-07-10 10:26:56    收藏:0  评论:0  赞:0  阅读:404
C#代码实现 Excel表格与Object互相转换,Excel表格导入数据库(.NET2.0 .NET4.0)
前些天在工作上遇到这个需求,在GitHub找到一个开源代码可以用,Fork了一个版本,整理一下发出来。①.Net项目中使用Nuget安装一个 NPOI 包 https://github.com/tonyqus/npoi②再Nuget安装 Chsword.Excel2Object 包 https://...
分类:数据库技术   时间:2014-07-10 10:26:16    收藏:0  评论:0  赞:0  阅读:1178
hibernate:is not mapped
报错提示为:org.hibernate.hql.ast.QuerySyntaxException: customers is not mapped [from customers as c]服务层代码 为:public void findCustomerAndOrders(){ Ses...
分类:移动平台   时间:2014-07-10 10:27:38    收藏:0  评论:0  赞:0  阅读:804
ubuntu笔记 - 修改软件源
Ubuntu软件源的修改比较简单,一种方法是直接修改软件软列表:只需要把所需的软件源添加到或直接替换原来的系统源列表就可以,列表文件就是/etc/apt/sources.list。在终端执行以下命令:#进入所在目录:cd /etc/apt/#备份源列表:sudo cp sources.lis...
分类:其他   时间:2014-07-10 10:29:29    收藏:0  评论:0  赞:0  阅读:335
?亲测安装php
亲测安装php1、tar zvxf php-5.3.8.tar.gz 2、cd php-5.3.83、./configure \ --prefix=/usr/local/php \--with-mysql=/usr/local/mysql \ --with-apxs=/usr/local/apach...
分类:Web开发   时间:2014-07-10 10:28:56    收藏:0  评论:0  赞:0  阅读:348
ibatis框架的sqlmapclient接口
SqlMapClient,是iBatis中的重要接口,这个接口涉及到对SQL映射的执行和批处理。现在,就先了解它的对query开头方法的定义。首先是 queryForList 方法://指定SQL的ID,执行的结果返回ListqueryForList(java.lang.String id) ;//...
分类:数据库技术   时间:2014-07-10 10:28:19    收藏:0  评论:0  赞:0  阅读:489
C++基本之 运算符重载
=====>友元运算符#include using namespace std;class Test{ public: Test(int a = 0) { Test::a = a; } friend Test ope...
分类:编程语言   时间:2014-07-10 10:30:09    收藏:0  评论:0  赞:0  阅读:414
MongoDB更新操作
MongoDB的更新操作涉及到4个参数:db.collection.update(criteria,objNew,upsert,multi)criteria:查询条件objNew:update对象和一些更新操作符upsert:如果不存在update的记录,是否插入objNew这个新的文档,true为...
分类:数据库技术   时间:2014-07-10 10:30:54    收藏:0  评论:0  赞:0  阅读:387
ARCGIS SDK For DotNet 路径
ARCGIS SDK For DotNet 路径 驱动器 C 中的卷是 WIN7 卷的序列号是 06AC-BD3E C:\Program Files (x86)\ArcGIS\DeveloperKit10.0\DotNet 的目录2014/01/11 17:40 .2...
分类:Web开发   时间:2014-07-10 10:31:30    收藏:0  评论:0  赞:0  阅读:554
IntersectRect、wcsrchr、CComPtr、GetFileAttributes
IntersectRect 两矩形相交形成的新矩形The IntersectRect function calculates the intersection of two source rectangles and places the coordinates of the intersecti....
分类:其他   时间:2014-07-10 10:32:11    收藏:0  评论:0  赞:0  阅读:436
mysql笔记5_多表连接
mysql
分类:数据库技术   时间:2014-07-10 10:32:56    收藏:0  评论:0  赞:0  阅读:356
GridView分页使用
GridView控件自带分页,绑定数据源控件后allowPaging即可自动实现分页。此篇为代码实现分页方法。PageLoad事件中指定允许分页和每页个数GridView2.AllowPaging = true;GridView2.PageSize = 5;当需要使用自己的翻页界面布局GridVie...
分类:其他   时间:2014-07-10 10:33:32    收藏:0  评论:0  赞:0  阅读:437
自定义闹钟 Reminder
Reminder reminder = ScheduledActionService.Find("MY REMINDER") as Reminder;if ( reminder != null ) { ScheduledActionService.Remove("MY REMINDER");}...
分类:其他   时间:2014-07-10 10:36:04    收藏:0  评论:0  赞:0  阅读:388
获取dom对象(3)
获取dom对象
分类:其他   时间:2014-07-10 10:35:27    收藏:0  评论:0  赞:0  阅读:387
在Ubuntu下安装mongodb
一. 在Ubuntu下最傻瓜的步骤(以下都在root用户下进行操作):1.运行"apt-get install mongo"如果遇到找不到安装包的话运行"apt-get update"2.这时装好以后应该会自动运行mongod程序,通过"pgrep mongo -l"查看进程是否已经启动3.在终端输...
分类:数据库技术   时间:2014-07-10 10:36:43    收藏:0  评论:0  赞:0  阅读:389
获取dom对象(4)
获取dom对象
分类:其他   时间:2014-07-10 10:37:57    收藏:0  评论:0  赞:0  阅读:373
bug list
机型:Samsung Galaxy S GT-I9000版本:2.2.1bug:Couldn't create directory for SharedPreferences file xxx.xmlAttempt to read preferences file xxx.xml without p...
分类:其他   时间:2014-07-10 10:37:16    收藏:0  评论:0  赞:0  阅读:380
1198条   上一页 1 ... 42 43 44 45 46 ... 60 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!