FreeFlow class library

ActionPage.StartBlankForm Method (String, String)

Starts a blank form. This method can only be used with user actions.

[Visual Basic]
Overloads Public Sub StartBlankForm( _
   ByVal processName As String, _
   ByVal actionName As String _
)
[C#]
public void StartBlankForm(
   string processName,
   string actionName
);

Parameters

processName
Name of the process.
actionName
Name of the action.

Example

How to start a blank form, set some values and submit the form. conn is an already logged-in Connection object

[C#]
FreeFlow.Client.ActionPage page = new FreeFlow.Client.ActionPage();
page.Connection = conn;
page.StartBlankForm("Map1", "Action1");
page.Form.Field("Text1").Value = "Hello world";
page.Validate();
page.Submit();
[Visual Basic]
Dim page As New FreeFlow.Client.ActionPage
page.Connection = conn
page.StartBlankForm("Map1", "Action1")
page.Form.Field("Text1").Value = "Hello world"
page.Validate()
page.Submit()

See Also

ActionPage Class | FreeFlow.Client Namespace | ActionPage.StartBlankForm Overload List