摘要:
定义一个处理事件的委派类private delegate void EventTestHandler(string str);// 参数str可以有,也可以没有定义事件源,由此引发对事件的处理private event EventTestHandler LeadEvent;在构造函数中添加事件触发时,发生的处理机制,把事件源和处理事件的方法挂在一起this.LeadEvent += new EventTestHandler(DoSth);. // 其中DoSth就是我们事件引发的方法.接下来我们定义DoSth方法,可以看到DoSth其实可以理解为是EventTestHandler委派类的一个实 阅读全文
posted @ 2005-10-09 15:12
家中慢步
阅读(369)
评论(0)
推荐(0)
摘要:
导出表中数据export to [path(例:D:\TABLE1.ixf)] of ixf select [字段(例: * or col1,col2,col3)] from TABLE1;export to [path(例:D:\TABLE1.del)] ofdel select [字段(例: * or col1,col2,col3)] from TABLE1;导入表的数据import from [path(例:D:\TABLE1.ixf)] of ixf insert into TABLE1;loadfrom [path(例:D:\TABLE1.ixf)] of ixf insert in 阅读全文
posted @ 2005-10-09 15:09
家中慢步
阅读(2356)
评论(0)
推荐(0)

浙公网安备 33010602011771号