码迷,mamicode.com
首页 >  
搜索关键字:buddy system    ( 49281个结果
简单的水印输入框
using System;using System.Collections.Generic;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using Sys...
分类:其他好文   时间:2014-05-27 17:59:24    阅读次数:272
串口调适
using System;using System.Windows.Forms;using System.IO.Ports;using System.Drawing;using System.IO;using System.Text;using System.Collections;using Sy...
分类:其他好文   时间:2014-05-27 15:38:36    阅读次数:422
Google大数据三篇著名论文中文版
Google File System中文版Google Bigtable中文版Google MapReduce中文版
分类:其他好文   时间:2014-05-26 19:48:38    阅读次数:184
WPF内嵌Flsh并交互
将flash嵌入WPF页面://添加加载flash的控件 // 创建 host 对象 System.Windows.Forms.Integration.WindowsFormsHost host = new System.Windows.Forms.Integration.WindowsFormsH...
分类:其他好文   时间:2014-05-26 19:10:54    阅读次数:271
JAVA构造方法,继承关系和SUPER关键字
SUPER可调用父类的构造方法,但要注意默认调用和参数调用。同时,在继承类时,可以用SUPER调用其它非构造方法哟。class Test extends Object{ public Test(){ System.out.println("Test1 First thing");...
分类:编程语言   时间:2014-05-26 18:50:48    阅读次数:325
动态调用webservice,不需要添加Web References
using System; using System.Collections.Generic; using System.Web; using System.Net; using System.IO; using System.Web.Services.Description; using Syst...
分类:Web程序   时间:2014-05-26 18:30:45    阅读次数:306
那些琐碎的知识-----登录验证码
1、新建文件CheckCode.aspx 前台不用写,后台代码为: using System;using System.Data;using System.Configuration;using System.Collections;using System.Web;using System.We....
分类:其他好文   时间:2014-05-26 18:04:47    阅读次数:207
.NET中的三种Timer的区别和用法(转)
最近正好做一个WEB中定期执行的程序,而.NET中有3个不同的定时器。所以正好研究研究。这3个定时器分别是: //1.实现按用户定义的时间间隔引发事件的计时器。此计时器最宜用于 Windows 窗体应用程序中,并且必须在窗口中使用。 System.Windows.Forms.Timer // 2.提...
分类:Web程序   时间:2014-05-26 17:52:28    阅读次数:285
【Android】Android中Service类onStartCommand的返回值有关问题(转)
@Override public int onStartCommand(Intent intent, int flags, int startId) { System.out.println("---------->>onStartCommand2"); re...
分类:移动开发   时间:2014-05-26 17:33:56    阅读次数:228
判断远程文件是否存在
publicboolUriExists(stringurl){try{newSystem.Net.WebClient().OpenRead(url);returntrue;}catch(System.Net.WebException){returnfalse;}}
分类:其他好文   时间:2014-05-26 17:08:33    阅读次数:180
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!