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 阅读全文
posted @ 2013-06-28 20:45 louiskoo 阅读(248) 评论(0) 推荐(0) 编辑
摘要:服务端和客户端如果有认证的话的这样: 发现客户端远程连接报错:无法满足对安全令牌的请求,因为身份验证失败。只需去掉认证就可以了: 阅读全文
posted @ 2013-06-25 14:38 louiskoo 阅读(3187) 评论(0) 推荐(0) 编辑
摘要:http://www.cnblogs.com/iamlilinfeng/archive/2012/10/01/2706353.html 阅读全文
posted @ 2013-06-24 21:44 louiskoo 阅读(166) 评论(0) 推荐(0) 编辑
摘要:http://www.devexpresscn.com/ 阅读全文
posted @ 2013-06-22 22:39 louiskoo 阅读(144) 评论(0) 推荐(0) 编辑
摘要:http://www.devcomponents.com/dotnetbar/ 阅读全文
posted @ 2013-06-22 21:29 louiskoo 阅读(150) 评论(0) 推荐(0) 编辑
摘要:http://www.componentfactory.com/product?id=3 阅读全文
posted @ 2013-06-22 21:27 louiskoo 阅读(1972) 评论(0) 推荐(0) 编辑
摘要:http://www.codeproject.com/Articles/364272/Easily-Add-a-Ribbon-into-a-WinForms-Application-Cs 阅读全文
posted @ 2013-06-22 21:18 louiskoo 阅读(213) 评论(0) 推荐(0) 编辑
摘要: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;.. 阅读全文
posted @ 2013-06-22 19:29 louiskoo 阅读(397) 评论(0) 推荐(0) 编辑
摘要:除数据库时提示数据库正在被使用,无法删除(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 阅读全文
posted @ 2013-06-18 12:21 louiskoo 阅读(2038) 评论(0) 推荐(1) 编辑
摘要:http://hi.baidu.com/lzghxjt/item/d42bd8f7066a3ad86325d280远程连接不上可以在防火墙新建入站规则 阅读全文
posted @ 2013-06-18 12:03 louiskoo 阅读(391) 评论(0) 推荐(0) 编辑
摘要:System.Threading.Thread.CurrentThread.Abort();Process.GetCurrentProcess().Kill();Application.ExitThread();System.Environment.Exit(System.Environment.ExitCode);Application.Exit(); 阅读全文
posted @ 2013-06-14 14:14 louiskoo 阅读(1934) 评论(0) 推荐(0) 编辑
摘要:安装好驱动设置打印机端口 阅读全文
posted @ 2013-06-12 21:23 louiskoo 阅读(154) 评论(0) 推荐(0) 编辑
摘要:实现思想:新建一个线程用来显示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);} 阅读全文
posted @ 2013-06-12 20:46 louiskoo 阅读(482) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示