- 博客(15)
- 收藏
- 关注
原创 困扰了我两天的一个exception
<br /><br />由于连得是远程的电池没办法在本地调试,一直写log去查看错误,总是找不到原因,提示dataGridView1.Rows[0].Cells[0].Value ArgumentOutofRangeException<br />但是也看不到为什么会超出范围<br />今天找了好多资料试了一下终于好了<br /> <br /> foreach (DataRow frow in TryDS.Tables[0].Rows)<br /> {<br />
2011-03-09 13:36:00
380
原创 还有谁和我一样坚持到最后
今天是最后一天上班,办公室已经空了一大半,早上来的时候路上也没有人沿途也没有卖早餐的,可能人们都已经回家了,我还在坚守在工作岗位上,不过也没什么事情了。现在还有谁和我一样还在上班呢?呵呵,今天闲下来刚好可以好好逛逛csdn
2011-02-01 09:26:00
343
原创 js实现页面自动刷新方法总结(转)
<br /><br />自动刷新页面的实现方法总结:<br />1)<br /><meta http-equiv="refresh"content="10;url=跳转的页面"><br />10表示间隔10秒刷新一次<br />2)<br /><script language=''javascript''><br />window.location.reload(true);<br /></script><br />如果是你要刷新某一个iframe就把window给换成frame的名字或ID号<br />3
2011-01-30 16:56:00
903
原创 关于卸载windows service后再重新安装遇到的特殊问题
<br />今天早上就用installutil/u卸载了WindowsService服务。等再用installutil进行安装的时候,却总是提示安装失败:The specified service has been marked for deletion.<br />当然是郁闷啦,不过我还有google,呵呵,就让我在msdn的英文网站上找到了如下解释:<br /><br />Once you have the post-build event in place, you'll need to keep i
2011-01-28 11:32:00
695
原创 Visual Studio 2010 架构图之三—层图(Layer Diagram)
<br />使用Visual Studio 2010可以在项目中添加架构图,项目可以是ASP.NET、Windows Forms、...,也可以创建单独的Modeling Projects。
2011-01-23 20:58:00
696
原创 Visual Studio 2010 架构图之二—序列图(Sequence Diagram)
<br /> 使用Visual Studio 2010可以在项目中添加架构图,项目可以是ASP.NET、Windows Forms、...,也可以创建单独的Modeling Projects。<br /> 使用Visual Studio 2010可以自动在项目中生成某个功能的序列图,只需要在某个功能上点鼠标右键选择Generate Sequence Diageram即可,但是自动的生成的比较复杂,个人觉得比看代码还累也只有程序员自己或者分析师可以看的懂,所以强烈建议还是自己画或者自动
2011-01-23 20:57:00
1965
原创 Visual Studio 2010 架构图之——用例图(UML Use Case Diagram)
<br />使用Visual Studio 2010可以在项目中添加架构图,项目可以是ASP.NET、Windows Forms、...,也可以创建单独的Modeling Projects。
2011-01-23 20:53:00
769
原创 graph.tk
<br /> graph.tk is an online and open-source graphing utility,you can draw all the mathematic diagram on it without download.Today i try to use it and i like it,so share with you.Any help would be very appreciated!It is very easy to use.<br />
2011-01-21 09:29:00
653
原创 The data could not be loaded
<br />I have spent one half a day to solve this issue which I get the "the data could not be loaded"error when I click the callback control of compontart.I am puzzled that the error occurs sometimes,not all the time,so i can not find the exactly reason whi
2011-01-20 15:36:00
3758
1
原创 JavaScript Date Validation
function isDate(value) {<br />try {<br />value = value.replace("-", "/").replace(".", "/"); <br /> var SplitValue = value.split("/");<br /> var OK = true;<br />if (!(SplitValue[0].length == 1 || SplitValue[0].length == 2)) {<br />
2011-01-11 11:42:00
473
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人