06 2013 档案
摘要:max(root_distance(:,:,150)*100); max(max(root_distance(:,:,150)*100)); max(root_distance(:,:,150));max(max(root_distance(:,:,150))); imshow(root_distance(:,:,150),[0 2449]);imshow(root_distance(:,:,150),[1000 2449]); max(max(max(root_distance))); min(min(min(find(root_distance~=-Inf))));root_distanc
阅读全文
摘要:服务端和客户端如果有认证的话的这样: 发现客户端远程连接报错:无法满足对安全令牌的请求,因为身份验证失败。只需去掉认证就可以了:
阅读全文
摘要:http://www.cnblogs.com/iamlilinfeng/archive/2012/10/01/2706353.html
阅读全文
摘要:http://www.devcomponents.com/dotnetbar/
阅读全文
摘要:http://www.componentfactory.com/product?id=3
阅读全文
摘要:http://www.codeproject.com/Articles/364272/Easily-Add-a-Ribbon-into-a-WinForms-Application-Cs
阅读全文
摘要:1.返回一个整数function [ a ] = testReturn( b )%UNTITLED Summary of this function goes here% Detailed explanation goes herea = b+10;endusing System;using System.Collections.Generic;using System.Linq;using System.Text;using MathWorks.MATLAB.NET.Arrays;using MathWorks.MATLAB.NET.Utility;using MatlabReturn;..
阅读全文
摘要:除数据库时提示数据库正在被使用,无法删除(Cannot drop database databasename because it is currently in use)的问题删除数据库时提示数据库正在被使用,无法删除(Cannot drop database databasename because it is currently in use)这是因为在操作数据库中出现了问题,比如连接数据库后,打开了数据库连接,用完后没有正确关闭,这时就可能会导致这种情况出现。那么现在给出解决方案: www.2cto.com use mastergoalter database database_nam
阅读全文
摘要:http://hi.baidu.com/lzghxjt/item/d42bd8f7066a3ad86325d280远程连接不上可以在防火墙新建入站规则
阅读全文
摘要:System.Threading.Thread.CurrentThread.Abort();Process.GetCurrentProcess().Kill();Application.ExitThread();System.Environment.Exit(System.Environment.ExitCode);Application.Exit();
阅读全文
摘要:实现思想:新建一个线程用来显示Form2,Form1的消息循环线程就可以结束了。private void Button1_MouseClick(object sender, MouseEventArgs e){ Thread t = new Thread(new ThreadStart(delegate { Application.Run(new Form2()); })); t.Start(); this.Dispose(true);}
阅读全文