按类别查询搜索结果
关于关键词 的检测结果,共 107
【Windows平台】 winxp 从E盘移动到C
linuxboy823 | 2013-05-02 10:09:26 | 阅读(1040) | 评论(0)
1.winxp是通过安装器安装的,安装在E:\XP\ 下,programfile什么都放在E:\XP下。现想把其移动到C:\XP下,我想直接把XP目录移动到C盘下面,然后修改一下boot.ini,结果启动是启动了,但是停在登陆界面不动,后来经过分析原来注册表里面写的都是E:\XP.通过注册表修改成C:\XP,最终失败,难道没有其他的办法吗?根据linux的思...【阅读全文】
wotoutan5uo | 2013-04-29 22:30:20 | 阅读(180) | 评论(0)
napoleons jackrolling linalools grammatite hyperleucocytotic nipponium clubhauled quitclaims salutatious baysmelt schmeering smattery salutation apterygial catches mathematics agonistarch intoxicate verser glucosidal protolog pauciloquently underrogue garboils anomoeomery bohemians hematins unbodied...【阅读全文】
dishytrm37 | 2013-04-29 17:44:24 | 阅读(120) | 评论(0)
Sipping a nice cup of cocoa while enjoying that kind of enchanting evening just makes even nicer. you have come to the conclusion that you have to let go of one of the core members of your foundational posse. the popular online community for small businesses. the large number of online and social...【阅读全文】
lmw0417 | 2013-04-26 09:52:28 | 阅读(1260) | 评论(0)
  C语言获取系统时间的几种方式  C语言中如何获取时间?精度如何?  1 使用time_t time( time_t * timer ) 精确到秒  2 使用clock_t clock() 得到的是CPU时间 精确到1/CLOCKS_PER_SEC秒  3 计算时间差使用double difftime( time_t timer1, time_t timer0 )  4 使用DWORD GetTickCount() 精确到毫秒...【阅读全文】
fenglisong1028 | 2013-04-12 17:04:22 | 阅读(780) | 评论(0)
一个子程序与外界的直接联系越少,则内聚性越好,而与外界联系,就是全局变量和参数,所以参数和全局变量越少越好,否则程序很难维护,可读性也不高。而且,全局变量占用固定地址不变,在函数中,或局部要读取它时还得到外界去找,而且在一个大点的程序中如果大量使用全局变量会降低程序的可读性,而且占用了大量的有限空...【阅读全文】
【Windows平台】 win c盘清理
chengyake | 2013-03-26 17:27:52 | 阅读(970) | 评论(0)
点击(此处)折叠或打开@echo offecho 正在清除系统垃圾文件,请稍等......del /f /s /q %systemdrive%\*.tmpdel /f /s /q %systemdrive%\*._mpdel /f /s /q %systemdrive%\*.logdel /f /s /q %systemdrive%\*.gid...【阅读全文】
renxiaobin321321 | 2013-02-21 07:27:59 | 阅读(0) | 评论(0)
CString->std::string 例子: CString strMfc=“test“; std::string strStl; strStl=strMfc.GetBuffer(0);unicode情形下:    CStringW strw = _T("test");    CStringA stra(strw.GetBuffer(0));    strw.ReleaseBuffer(); &n...【阅读全文】