posted @ 2007-11-05 17:19 醉春风 阅读(2113) 评论(1) 推荐(0) 编辑
摘要:
使SPREAD处于编辑状态. private void Form1_Load(object sender, System.EventArgs e) { fpSpread1.EditModePermanent = true; // 定义一个ENTER事件 FarPoint.Win.Spread.InputMap inputmap1; inputmap1 = fpSpread1.Ge... 阅读全文
摘要:
就是说,有多个条件,但不一定每一个条件都要去用的查询. 例如有一个表A的结构如下 ID int 编号 name varchar(10) 名字 sex bit 性别... 阅读全文
posted @ 2007-11-02 10:01 醉春风 阅读(426) 评论(0) 推荐(0) 编辑
摘要:
1:a=10,b=15,在不用第三方变题的前提下,把a,b的值互换答案: 1。 a=a+b; b=a-b; a=a-b; 据说还可以这样:a^=b^(b^=a^b); 不了解是什么原理 2:已知数组int[] max={6,5,2,9,7,4,0};用快速排序算法按降序对其进行排列,并返回数组public class TestQuickSort { private int[] array = nu... 阅读全文
posted @ 2007-08-17 23:23 醉春风 阅读(541) 评论(0) 推荐(0) 编辑
摘要:
2 .列举ASP.NET 页面之间传递值的几种方式。 答. . 1).使用QueryString, 如....?id=1; response. Redirect().... 2).使用Session变量 3).使用Server.Transfer 3. 一列数的规则如下: 1、1、2、3、5、8、13、21、34...... 求... 阅读全文
posted @ 2007-08-17 23:21 醉春风 阅读(495) 评论(0) 推荐(0) 编辑