Hello everybody,
sorry for my english but I would like to do my best.
I work on paradox7 and i need to export the data contain in a lot of report to XML files.
To do this I make a script for one of my report and he work well.
But i want to do a script who export automatically any report in my db (there is at least 50 reports)
My problem is that:
in some report i got my master table (master) who is link to a other table (employee) with the employee id.
But in my report i use more than one employee to get their first and last name.
when i use the method enumDataModel i got something like this
table name------propertyname--------propertyvalue
master---------one to one------------employee
*
*
*
employee-------parent-----------------master
employee-------linktype---------------one to one
employee-------linkfiels----------------id,id
*
*
*
employee1------parent----------------master
employee1------linktype---------------one to one
employee1------linkfiels----------------id2,id
*
*
*
But when i take the properties of the report with enumuiobject:
the properties of the field of the first name for the two employee are the same like employee.Name[] with no information on the linkfields.
And thus i cant know which id i must take to get the data of the employee.
If someone can understand me and (I can dream sometimes

) help me it would be great.