When you do an export to CSV with the 1.3 integration library you will not get a result that you desire due to wrongly defined export options structure. You can fix this by replacing:

Code:
Struct vrwCSVExportOptions
    String cFieldDelimiter
    String cFieldSeparator
    Boolean bExportPageSections
    Boolean bExportReportSections
    Boolean bExportGroupSections
End_Struct
in cVRWAPI.Pkg with:

Code:
Struct vrwCSVExportOptions
    String cFieldDelimiter
    String cFieldSeparator
    Integer bExportPageSections
    Integer bExportReportSections
    Integer bExportGroupSections
End_Struct
Sorry for any problems reported. We will include this change in the next official build.