请教:窗口居中问题
怎么样让弹出的窗口或者是MAIN型窗口自动居中显示呢。
在窗口的open事件里写上
environment env
integer ii_ScreenWidth
getenvironment(env)
ii_ScreenWidth=env.screenwidth
if ii_ScreenWidth=1024 then
x=(4680/2)-(this.width/2) //窗口横坐标
y=(3060/2)-(this.height/2) //窗口纵坐标
end if
if ii_ScreenWidth=800 then
x=(3656/2)-(this.width/2)
y=(2295/2)-(this.height/2)
end if