• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






iwteih

淡泊以修身,宁静以养性
 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 3 4 5 6 7 8 9 下一页

2010年1月18日

good website
摘要: http://www.gotapi.com/ 语言:英语 简介:html css xpath xsl javascript等api的查询网站。 http://www.w3schools.com/ 语言:英语 简介:w3c制定的标准诸如xml html xsl等等的在线学习教程。 http://www.xml.org.cn/ 语言:中文 简介:可以说是xml的中国官方网吧。w3c标准的翻译组织与xm... 阅读全文
posted @ 2010-01-18 11:00 iwteih 阅读(214) 评论(0) 推荐(0)
 
SQL Server 分布式查询
摘要: 连sql server默认实例用:exec sp_addlinkedserver @ServerName, N'SQL Server'连指定实例用:EXEC sp_addlinkedserver @server='SQL2005', @srvproduct='', @provider='SQLNCLI', @datasrc='DBhere' @server 机器名 @provider (Use S... 阅读全文
posted @ 2010-01-18 10:59 iwteih 阅读(239) 评论(0) 推荐(0)
 
判断Excel单元格中格式
摘要: 今天要对一个excel中带删除线的进行筛选,查到这么个方法:ctrl + F3打开创建宏的界面,输入个名字,比如CheckDeleteLine,内容中为=GET.CELL(23,$A1) $A1替换成要检查的单元格,在一个空白的列中输入=CheckDeleteLine,如果为TRUE就是有删除线,为FALSE即没有删除线。 GET.CELL中的23意思见下: 1=一般 2=左对齐 3=置中 4=右... 阅读全文
posted @ 2010-01-18 10:57 iwteih 阅读(2375) 评论(0) 推荐(0)
 
SQL Server 2008中的merge
摘要: 在 SQL Server 2008 中,通过使用 MERGE 语句,可以在单个语句中执行多个数据操作语言 (DML) 操作。例如,您可能需要根据在另一个表中找到的差异在一个表中插入、更新或删除行,从而对两个表进行同步。通常,可以通过执行包含各个 INSERT、UPDATE 和 DELETE 语句的存储过程或批处理来实现这一目的。然而,这意味着需要多次计算和处理源表和目标表中的数据;至少对每个语句计... 阅读全文
posted @ 2010-01-18 10:56 iwteih 阅读(214) 评论(0) 推荐(0)
 
SQL Server 2008 端口配置
摘要: 若SQL Server 2008 服务器启用了windows 防火墙,其他机器就不能通过SQL Server Management Studio连接. 需要在windows 防火墙中增加1433的TCP端口, 如下图: 图。。。 阅读全文
posted @ 2010-01-18 10:56 iwteih 阅读(384) 评论(0) 推荐(0)
 
C#控制鼠标动作
摘要: 可以通过两个函数操作鼠标: [DllImport("user32.dll")] static extern bool SetCursorPos(int X, int Y); [DllImport("user32.dll")] static extern void mouse_event(MouseEventFlag flags, int dx, int dy, uint data, UIntPtr... 阅读全文
posted @ 2010-01-18 10:55 iwteih 阅读(3306) 评论(0) 推荐(0)
 
static, absolute, relative, fixed
摘要: static 是默认的 flow absolute 是相对于该elment 第一个具有非static属性的parent的位移 图。。。 position: absolute; top: 20px;left: 0px;. relative 是该element相对于原本应该的位置的位移,原来应该是什么概念呢,就是指默认的static的情况下,注意虽然位置移动了,但是本来先给这个element保留的位... 阅读全文
posted @ 2010-01-18 10:53 iwteih 阅读(153) 评论(0) 推荐(0)
 
Code Analysis for Managed Code Warnings
摘要: http://msdn.microsoft.com/en-us/library/ee1hzekz.aspx 阅读全文
posted @ 2010-01-18 10:53 iwteih 阅读(169) 评论(0) 推荐(0)
 
Unit Test里的Data Test
摘要: 用VS自带的Unit Test测试一个方法时,若需要大量的输入参数,可以按照以下方法把参数放在一个文件(数据库也可)里,可以省去重复代码。 假设要测试的方法为:static int Sum(int x, int y) { return x + y; } 右键这个方法,自动创建出unit test工程,这个大家都知道的,就不说了创建的测试代码如下: /// <summary> ///A... 阅读全文
posted @ 2010-01-18 10:52 iwteih 阅读(447) 评论(0) 推荐(0)
 
Using Internet Explorer from .NET
摘要: Using Internet Explorer from .NET 5.0 Introduction Earlier in this book we have looked at how to read HTML from websites, and how to navigate through websites using GET and POST requests. These techni... 阅读全文
posted @ 2010-01-18 10:48 iwteih 阅读(425) 评论(0) 推荐(0)
 
上一页 1 ··· 3 4 5 6 7 8 9 下一页