本帖最后由 madduck 于 2011-01-15 12:11:57 编辑 .Net winform 在deploy时报错了.
No label 'label_0' within the scope of the GoTo statement.
怎么解决?
if ls_exp <> "" then
ls_format = of_evaluate(lds,ls_exp,lds.getrow())
end if
li_y = long(ls_format)
if li_y <= long(lds.describe("datawindow.header.height")) then
ls_band = "header"
goto label_0
end if
else
label_0:
li_height = long(lds.describe("datawindow." + ls_band + ".height"))
if li_height <= 10 then
else
------解决方案--------------------
有goto 语句就必须要有对应的 标签:
如:
......
...........
goto lab_0
........
...........
lab_0:.......
........
------解决方案--------------------
应该 是:
......
...........
goto lab_0
........
...........
lab_0:
.......
........
------解决方案--------------------
label_0:是存在的.
不搞成.net winform是OK的
------解决方案--------------------
原来的代码为什么要用goto呢 改了再换就是啊
------解决方案--------------------
改是可以改,但想搞清楚为什么!
------解决方案--------------------
应该死平台的问题吧