上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace Foreach{ class Program { static v... 阅读全文
posted @ 2012-09-19 23:44 至道中和 阅读(256) 评论(0) 推荐(0) 编辑
摘要: ; haribote-ipl; TAB=4; 03_days\harib00g ipl10.nas;读取10个柱面CYLSEQU10;读取10个柱面ORG0x7c00;以下的标记用于标准的FAT12格式软盘专用的代码JMPentryDB0x90DB"HARIBOTE"; 启动区的名称DW512;扇区... 阅读全文
posted @ 2012-09-13 21:49 至道中和 阅读(249) 评论(0) 推荐(0) 编辑
摘要: --- 使用循环控制 declare @a int set @a=0while @a<10 begin print @a set @a=@a+1end -- 获取系统时间select getdate()exec sp_addlinkedserver 'mailoudb','',''EXEC sp_a... 阅读全文
posted @ 2012-09-11 13:53 至道中和 阅读(212) 评论(0) 推荐(0) 编辑
摘要: --------------------Js 中的String---------------------- // 通过传址来复制和专递的,而他们是通过传值来比较的 var s1="hello"; var s2="hell"+"o"; if(s1==s2)document.write("... 阅读全文
posted @ 2012-07-17 18:55 至道中和 阅读(206) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Reflection;using System.Runtime.Remoting;using System.T... 阅读全文
posted @ 2012-05-09 11:18 至道中和 阅读(172) 评论(0) 推荐(0) 编辑
摘要: ---------------------------------------Web.Config文件配置信息 -------------------- ---------------------------------这是在Global... 阅读全文
posted @ 2012-04-25 21:56 至道中和 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 设置控件的位置不可使用Location.x 或者Location.Y来设置控件的位置以下是解决的方法: 第一种方法: //控制一个控件的显示位置 button1.Top = 100; button1.Left = 100; 第二种方法: //给一个控件赋值 的两种方法 button1.Locatio... 阅读全文
posted @ 2012-04-23 08:57 至道中和 阅读(2682) 评论(0) 推荐(0) 编辑
摘要: .NET 2.0 - WinForm Control - DataGridView编程36计(一)目录:① 取得或者修改当前单元格的内容② 设定单元格只读③ 不显示最下面的新行④ 判断新增行⑤ 行的用户删除操作的自定义① DataGridView取得或者修改当前单元格的内容:GO TO TOP当前单... 阅读全文
posted @ 2012-04-21 22:25 至道中和 阅读(268) 评论(0) 推荐(0) 编辑
摘要: MailMessage Mailmsg = new MailMessage(); Mailmsg.To = "wu922008@126.com"; Mailmsg.From = "wu922008@163.com"; Mailmsg.Subject = "测试"; Mailmsg.Body = "... 阅读全文
posted @ 2012-04-14 16:04 至道中和 阅读(760) 评论(0) 推荐(0) 编辑
摘要: bcp 数据库名.架构名.表明 in|out 文件名 -c -q -S"服务器名" -U"用户名" -P"密码"bcp libraray.dbo.book out c:\temp.txt-c -q -S".\SQLEXPress" -U"sa" -P"123" -- 将book表导出生成文本文件 C... 阅读全文
posted @ 2012-04-14 11:56 至道中和 阅读(136) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页