zoukankan      html  css  js  c++  java
  • Displaying Window In Center In Oracle Forms 6i

    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

  • 相关阅读:
    微信小程序
    微信小程序
    微信小程序
    微信小程序
    es5
    es5
    es5||es6
    es5
    5 个常用的软件质量指标
    Solr
  • 原文地址:https://www.cnblogs.com/quanweiru/p/6220616.html
Copyright © 2011-2022 走看看