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?
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.
Comments
Alex
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.
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Is there some way we can open the fin.zup in the system?
Thanks,
:P
MCP - MBS Navision
jle@naviworld.com
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.