源码地址: https://gitee.com/zhang_jianli

2007年11月5日

摘要: vb6 调用c# 服务 Dim objSoapClient As New SoapClient objSoapClient.ClientProperty("ServerHTTPRequest") = True Call objSoapClient.mssoapinit("http://localhost/webserver/service1.asmx?WSDL", "Service1", "Service1Soap") 阅读全文
posted @ 2007-11-05 14:05 天涯 阅读(574) 评论(0) 推荐(0) 编辑

2007年11月1日

摘要: 奇怪的异步调用,竟然不能用数组 string[] m = Directory.GetDirectories(@"c:\\", txtFile.Text.Trim(), SearchOption.AllDirectories); string s = "test"; Invoke(new SetStr(SetText), s); 用 Invoke(new SetStr(SetText), m); 出错了 阅读全文
posted @ 2007-11-01 16:40 天涯 阅读(399) 评论(4) 推荐(0) 编辑

2007年10月24日

摘要: 开发web程序,经常遇到数据帮定,这里介绍几种: 阅读全文
posted @ 2007-10-24 12:57 天涯 阅读(317) 评论(0) 推荐(0) 编辑
摘要: c#中,对象数组容易忘记分别初始化 UpdateApplicationInfo[] uai = new UpdateApplicationInfo[3]; //只是分配了地址,但是没有指向正确的对象,因为还没有分配对象就应用,很容易犯措 阅读全文
posted @ 2007-10-24 11:31 天涯 阅读(276) 评论(0) 推荐(0) 编辑
摘要: 判断输入的内容是否是一个版本号,用正则表达式 Regex reg = new Regex(@"^(\d+)\.(\d+)\.(\d+)\.(\d+)$"); 阅读全文
posted @ 2007-10-24 11:09 天涯 阅读(128) 评论(0) 推荐(0) 编辑

2007年5月21日

摘要: 好书 阅读全文
posted @ 2007-05-21 11:00 天涯 阅读(129) 评论(0) 推荐(0) 编辑

导航

源码地址: https://gitee.com/zhang_jianli