Edit

Share via


_ExternalApplication2.NewFromSolutionWithInputParameters Method

Definition

Creates a new form using the specified form template with the specified form template and input parameters.

public:
 void NewFromSolutionWithInputParameters(System::String ^ bstrSolutionURI, System::String ^ bstrInputParameters);
public void NewFromSolutionWithInputParameters (string bstrSolutionURI, string bstrInputParameters);
abstract member NewFromSolutionWithInputParameters : string * string -> unit
Public Sub NewFromSolutionWithInputParameters (bstrSolutionURI As String, bstrInputParameters As String)

Parameters

bstrSolutionURI
String

The Uniform Resource Identifier (URI) of the form template on which to base the new form.

bstrInputParameters
String

One or more name/value pairs separated by the ampersand (&) character.

Remarks

To use the input parameters passed to the bstrInputParameters parameter, the form specified in the bstrSolutionURI parameter must contain a OnLoad event handler that uses the InputParameters property of the _XDocument4 class to retrieve the input parameter values, and then do something with those values. For an example of how to do this, see the InputParameters property topic.

Applies to