Crystal Report 8.5 and Visual Basic 6 Problem(Again)

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MarkTingson
    New Member
    • Nov 2007
    • 40

    Crystal Report 8.5 and Visual Basic 6 Problem(Again)

    Hi,

    Can you pls help with my problem: everytime i run my project and view my report in cr, a window always pop up saying "Enter parameter value"...I am getting annoyed with this pop up window..

    is this because of my parameters?how can i prevent it not to pop? i have leave the prompting text setting of all my parameters blank.
    [code=vb]
    With Main.rptCN
    .DiscardSavedDa ta = True
    .ReportFileName = App.Path & "\REPORTS\rptSt ockMonitoring.r pt"
    .WindowTitle = "Product Inventory Report"
    .ParameterField s(0) = "prmTitle;HELLO ;True" 'if i remove this line the window is not popping up. But i have to put this in order to set the value of my parameter..
    .PageZoom 100
    .Action = 1
    end with
    [/code]
    can you help with this guys??

    Thanks again! :-(
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Try to pass the parameter value dynamically.

    Comment

    • MarkTingson
      New Member
      • Nov 2007
      • 40

      #3
      Hi Sir,

      I forgot to tell you that I am starting to learn Crystal Report.. What do you mean by dynamically?? Thanks!!

      Comment

      Working...