Hi
is it possible to export (write, print) the definition of an ODCL to a text file? I think it could be easier to check the consistency of the wording, of the caption on so on ....
Regards
Peter
You can use this method:
http://www.opendcl.com/HelpFiles/index.php?page=Advanced/Tips.htm (http://www.opendcl.com/HelpFiles/index.php?page=Advanced/Tips.htm)
And write the property info to a TXT file instead of writing it to a new ODCL file.
[Edit: I use 7.0.0.12 German]
Hi Barry
I modified it like this
(defun princodcl (odclfile / project props fontsize)
(setq project (dcl_Project_Load odclfile))
(if (not project) (exit))
(foreach form (dcl_Project_GetForms project)
(foreach control (dcl_Form_GetControls form)
(setq props (dcl_Control_GetProperties control))
(foreach line props
(princ "\n")
(princ line)
)
); foreach
); foreach
)
and started with
(princodcl "test.odcl")
and got a loooooong list like
....
(Control Browser)
(Custom)
BackColor
BorderStyle
BottomFromBottom
Caption
DragnDropAllowBegin
DragnDropAllowDrop
Enabled
EventInvoke
Font
ForeColor
Height
....
These are the properties, but I'm missing the values. How to get them?
Peter
Sorry - I think I found it:
http://www.opendcl.com/forum/index.php?topic=389.msg1744#msg1744
Thank you
Peter