Ask a questionAsk a question
 

AnswerCrystatl Reports in VisualStudio2005

  • Wednesday, October 28, 2009 12:27 PMerios38 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    When a report is created in Crystal Reports 2009 directly, the app offers 16 different options for export, among them CSV.

    A report created using VS Studio only offers 9 (No CSV). How can I, if it is possible, find a way to include other options???

Answers

  • Monday, November 02, 2009 3:50 PMerios38 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    I picke up the code from TutorialSampleCodeProjects that I found while searching thru Visual Studio for Help on how to produce a Crystal Report from VS.

    The app name was VB_Win_RDObjMod_Export

     

    to extract the options it did this...

    exportTypesList.DataSource = System.Enum.GetValues(

    GetType(ExportFormatType))

All Replies

  • Thursday, October 29, 2009 4:23 PMRupert Davis Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Where are you selecting the export options from, code or from a displayed report?

    Regards

    Rupert
    the problem is not what you don't know it's what you think you know that's wrong
  • Monday, November 02, 2009 3:50 PMerios38 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    I picke up the code from TutorialSampleCodeProjects that I found while searching thru Visual Studio for Help on how to produce a Crystal Report from VS.

    The app name was VB_Win_RDObjMod_Export

     

    to extract the options it did this...

    exportTypesList.DataSource = System.Enum.GetValues(

    GetType(ExportFormatType))