Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rvasquez

    pass parameter to crystal

    Try somthing like this hope it helps. ltr Ramon Dim CrXParamDefs As CRAXDRT.ParameterFieldDefinitions Dim CRXparamDef As CRAXDRT.ParameterFieldDefinition Set CRXApp = CreateObject("CrystalRunTime.Application") Set CRXRpt = CrystalReport1 Set CRXparamDef =...
  2. rvasquez

    Exporting a report to CSV format using Visual Basic

    I would be happy to share the code with you. Give me some back ground on what your trying to do so that i can get the code that you need. R
  3. rvasquez

    Capture Value of ParameterField for use in VB

    I have a VB applicaiton that exports a report for me. The report is based on a ParameterField (Date). How can i capture the value of the Parameterfield so that i can use it to name the exported file? i.e. myParamterField = report.parameterfield.value
  4. rvasquez

    View field in Fixed length format

    Thank you both for the great help. One thing though, one of the fields that i'm reading is from MS SQL and it is defined as Currency, when i do my totext() is defaults a "$". What do i need to do to get rid of this? Am i doing this correct by putting these formuals in Field Exporer >...
  5. rvasquez

    View field in Fixed length format

    How can i make the fields that i use in my report fixed length? I want to be able to see leading "0" for a numeric field (i.e. "1234.00" to fixed length of 9 "000123400") and trailing "Spaces" for Alpha fields (i.e. "Hello World" to fixed length...
  6. rvasquez

    Exporting a report to CSV format using Visual Basic

    I found documentation than helped me with my problem. all i was missing at the end of my code was: CRXRpt.Export False thanks anyway R
  7. rvasquez

    Exporting a report to CSV format using Visual Basic

    Can some one help me out? I’m trying to export a crystal report to a *.csv format, programmatically through VB. I get this far but what I can’t seem to figure out is how to tell the application to save it. Set CRXApp = CreateObject(“CrystalRunTime.Application”) Set CRXRpt =...

Part and Inventory Search

Back
Top