mac os下安装virtualbox windows7 无法加载优盘 今天mac os下安装virtualbox windows7 无法加载优盘,解决方法如下 1、到virtualbox网站,安装VirtualBox Oracle VM VirtualBox Extension Pack 2、虚拟机内安装扩展 3、在虚拟机内装好的windows7中,安装驱动精灵,安装USB3.0驱动。...
visual studio 2015 python3.5 安装包时提示错误 今天,在安装python扩展包的时候提示找不到 “vcvarsall”通过查询http://stackoverflow.com/questions/31566807/how-to-build-boost-version-1-58-0-using-visual-studio-2015-enterprise发现时安装visual studio时有错误。 ...
sql 分组 最大值 转自 http://zhidao.baidu.com/question/112956772create table #t(作者 nvarchar(10) ,图书ID int,图书名称 nvarchar(10), 出版日期 nvarchar(10))insert #tselect 'a',1,'xxxxx','2008-1' union allselect 'a',2,'xxx...
win7 中word模板的位置 转自 http://blog.163.com/hubo803@126/blog/static/34761852201091484354589/ windows 7中Word 2010默认模板位置 带宏命令的Word模板是我们常用的,windows7中Word2010的默认模板位置有所变化。具体如下: C:\用户\Username(本机用户名)...
visio2010 精确调整 图形的大小 摘自 visio2010的帮助使用“大小和位置”窗口调整形状大小 选择要移动的所有形状。在“视图”选项卡上的“显示”组中,单击“任务窗格”,选择“大小和位置”。在“大小和位置”窗口中,向“宽度”、“高度”或“长度”方框键入新值。...
visio2010 精确调整 图形的大小 摘自 visio2010的帮助使用“大小和位置”窗口调整形状大小 选择要移动的所有形状。在“视图”选项卡上的“显示”组中,单击“任务窗格”,选择“大小和位置”。在“大小和位置”窗口中,向“宽度”、“高度”或“长度”方框键入新值。...
c# 异步编程 action public MainWindow() { InitializeComponent(); Action action = new Action( delegate() { while (true) ...
c# 异步编程 action public MainWindow() { InitializeComponent(); Action action = new Action( delegate() { while (true) ...
判断输入类型 //判断输入是否是数字function cube(x) { if (typeof(x) != 'number') return 0; return x * x * x;} // Once you uncomment the type check in line 2, the// cube function should return 0.cube("tes...
vc visual studio __func__的使用 在visual studio中 似乎要使用 __FUNCTION__ 来代替 #include<stdio.h>#include <stdarg.h>#include <string.h> void test(char str[20]) { printf("%s:size=%d",__FUNCTION__, sizeof...
怎样找出链表中间的元素 http://zhidao.baidu.com/question/171061854.html 用两个指针 一个指针每次跳一次 P1 = P1->NEXT另外一个指针 每次跳两次 P2 = p2->next->next 当P2为NULL时那个就是终点,这时P1所在的位置就是中间节点 这是相对于单向链表哦...
如何判断一个链表是否有环路 转自http://www.iteye.com/topic/1114110 public static boolean hasLoop(Node root) { r1 = root.clone(); r2 = root.clone(); while(true){ ...
myeclipse 生成 ejb3 查询语句 的逆向 排序 myeclipse 默认生成的查询函数是这样的 @SuppressWarnings("unchecked")public List<AAA> findAll(final int... rowStartIdxAndCount) { //修改这句 final String queryString = "select model from Card...
win7 安装 sql server2000 转自 : http://zhidao.baidu.com/question/256505706.html 计算机——(右键)管理——系统工具——本地用户和组,启用administrator帐户,然后切换用户到administrator,运行安装程序,安装完会发现服务已经能够启动了,然后再回到以前帐户就可以了,最后把administrator帐户禁用吧,开着太危险了。...
ejb3.1 timer 摘自http://www.rainripple.com/articles/ejb3-1-timer-service.html1.Timers默认会被持久化。所以需要设置 设置persistent:timerConfig.setPersistent(false);@Schedule(persistent=false.. 2.如果已经被持久化了,可以 清空J...
c 变量定义位置 vs2010 m.c void main() { int a = 1; a = 2; int b = 1;} 错误 1 error C2143: 语法错误 : 缺少“;”(在“类型”的前面) d:\我的文档\visual studio 2010\projects\testcp\testcp\m.c 5 1 TestCP 看来c语言 变...
javascript select 获取 text 的值 <html> <body> <form><select name="cars" onchange="alert(this.options[this.selectedIndex].text)"><option value="volvo">Volvo</option&am
javascript select 获取 text 的值 <html> <body> <form><select name="cars" onchange="alert(this.options[this.selectedIndex].text)"><option value="volvo">Volvo</option&am