`
文章列表
        今天mac os下安装virtualbox windows7 无法加载优盘,解决方法如下         1、到virtualbox网站,安装VirtualBox  Oracle VM VirtualBox Extension Pack         2、虚拟机内安装扩展         3、在虚拟机内装好的windows7中,安装驱动精灵,安装USB3.0驱动。
今天,在安装python扩展包的时候提示找不到  “vcvarsall” 通过查询 http://stackoverflow.com/questions/31566807/how-to-build-boost-version-1-58-0-using-visual-studio-2015-enterprise 发现时安装visual studio时有错误。  
在windows平台加本地图片的时候似乎必须要用相对路径。  

python3 set 初始化

初始化 sets1 = set()   添加元素 sets1.add(1)

sql 分组 最大值

    博客分类:
  • sql
转自 http://zhidao.baidu.com/question/112956772 create table #t(作者 nvarchar(10) ,图书ID int,图书名称 nvarchar(10), 出版日期 nvarchar(10)) insert #t select 'a',1,'xxxxx','2008-1' union all select 'a',2,'xxxxx','2009-1' union all select 'b',5,'xxxxx','2007-1' union all select 'b',8,'xxxxx','2008-2' union ...
  我的visio默认的背景色是“无”,文字和连接线混到一起去了,看起了有点别扭。 照下面的方法调了一下,就好了。  
xmlns:local="clr-namespace:WPFMVVM" 不要assembly之类的东西.
转自 http://www.dbanotes.net/database/sql_server.html     打开注册表编辑器,在HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager中找到PendingFileRenameOperations项目,并删除它。这样就可以清除安装暂挂项目。
转自  http://blog.163.com/hubo803@126/blog/static/34761852201091484354589/   windows 7中Word 2010默认模板位置             带宏命令的Word模板是我们常用的,windows7中Word2010的默认模板位置有所变化。具体如下:   C:\用户\Username(本机用户名)\AppData\Roaming\Microsoft\Templates   或者   C:\Users\Username(本机用户名)\AppData\Roaming\Microsoft\Te ...
摘自 visio2010的帮助 使用“大小和位置”窗口调整形状大小   选择要移动的所有形状。 在“视图”选项卡上的“显示”组中,单击“任务窗格”,选择“大小和位置”。 在“大小和位置”窗口中,向“宽度”、“高度”或“长度”方框键入新值。
选择工具中的文本框工具即可    

c# 异步编程 action

    博客分类:
  • c#
public MainWindow()         {             InitializeComponent();               Action action = new Action(                 delegate()                 {                     while (true)                     {                         Thread.Sleep(2000);                         Console.Write ...

WPF定时器

    博客分类:
  • WPF
转自 http://www.cppblog.com/yanjie2500/archive/2011/03/28/142872.html   WPF中的定时器 命名空间:using System.Windows.Threading;初始化:DispatcherTimer dt = new DispatcherTimer();dt.Interval = TimeSpan.FromSeconds(1);dt.Tick += new EventHandler(dt_Tick);dt.Start();定时器处理:void dt_Tick(object sender, EventArgs e) ...
Ctrl+Q

判断输入类型

//判断输入是否是数字 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("test");
Global site tag (gtag.js) - Google Analytics