Crystal Reports Viewer

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

    Crystal Reports Viewer

    Is there a way with the CR For .Net Viewer control to get the field and
    the value if a user clicks on a field in a report? I know if previous
    versions you could do this... If you can't do it with the CR for .Net
    that comes with Visual Studio, what is needed to do that?

    Aaron
    --
    ---
    Aaron Smith
    Remove -1- to E-Mail me. Spam Sucks.
  • Mark Jones

    #2
    Re: Crystal Reports Viewer

    Search for "Public Instance Events" and CrystalReportVi ewer Members
    in the crystal report section of VS help.
    Drill Event fires when a report is drilled down on.
    DrillDownSubrep ort Event fires when the user drills down on a subreport.
    HandleException Event fires when an exception occurs in the Viewer.
    Navigate Event fires when the user navigates through a report.
    ReportRefresh Event fires when the data in the report is refreshed.
    Search Event fires when text is searched for in the report.
    ViewZoom Event fires when zoom level of the viewer changes.



    "Aaron Smith" <thespirit-1-@smithcentral.n et> wrote in message
    news:Z6Grd.2293 $Ai2.731@newssv r31.news.prodig y.com...[color=blue]
    > Is there a way with the CR For .Net Viewer control to get the field and
    > the value if a user clicks on a field in a report? I know if previous
    > versions you could do this... If you can't do it with the CR for .Net
    > that comes with Visual Studio, what is needed to do that?
    >
    > Aaron
    > --
    > ---
    > Aaron Smith
    > Remove -1- to E-Mail me. Spam Sucks.[/color]


    Comment

    • Aaron Smith

      #3
      Re: Crystal Reports Viewer

      Yea, I already read through those and there isn't anything in there to
      get the field and the value of that field that they click on...

      For example, if we have a listing of open purchase orders, we want to be
      able to click on the open purchase order in that report and have it open
      the form to edit that purchase order... This was possible in CR version
      7 and 8 with regular VB.. Is this not available anymore in the .Net
      versions? What about the CR 10 for .Net?

      Aaron

      Mark Jones wrote:[color=blue]
      > Search for "Public Instance Events" and CrystalReportVi ewer Members
      > in the crystal report section of VS help.
      > Drill Event fires when a report is drilled down on.
      > DrillDownSubrep ort Event fires when the user drills down on a subreport.
      > HandleException Event fires when an exception occurs in the Viewer.
      > Navigate Event fires when the user navigates through a report.
      > ReportRefresh Event fires when the data in the report is refreshed.
      > Search Event fires when text is searched for in the report.
      > ViewZoom Event fires when zoom level of the viewer changes.
      >
      >
      >
      > "Aaron Smith" <thespirit-1-@smithcentral.n et> wrote in message
      > news:Z6Grd.2293 $Ai2.731@newssv r31.news.prodig y.com...
      >[color=green]
      >>Is there a way with the CR For .Net Viewer control to get the field and
      >>the value if a user clicks on a field in a report? I know if previous
      >>versions you could do this... If you can't do it with the CR for .Net
      >>that comes with Visual Studio, what is needed to do that?
      >>
      >>Aaron
      >>--
      >>---
      >>Aaron Smith
      >>Remove -1- to E-Mail me. Spam Sucks.[/color]
      >
      >
      >[/color]


      --
      ---
      Aaron Smith
      Remove -1- to E-Mail me. Spam Sucks.

      Comment

      • Billy

        #4
        Re: Crystal Reports Viewer

        Hi!

        I also have one problem with Crystal Report Viewer (crv). When I
        select Print button on my form I change my cursor to busy:

        Cursor = curBusyApp 'busy on my Form

        frm.crv.Cursor = curBusyApp 'on the report form

        frm.ShowDialog( ) 'Show report as dialog
        Cursor = Cursors.Default 'default again for my form

        Because my report show on screen as dialog I don't know how to set
        cursor on the report form back to default when my whole report appear
        on the screen (all pages is loaded in the report).

        Anybody know which event I have to fire on crv when all data is loaded
        so that cursor will be in default state again or any other method to
        solve that?


        Regards,
        Billy

        Comment

        Working...