上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页
摘要: http://www.componentfactory.com/product?id=3 阅读全文
posted @ 2013-06-22 21:27 louiskoo 阅读(1962) 评论(0) 推荐(0) 编辑
摘要: http://www.codeproject.com/Articles/364272/Easily-Add-a-Ribbon-into-a-WinForms-Application-Cs 阅读全文
posted @ 2013-06-22 21:18 louiskoo 阅读(212) 评论(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 阅读(387) 评论(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 阅读(1994) 评论(0) 推荐(1) 编辑
摘要: http://hi.baidu.com/lzghxjt/item/d42bd8f7066a3ad86325d280远程连接不上可以在防火墙新建入站规则 阅读全文
posted @ 2013-06-18 12:03 louiskoo 阅读(389) 评论(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 阅读(1931) 评论(0) 推荐(0) 编辑
摘要: 安装好驱动设置打印机端口 阅读全文
posted @ 2013-06-12 21:23 louiskoo 阅读(151) 评论(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 阅读(474) 评论(0) 推荐(0) 编辑
摘要: FileStream fs = new FileStream(filePath , FileMode.Open , FileAccess.Read , FileShare.ReadWrite); StreamReader read = new StreamReader(fs); read.ReadToEnd(); read.Close(); fs.Close(); 阅读全文
posted @ 2013-05-22 17:05 louiskoo 阅读(177) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 将源图像灰度化,但是没有转化为8位灰度图像。 /// http://www.bobpowell.net/grayscale.htm /// </summary> /// <param name="original"> 源图像。 </param> /// <returns> 灰度RGB图像。 </returns> public static Bitmap MakeGrayScale(Bitmap original) { //create a... 阅读全文
posted @ 2013-05-21 15:33 louiskoo 阅读(3624) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页