WinStudio

DataViewDrilldownLoadDetailForm (Method)

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(string, string)

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

Example

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