码迷,mamicode.com
首页 >  
搜索关键字:sys system sysdba sysoper    ( 67898个结果
ServicesController 的使用
using System;using System.ServiceProcess;using System.Diagnostics;using System.Threading;namespace ServiceControllerSample{ class Program { ...
分类:其他好文   时间:2014-05-28 04:09:58    阅读次数:189
简单的水印输入框
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
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
SQL Server判断对象是否存在 (if exists (select * from sysobjects )(转)
1 判断数据库是否存在Sql代码 if exists (select * from sys.databases where name = ’数据库名’) drop database [数据库名] if exists (select * from sys.databases where name =....
分类:数据库   时间:2014-05-26 18:25:37    阅读次数:312
那些琐碎的知识-----登录验证码
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
迷上了代码!