Print report in VB6?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • ray

    Print report in VB6?

    Hi,

    I'm new in VB and is there any report generator in VB6 that I can use to
    formatted report for my records set in VB6? Or I have to write the code line
    by line for the data to print out?

    Thanks for the help.



  • Miles

    #2
    Re: Print report in VB6?

    There is nothing really built into VB6. I think most use a 3rd party
    add-on for report generation. Most common would be crystal reports. I
    myself use List and Label from Combit.

    ray wrote:
    [color=blue]
    > Hi,
    >
    > I'm new in VB and is there any report generator in VB6 that I can use to
    > formatted report for my records set in VB6? Or I have to write the code line
    > by line for the data to print out?
    >
    > Thanks for the help.
    >
    >
    >[/color]

    Comment

    • ray

      #3
      Re: Print report in VB6?

      Thanks!

      But I want something that can embedded to the final application, so I can
      distribute my app with the report printing features to a lot of users.

      Can Crystal reports let me do that?

      Thanks!


      "Miles" <unknown@unlist edspam.com> wrote in message
      news:qZTzb.2368 0$o9.19055@fed1 read07...[color=blue]
      > There is nothing really built into VB6. I think most use a 3rd party
      > add-on for report generation. Most common would be crystal reports. I
      > myself use List and Label from Combit.
      >
      > ray wrote:
      >[color=green]
      > > Hi,
      > >
      > > I'm new in VB and is there any report generator in VB6 that I can use to
      > > formatted report for my records set in VB6? Or I have to write the code[/color][/color]
      line[color=blue][color=green]
      > > by line for the data to print out?
      > >
      > > Thanks for the help.
      > >
      > >
      > >[/color]
      >[/color]


      Comment

      • Norman Yuan

        #4
        Re: Print report in VB6?

        VB comes with a report tool: Data Report. If you do not see it from
        "Project" menu, click menu "Project->Components", then in "Components "
        dialog box, click "Designers" tab, check "Data Report".

        It is very easy to use, but can only produce simple, plain reports. If you
        want your report to look very professional, you may have to use Crystal
        report, MS Access, or other third party tool (of course, you/your clients
        have to pay for that).

        "ray" <mapperkids@yah oo.com> wrote in message
        news:m3Tzb.1112 55$ZmO.34255@ne ws01.bloor.is.n et.cable.rogers .com...[color=blue]
        > Hi,
        >
        > I'm new in VB and is there any report generator in VB6 that I can use to
        > formatted report for my records set in VB6? Or I have to write the code[/color]
        line[color=blue]
        > by line for the data to print out?
        >
        > Thanks for the help.
        >
        >
        >[/color]


        Comment

        • Miles

          #5
          Re: Print report in VB6?



          ray wrote:[color=blue]
          > Thanks!
          >
          > But I want something that can embedded to the final application, so I can
          > distribute my app with the report printing features to a lot of users.
          >
          > Can Crystal reports let me do that?
          >[/color]

          Yes it can. I use List and Label from Combit. A few years ago it was
          the only report writer that I could pass simple variables to it rather
          than link it to a database. Forcing a report to be linked to a database
          may work for some but my program doesn't get all of its data from a data
          base. I am told that in more recent years variables can be passed
          directly to Crystal reports and no database is needed. I do not know
          the validity of that. List and Label works extremely well and is very easy.

          Comment

          • J French

            #6
            Re: Print report in VB6?

            On Fri, 05 Dec 2003 03:36:50 GMT, "ray" <mapperkids@yah oo.com> wrote:
            [color=blue]
            >Hi,
            >
            >I'm new in VB and is there any report generator in VB6 that I can use to
            >formatted report for my records set in VB6? Or I have to write the code line
            >by line for the data to print out?
            >
            >Thanks for the help.[/color]

            Personally I would suggest that you print your report to a Text File
            - with embedded formatting instructions

            Then write another App that can display it on the Screen or Printer

            Printing in VB is a bitch
            - you only ever want to do it once

            Comment

            Working...