- 博客(9)
- 资源 (5)
- 收藏
- 关注
原创 PowerDesigner v12.5设置自增长列
这两天在中PD设计数据库,可是苦于设置自增长列的问题。刚才搜到一个PD 11的的方法,弄了半天不行。 PD v11的操作方法http://blog.csdn.net/antyi/archive/2008/02/01/2076295.aspx 自己瞎鼓捣了一会弄明白了了。 过程是这样的,DataBase--Edit Current DBMS --(在左边树选SQL2005)-
2010-04-09 15:09:00 849
原创 List转DataTable
public static DataTable ListToDataTable(IList list) { DataTable dt = new DataTable(); DataRow row; PropertyInfo[] pInfos= typeof(T).GetProperties();
2010-04-02 14:25:00 545
原创 模仿QQ截图
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespac
2010-03-31 17:25:00 604
原创 仿Google搜索框
无标题页 <!-- .myColor { background-color:#3366CC; color:White; } --> .myColor { background-color:#3366CC; color:White; }
2010-03-30 12:31:00 656
原创 combobox智能提示框
using System;using System.Collections.Generic;using System.Text;using System.Windows.Forms.ComponentModel;using System.Windows.Forms;using System.Drawing;using System.ComponentModel;usin
2010-03-15 11:09:00 1918 3
原创 数学排列组合算法 P(N,M) C(N,M)
yeah,组合的也出来了,再一起发一个 using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication32{ class Program { static
2010-02-04 12:35:00 7826 2
原创 数学排列算法---P(N,M)
昨天写了一个排列算法,不过是P(N,N)的情况,今天把它写完整了,P(N,R)using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication32{ class Program {
2010-02-04 11:08:00 1938
原创 C#实现“数学排列”的方法-----P(N,N)
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication32{ class Program { static int s = 0; s
2010-02-03 17:00:00 748
原创 WCF一个小经验分享一下(元数据包含无法解析的引用)
最近在学WCF,郁闷透了,各种异常!google baidu上也很难找到一些关于WCF异常的解决方案! 把我最新的一个异常解决方案跟大家分享一下吧。 看了ChatRoom,也仿照着谢了一个聊天室,昨天想加一个传送文件的功能,写好了服务端代码之后,在更新客户端的引用时出现了异常:“元数据包含无法解析的引用:……”,不仅仅是更新引用,哪怕添加这个地址的引用的时候也同样出现问题。 顿时蒙了,由于
2010-01-29 11:24:00 8929 3
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人