Description
Before bridges were common, ferries were used to transport cars across rivers. River ferries, unlike their larger cousins, run on a guide line and are powered by the river's current. Ca...
分类:
其他好文 时间:
2014-08-14 20:34:49
阅读次数:
349
1. 创建进程CreateProcess2. COMSysAllocStringIWebBrowser2::NavigateIWebBrowser2::Navigate2修改注册表,禁用浏览器活动脚本1 [HKEY_CURRENT_USER\Software\Microsoft\Windows\Cu...
分类:
其他好文 时间:
2014-08-14 15:52:58
阅读次数:
154
1、在学习两个Activity的切换时,重新把新的工程部署上模拟器时候出现错误:ActivityManager: Warning: Activity not started, its current task has been brought to the front。原因是:两个应用起了同样的名字...
分类:
其他好文 时间:
2014-08-14 01:11:37
阅读次数:
285
转载地址:http://blog.chinaunix.net/uid-28458801-id-3487199.htmlCPSR:程序状态寄存器(current program status register) (当前程序状态寄存器),在任何处理器模式下被访问。它包含了条件标志位、中断禁止位、当前处理...
分类:
其他好文 时间:
2014-08-13 18:05:56
阅读次数:
207
IN 操作符IN 操作符同意您在 WHERE 子句中查找多个值。SQL IN 语法SELECT column_name(s)FROM table_nameWHERE column_name IN (value1,value2,...);IN 操作符实例(使用Northwind样本数据库) SELEC...
分类:
数据库 时间:
2014-08-13 17:44:46
阅读次数:
309
FMicrophone := TCaptureDeviceManager.Current.DefaultAudioCaptureDevice; if Assigned(FMicrophone) then begin FMicrophone.FileName := udpclients.tempsa....
分类:
其他好文 时间:
2014-08-13 14:47:06
阅读次数:
227
在10g中,可以使用以下几种方法创建备库控制文件
RMAN> backup current controlfile for standby format 'c:\ctl_%U';
RMAN> backup full database format 'c:\backup\full_%U' include current controlfile for standby;
RMAN> co...
分类:
数据库 时间:
2014-08-13 13:04:16
阅读次数:
249
public class AuthIn : IUserAuthenticate { public static ApplicationUserManager UserManager { get { return HttpContext.Current.GetOwinContext().GetUser...
有时候开发中我们只需要年月日、或者只需要时分秒,刚开始由于对NSDate不是很熟悉,走了很多弯路,特在此记录!!回头要好好把NSDate的文档好好看看
NSDate *date = _datePickerView.date;
NSDateFormatter *formatter = [[NSDateFormatter alloc]init];
// Get Current...
分类:
其他好文 时间:
2014-08-12 17:08:54
阅读次数:
172
在生产环境中,有时候我们会遇到这样的问题,就是去掉数据库中2列值相同的数据,并且留下一条语句,解决这个问题可以利用唯一联合索引创建测试表CREATETABLE`test03`(`id`INT(11),`uid`INT(11)DEFAULTNULL);INSERTINTOtest03(id,uid)VALUES(1,1),(1,2),(1,1),(1,2),(1,1);selec..
分类:
数据库 时间:
2014-08-11 18:14:43
阅读次数:
299