How can do Change Postion of Control Using xpos and ypos?

AlagarAlagar Member Posts: 100
Hi All,
Advanced Happy New year Wishes. Can we change postion of a Control in Section from Requestoption form?. Suppose if we add two Controls for Xpos and Ypos in Requestoption form. if we change xpos and ypos from Requestoptionform will it work properly?.. How to Do it?. Help me.. :(:(

Comments

  • DaveTDaveT Member Posts: 1,039
    Hi Alagar,

    Setting the XPOS and YPOS will work in the requestform

    Remember to name the control first e.g.
    IF ConditionTrue THEN
       BEGIN
         RequestOptionsForm."DAVE".XPOS := 4000;
         RequestOptionsForm."DAVE".YPOS := 4000;
       END
    ELSE
       BEGIN
         RequestOptionsForm."DAVE".XPOS := 3000;
         RequestOptionsForm."DAVE".YPOS := 3000;
       END;
    
    Dave Treanor

    Dynamics Nav Add-ons
    http://www.simplydynamics.ie/Addons.html
Sign In or Register to comment.