Mar 9, 2004 #1 pmaxon Programmer Sep 25, 2003 68 US How can I disable this when passing a parameter from VB6 to CR 8.5. Report.EnableParameterPrompting = False does not work.
How can I disable this when passing a parameter from VB6 to CR 8.5. Report.EnableParameterPrompting = False does not work.
Mar 9, 2004 #2 IdoMillet Instructor Feb 6, 2001 5,290 US Did you provide a value for that parameter? CUT, Visual CUT, and DataLink Viewer: view, e-mail, export, burst, distribute, and schedule Crystal Reports. http://www.MilletSoftware.com Upvote 0 Downvote
Did you provide a value for that parameter? CUT, Visual CUT, and DataLink Viewer: view, e-mail, export, burst, distribute, and schedule Crystal Reports. http://www.MilletSoftware.com
Mar 9, 2004 Thread starter #3 pmaxon Programmer Sep 25, 2003 68 US Discovered what I needed... thanks! Upvote 0 Downvote
Mar 12, 2004 #4 dfwalton Programmer Jul 24, 2002 143 What was the solution? Inquiring minds want to know. Thanks David Upvote 0 Downvote
Mar 13, 2004 Thread starter #5 pmaxon Programmer Sep 25, 2003 68 US .ParameterFields(0) = "sLName;" & Combo1.Text & ";TRUE; Upvote 0 Downvote
Mar 15, 2004 Thread starter #6 pmaxon Programmer Sep 25, 2003 68 US If I wanted to add another parameter to this from another combo box on the form, how would I modify this to work? .ParameterFields(0) = "sLName;" & Combo1.Text & ";TRUE;" Would I just add another .ParameterFields(1) = ? Upvote 0 Downvote
If I wanted to add another parameter to this from another combo box on the form, how would I modify this to work? .ParameterFields(0) = "sLName;" & Combo1.Text & ";TRUE;" Would I just add another .ParameterFields(1) = ?