The AddFormIDsGroup method adds from group/copy instances.

Method Name

Argument

Description

AddFormIDsGroupforms

A string representing a CSV of formIDs. The order in which the group is added is the same in which will be displayed when generated.


Sample Code

Let's take an example: There's a need to bundle the forms for 3 accounts together but with differing forms. Let's say Acct A gets form IDs 1,2,2; Acct B gets form IDs 1,3; and Acct C get form IDs 2,3. 

The example below will generate 3 group of forms:


QuikFormsEngine qfe = new QuikFormsEngine();

qfe.QuikCustID = "1000123";
qfe.QuikUsername = "myUserName";
qfe.QuikPassword = "myPassword";

qfe.AddFormIDsGroup("1,2,2");
qfe.AddFormIDsGroup("1,3");
qfe.AddFormIDsGroup("2,3");
qfe.Execute();

Technical Details