大约有 2,000 项符合查询结果(耗时:0.0061秒) [XML]

https://bbs.tsingfun.com/thread-820-1-1.html 

nsis指定默认安装路径,记住上次安装路径 - 脚本技术 - 清泛IT论坛,有思想...

!define PRODUCT_DEFAULT_PATH "C:\Test" .... InstallDir "${PRODUCT_DEFAULT_PATH}" InstallDirRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\App Paths\Test.exe" "Path" InstallDir 指定$INSTDIR值为"C:\Test";InstallDirRegKey &nbsp...
https://bbs.tsingfun.com/thread-794-1-1.html 

虚拟机安装CentOS出错:EDD:Error 8000 reading sector 2106934 - 环境配置...

EDD:Error 8000 reading sector 2106934 No DEFAULT or UI configuration directive found! boot: Getting closer! When i start to install every thing seem to be fine. 1.Select language k 2.select location k 3.configure keyboard k 4.network config k then it gets stuck on a purple screen with n...
https://bbs.tsingfun.com/thread-619-1-1.html 

js定时器setInterval()与setTimeout()区别 - 建站技术 - 清泛IT论坛,有思想、有深度

setInterval (表达式, 延时时间):每隔一个延时时间就执行一次表达式。 setTimeout(表达式, 延时时间):只执行一次表达式就停止了。 一般在其表达式中使用setTimeout()可以实现setInterval一样的效果: showTime(); function showTime() {   ...
https://bbs.tsingfun.com/thread-309-1-1.html 

Win7以上操作系统清理系统图标缓存脚本 - 脚本技术 - 清泛IT论坛,有思想、有深度

本帖最后由 沧海一粟 于 2015-07-21 13:43 编辑 rem 关闭Windows外壳程序explorer taskkill /f /im explorer.exe rem 清理系统图标缓存数据库 attrib -h -s -r "%userprofile%\AppData\Local\IconCache.db" del /f "%userprofile%\AppData\Local\IconCache.db" attrib...
https://bbs.tsingfun.com/thread-550-1-1.html 

JS卷动效果的调用函数:startmarquee - 建站技术 - 清泛IT论坛,有思想、有深度

本帖最后由 沧海一粟 于 2015-10-12 16:28 编辑 jquery.sgallery.js function startmarquee(lh,speed,delay,index) { /* 函数startmarquee的参数: lh:文字一次向上滚动的距离或高度; speed:滚动速度; delay:滚动停顿的时间间隔; index:可以使...
https://bbs.tsingfun.com/thread-26-1-1.html 

required file `./ltmain.sh' not found - 脚本技术 - 清泛IT论坛,有思想、有深度

本帖最后由 zqp2013 于 2015-1-27 15:23 编辑 在linux下编译c/c++程序出错: $ automake --add-missing .... configure.in:18: required file `build/ltmain.sh' not found .... 解决方案(libtoolize配置即可): $libtoolize --version -libtoolize (GNU libtool) 1.4.2 ........
https://bbs.tsingfun.com/thread-29-1-1.html 

Windows重置网络命令 - 环境配置 - 清泛IT论坛,有思想、有深度

启动cmd.exe命令提示窗口,输入以下命令: 命令:netsh winsock reset 回车,重启电脑,即可重置网络连接配置。   在一般的网络连接问题中,这个方法是最简单也是最能彻底解决问题的……
https://bbs.tsingfun.com/thread-276-1-1.html 

VVVV - 建站技术 - 清泛IT论坛,有思想、有深度

{:vw:}{:vw:}{:vw:}{:vw:}
https://bbs.tsingfun.com/thread-868-1-1.html 

未能从“const std::string”为“const std::_Tree<_Traits> &”...

http://blog.csdn.net/mfcing/article/details/44157227
https://bbs.tsingfun.com/thread-864-1-1.html 

error C2143:语法错误 : 缺少“;”(在“*”的前面) error C4430:缺少类型...

1>d:\xxx\childfrm.h(73): error C2143: 语法错误 : 缺少“;”(在“*”的前面) 1>d:\xxx\childfrm.h(73): error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int 一般这个错误是没有include头文件导致, 仔细检查下 .h 中是不是定义...