Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets whether the parameter prompt appears when the parameter values are not set.
Namespace CrystalDecisions.Web Assembly CrystalDecisions.Web (CrystalDecisions.Web.dll)
Syntax
'Declaration
Public Property EnableParameterPrompt As Boolean
public bool EnableParameterPrompt {get; set;}
Example
This example shows how to enable parameter prompt in the CrystalReportViewerBase.
'Declaration
Private Sub SetEnableParameterPrompt(ByVal myCrystalReportViewerBase As CrystalReportViewerBase, _
ByVal enableParameterPrompt As Boolean)
myCrystalReportViewerBase.EnableParameterPrompt = enableParameterPrompt
End Sub
private void SetEnableParameterPrompt(CrystalReportViewerBase crystalReportViewerBase, bool enableParameterPrompt)
{
crystalReportViewerBase.EnableParameterPrompt = enableParameterPrompt;
}
Version Information
Crystal Reports Basic for Visual Studio 2008
Supported since: Crystal Reports .NET 10
See Also
Reference
CrystalReportViewerBase Class
CrystalReportViewerBase Members
CrystalDecisions.Web Namespace