ReportRun.prompt Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
prompt()
Prompts the user a report is run.
public:
virtual bool prompt();
public virtual bool prompt ();
abstract member prompt : unit -> bool
override this.prompt : unit -> bool
Public Overridable Function prompt () As Boolean
Returns
true if execution of report should continue; otherwise, false.
Remarks
The call to the super method in the prompt method runs the sysPrintForm form. This method is called from the run method.
Applies to
prompt(Boolean)
prompt(Boolean, Boolean)
public:
virtual bool prompt(bool flag1, bool flag2);
public virtual bool prompt (bool flag1, bool flag2);
abstract member prompt : bool * bool -> bool
override this.prompt : bool * bool -> bool
Public Overridable Function prompt (flag1 As Boolean, flag2 As Boolean) As Boolean
Parameters
- flag1
- Boolean
- flag2
- Boolean
Returns
Applies to
prompt(Boolean, Boolean, Boolean)
public:
virtual bool prompt(bool flag1, bool flag2, bool flag3);
public virtual bool prompt (bool flag1, bool flag2, bool flag3);
abstract member prompt : bool * bool * bool -> bool
override this.prompt : bool * bool * bool -> bool
Public Overridable Function prompt (flag1 As Boolean, flag2 As Boolean, flag3 As Boolean) As Boolean
Parameters
- flag1
- Boolean
- flag2
- Boolean
- flag3
- Boolean
Returns
Applies to
prompt(Boolean, Boolean, Boolean, Boolean)
public:
virtual bool prompt(bool flag1, bool flag2, bool flag3, bool flag4);
public virtual bool prompt (bool flag1, bool flag2, bool flag3, bool flag4);
abstract member prompt : bool * bool * bool * bool -> bool
override this.prompt : bool * bool * bool * bool -> bool
Public Overridable Function prompt (flag1 As Boolean, flag2 As Boolean, flag3 As Boolean, flag4 As Boolean) As Boolean
Parameters
- flag1
- Boolean
- flag2
- Boolean
- flag3
- Boolean
- flag4
- Boolean
Returns
Applies to
prompt(Boolean, Boolean, Boolean, Boolean, Boolean)
public:
virtual bool prompt(bool _enableCopy, bool _enablePages, bool _enableDevice, bool _enableProperties, bool _enablePrintTo);
public virtual bool prompt (bool _enableCopy, bool _enablePages, bool _enableDevice, bool _enableProperties, bool _enablePrintTo);
abstract member prompt : bool * bool * bool * bool * bool -> bool
override this.prompt : bool * bool * bool * bool * bool -> bool
Public Overridable Function prompt (_enableCopy As Boolean, _enablePages As Boolean, _enableDevice As Boolean, _enableProperties As Boolean, _enablePrintTo As Boolean) As Boolean
Parameters
- _enableCopy
- Boolean
A Boolean value that indicates whether the user can select the target in the sysPrintForm form; optional.
- _enablePages
- Boolean
A Boolean value that indicates whether the user can select the target in the sysPrintForm form; optional.
- _enableDevice
- Boolean
A Boolean value that indicates whether the user can select the target in the sysPrintForm form; optional.
- _enableProperties
- Boolean
A Boolean value that indicates whether the user can select the target in the sysPrintForm form; optional.
- _enablePrintTo
- Boolean
A Boolean value that indicates whether the user can select the target in the sysPrintForm form; optional.