How to Implement Tab Order in Navision

vipinkuruvillavipinkuruvilla Member Posts: 143
Can anyone tell me how I can implement tab order in navision????

Comments

  • kinekine Member Posts: 12,562
    See NextControl property. In many cases you do not need to change it because NAV will use position of the control to set the tab order (from top to bottom and than from left to right). To have correct automatic tab order you need to use grid because the text boxes must be in one column etc.
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • rajpatelbcarajpatelbca Member Posts: 178
    very easy. first select control where u want to focus when form is open. get id of that control form that control's property. put this id in active control on open property of form. then select the next control after that u want to focus on get its id and put it in next control of previously selected control's propety.

    eg. two text box id are x1, x2 respectively.
    put x1 in activecontrol on open property of form then. put x2 in nextcontrol property of x1. as a result when form run at that time control will be on x1 text box then it will goes to x2 textbox.

    hope it will help u.

    Rajesh
    Experience Makes Man Perfect....
    Rajesh Patel
  • vipinkuruvillavipinkuruvilla Member Posts: 143
    Thanks a lot Raj..........That really helped.............
  • KunwarNareshKunwarNaresh Member Posts: 4
    this would be great if you can guide me for Pages as well. How can i use NextControl Property in Pages.
Sign In or Register to comment.