以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 询问 有关Load的事情 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=28200) |
-- 作者:superman430 -- 发布时间:2013/1/22 13:18:00 -- 询问 有关Load的事情 在LoadUsersetting里面设置表Load条件 在需要多次Load的情况下 是否还需要在BeforeLoad事件中设置Load?
还有 LoadUserSetting If User.Type = UserTypeEnum.Developer Then DataTables("业务表").Load
是否与以下代码同效 LoadUserSetting DataTables("业务表").Load (业务表)_BeforeLoad If User.Type = UserTypeEnum.Developer Then |
-- 作者:lin_hailun -- 发布时间:2013/1/22 13:22:00 -- 等同。建议用下面的代码,各个表的加载条件,应该在各个表的表事件里设置,这样最好。 |