Blog信息 |
blog名称:注册会计师(注会)练习软件 日志总数:398 评论数量:116 留言数量:27 访问次数:3271278 建立时间:2005年6月6日 |

| |
[borland eco 技术]eco中整表删除代码 软件技术
吕向阳 发表于 2006/11/24 16:31:45 |
此为正确的代码
var list1:ielementcollection;
begin
...
list1 := ehfx.element.GetAsCollection; for I := List1.Count - 1 downto 0 do begin afx := fxbb(list1.item[i].asobject); if assigned(afx) then afx.AsIObject.Delete; end;
fecospace.UpdateDatabase; DataBind;
不能用iobjectlist进行操作,原来代码如下不能正常操作
var list1:iobje |
|
[borland eco 技术]eco中派生字段备忘 软件技术
吕向阳 发表于 2006/11/23 16:16:10 |
function Person.fullNameDeriveAndSubscribe(reevaluateSubscriber : ISubscriber; resubscribeSubscriber : ISubscriber) : System.Object; Var fullName : String; begin fullName := firstName + lastName;
// Subscribe to the firstName and lastName attributes. AsIObject.Properties[‘firstName’].SubscribeToValue(reevaluateSubscriber); &n |
|
delphi.net验证控件出错解决一例 软件技术
吕向阳 发表于 2006/11/22 11:02:12 |
delphi.net开发web时遇难验证控件使用问题如下:
Unable to find script library '/aspnet_client/system_web/1_1_4322/WebUIValidation.js'. Try placing this file manually, or reinstall by running 'aspnet_regiis -c'.
解决方法:在运行下执行
%WINDIR%\Microsoft.Net\Framework\v1.1.4322\aspnet_regiis.exe -c
|
|
eclipse-tomcat-mysql数据库连接问题 软件技术
吕向阳 发表于 2006/11/11 8:36:01 |
两个问题:
1 我用的是eclipse-tomcat-mysql,故在我的struts-config.xml中准备连接 sql数据库,如下
<data-sources > <data-source id="DS" key="myPool" type="org.apache.commons.dbcp.BasicDataSource" > <set-property property="driverClassName" value="com.mysql.jdbc.Driver" /> <set-property property="url" value="jdbc:mysql://localhost:3306 |
|
|