以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]增加了BeforeConnectOuterDataSource代码之后又的全局代码失效了。 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=151463) |
-- 作者:81538475 -- 发布时间:2020/6/23 18:40:00 -- [求助]增加了BeforeConnectOuterDataSource代码之后又的全局代码失效了。 Public Failed As Image = GetImage(ProjectPath & "\\images\\failed.ico") failed 获取不到图片。
|
-- 作者:有点蓝 -- 发布时间:2020/6/23 20:01:00 -- 不能在全局代码里直接给变量赋值,赋值代码要放到afteropenproject事件 全局: Public Failed As Image afteropenproject Failed = GetImage(ProjectPath & "\\images\\failed.ico")
|