Uniface User Forum

聽View Only
  • 1.  C贸mo expotar datos de una forma

    Posted 05-18-2021 18:54

    Buenas tardes, soy algo nueva en uniface, me preguntaba si era posible exportar los datos que me arroja mi forma, ya que requiero esa informacion ya sea en un pdf o excel, o por lo menos en un xml. Hay manera de hacer esto?



  • 2.  RE: C贸mo expotar datos de una forma

    Posted 05-18-2021 20:34

    Hi Celeste,

    Uniface Documentation is your friend... 馃檪 you can find it online HERE to search.

    There is NO export of data directly built into Uniface to Excel or to PDF; you should program your solution interfacing a PDF or Excel library/application or buy something available from a 3rd party.

    To export to XML data retrieved from a component you could use initially:
    - componenttostruct
    which move data available in your form into a struct variable, then:
    - structtoxml
    which move data from the struct variable into an xml variable.
    To save your xml variable to a file you could use:
    filedump

    Clicking on the links you will find related documentation.

    Hope it helps.

    Regards,
    Gianni



  • 3.  RE: C贸mo expotar datos de una forma

    Posted 05-20-2021 17:37

    Perfect, I appreciate the help. Right now I'm checking it ...
    regards 馃檪