OpenDCL Forums

OpenDCL => Studio/Dialog Editor => Topic started by: Peter2 on July 24, 2013, 09:47:30 AM

Title: Export ODCL to textfile?
Post by: Peter2 on July 24, 2013, 09:47:30 AM
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
Title: Re: Export ODCL to textfile?
Post by: BazzaCAD on July 24, 2013, 10:36:35 AM
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.
Title: Re: Export ODCL to textfile?
Post by: Peter2 on July 24, 2013, 12:40:20 PM
[Edit: I use 7.0.0.12 German]


Hi Barry

I modified it like this

Code (autolisp) Select
(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

Code (autolisp) Select
(princodcl "test.odcl")

and got a loooooong list like

Code (autolisp) Select
....
(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

Title: Re: Export ODCL to textfile?
Post by: Peter2 on July 24, 2013, 01:15:22 PM
Sorry - I think I found it:

http://www.opendcl.com/forum/index.php?topic=389.msg1744#msg1744

Thank you

Peter