导航

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 33 下一页

2009年12月10日

摘要: 而后采取下面两种办法:使用VS2005 工具--->导入导出设置--->重置所有设置;此种方法网上介绍甚多,但与我的环境却没有其作用;关闭VS,然后在命令行运行microsoft visual studio 8\common7\ide\devenv.exe /setup /resetuserdata /resetsettings 打开VS2005,智能感知恢复正常。 阅读全文

posted @ 2009-12-10 23:53 kingwangzhen 阅读(398) 评论(0) 推荐(0) 编辑

摘要: 使用lookupedit1的值: 变量=this.lookupedit.editvalue.tostring()  //是ookupedit.properties.valuemember的值 变量=this.lookupedit.text.trim()      //是ookupedit.properties.displaymember 的值  特别值得注意的是,有时候我们要使用lookupedi... 阅读全文

posted @ 2009-12-10 23:34 kingwangzhen 阅读(887) 评论(0) 推荐(0) 编辑

2009年12月4日

摘要: combboxEdit.propoties.textEditStyle=DisableTextEditor 阅读全文

posted @ 2009-12-04 18:16 kingwangzhen 阅读(754) 评论(1) 推荐(0) 编辑

2009年12月1日

摘要: 1、新建 WebService1.asmx ;2、在WebService1.cs中加入代码:[WebMethod]public int WebAdd(int x, int y)...{ return x + y;}[WebMethod]public int WebMultiply(int x, int y) ...{ return x * y;}3、生成解决方案;4、把程序放在localhost下... 阅读全文

posted @ 2009-12-01 10:47 kingwangzhen 阅读(2076) 评论(0) 推荐(0) 编辑

摘要: Web Service是可操作的分布式应用程序。它以SOAP作为基本通信协议,使用HTTP和XML进行可以穿越防火墙的自由通信。错误提示:* 出现 访问 IIS 元数据库失败* iis 无法显示XML解决:开始->程序->Microsoft Visual Studio 2005->Visual StudioTools中打开命令行,输入命令: aspnet_regiis -i 这样... 阅读全文

posted @ 2009-12-01 10:28 kingwangzhen 阅读(556) 评论(0) 推荐(0) 编辑

2009年11月29日

摘要: ExecuteNonQuery()方法主要用户更新数据,通常它使用Update,Insert,Delete语句来操作数据库,其方法返回值意义:对于 Update,Insert,Delete 语句 执行成功是返回值为该命令所影响的行数,如果影响的行数为0时返回的值为0,如果数据操作回滚得话返回值为-1,对于这种更新操作 用我们平时所用的是否大于0的判断操作应该没有问题而且比较好,但是对于其他的操作如... 阅读全文

posted @ 2009-11-29 19:23 kingwangzhen 阅读(981) 评论(0) 推荐(0) 编辑

2009年11月28日

摘要: 在开发应用程序时往往需要获取当前系统时间。尽管Y2K似乎已经平安过去,但在我们新开发的应用程序中还是要谨慎处理“时间”问题。   在《融会贯通--Delphi4.0实战技巧》(以下简称“该书”)第89页专门介绍了两种获取当前系统时间的方法,但这两种方法都存在不足或错误,以下就此进行讨论。   该书第一种方法是利用Time()函数获得当前系统时间,返回... 阅读全文

posted @ 2009-11-28 13:32 kingwangzhen 阅读(726) 评论(0) 推荐(0) 编辑

摘要: Format是一个很常用,却又似乎很烦的方法,本人试图对这个方法的帮助进行一些翻译,让它有一个完整的概貌,以供大家查询之用:首先看它的声明:function Format(const Format: string; const Args: array of const): string; overload;事实上Format方法有两个种形式,另外一种是三个参数的,主要区别在于它是线程安全的,但并不... 阅读全文

posted @ 2009-11-28 13:15 kingwangzhen 阅读(259) 评论(0) 推荐(0) 编辑

摘要: http://www.delphifans.com/InfoView/Article_631.html 阅读全文

posted @ 2009-11-28 11:09 kingwangzhen 阅读(224) 评论(0) 推荐(0) 编辑

摘要: ◇[DELPHI]转换函数的定义及说明 datetimetofiledate (datetime:Tdatetime):longint; 将Tdatetime格式的日期时间值转换成DOS格式的日期时间值 datetimetostr (datetime:Tdatetime):string; 将Tdatatime格式变量转换成字符串,如果datetime参数不包含日期值,返回字符串日期显示... 阅读全文

posted @ 2009-11-28 11:05 kingwangzhen 阅读(324) 评论(0) 推荐(0) 编辑

上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 33 下一页