DataViewDrilldownLoadDetailForm method (WinStudio scripts)

Applies To

IWSFormComponent interface

Definition

Runs the specified form to show details related to the current record in the critical number drilldown.

Syntax

object.DataViewDrilldownLoadDetailForm(string1, string2)

Part Description
object Required. A reference to a valid Drilldown bound DataView object.
string1 Required. The name of the form to call.
string2 Optional. Custom parameters to use when calling the form. Property substitutions will be done against the current row of the drilldown.

Examples

Sub Main()
    ThisForm.Components("DrilldownGrid").DataViewDrilldownLoadDetailForm("Items", "")
End Sub
Sub Main()
    ThisForm.Components("DrilldownGrid").DataViewDrilldownLoadDetailForm("Items", "FILTER(Item=FP(Item) SETVARVALUES(InitialCommand=Refresh)")
End Sub