首页 > 数据库技术 > 详细

Displaying Window In Center In Oracle Forms 6i

时间:2016-12-25 23:49:59      阅读:248      评论:0      收藏:0      [点我收藏+]
Center window automatically  in Oracle Forms 6i, use the following procedure by passing window name as parameter:

Example

PROCEDURE auto_centre (pwn in varchar2) IS
vw number := get_window_property(forms_mdi_window, width);
vh number := get_window_property(forms_mdi_window, height);
BEGIN
set_window_property(pwn, x_pos, (vw - get_window_property(pwn, width)) / 2);
set_window_property(pwn, y_pos, (vh - get_window_property(pwn, height)) / 2);
END;


技术分享


Ask Your Questions B

Displaying Window In Center In Oracle Forms 6i

原文:http://www.cnblogs.com/quanweiru/p/6220616.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!