Where Navision store forms information into Database?

bestianhowbestianhow Member Posts: 120
Hi all,
Have anyone know that navision's form objects information store to which table? Can i retrieve the properties information like control's position (Xpos and Ypos) and so on?


Thank you very much.



Regards,
Kok Keong

Comments

  • AKAK Member Posts: 226
    Those coordinates aren't stored in the database. They are located in the fin.zup file in the user directory and can't be altered (AFAIK).

    Alex
  • ara3nara3n Member Posts: 9,257
    On Open form you can get the info

    T_xpos := CurrForm.XPOS;
    T_ypos := CurrForm.YPOS;

    or you can set the to a certain value.


    CurrForm.XPOS := 0
    CurrForm.YPOS := 0


    and for controls you can use them as well.
    CurrForm.Box.XPOS := 0;
    CurrForm.Box.YPOS := 0;


    And yes in zup file they are store for the last time you openend them, but above code can averide it. :)
    Ahmed Rashed Amini
    Independent Consultant/Developer


    blog: https://dynamicsuser.net/nav/b/ara3n
  • kinekine Member Posts: 12,562
    If you mean the properties of the controls on form (as defined in designer), all is saved in Object table in one BLOB field. But the object is coded and you are not able to read the properties from there.
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • bestianhowbestianhow Member Posts: 120
    Thank you very much!
  • cunnycunny Member Posts: 129
    hey guys,
    Is there some way we can open the fin.zup in the system?

    Thanks,
    :P
    cunny Lee
    MCP - MBS Navision
    jle@naviworld.com
  • kinekine Member Posts: 12,562
    No. Zup file is encoded.
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
Sign In or Register to comment.