Share via


ReportRun.prompt Method

Definition

Overloads

prompt()

Prompts the user a report is run.

prompt(Boolean)
prompt(Boolean, Boolean)
prompt(Boolean, Boolean, Boolean)
prompt(Boolean, Boolean, Boolean, Boolean)
prompt(Boolean, Boolean, Boolean, Boolean, Boolean)

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)

public:
 virtual bool prompt(bool flag1);
public virtual bool prompt (bool flag1);
abstract member prompt : bool -> bool
override this.prompt : bool -> bool
Public Overridable Function prompt (flag1 As Boolean) As Boolean

Parameters

flag1
Boolean

Returns

Applies to

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.

Returns

Applies to