Click or drag to resize
IChildMgrEditChildSurvey Method
Opens the child interview with id inChildID for modification. Note: Each child interview gets his own internal ID given by the system

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
void EditChildSurvey(
	string inChildName,
	int inChildID
)

Parameters

inChildName
Type: SystemString
The name of the child survey
inChildID
Type: SystemInt32
The id of the child interview to open and edit
Examples
Survey "B" is a child survey of survey "A". During an interview of survey "A", Survey "B" was called and opened 3 times. The first interview of survey "B" got the internal ID of 13. The second interview of survey "B" got the internal ID of 14. The third interview of survey "B" got the internal ID of 15. In this case, EditChildSurvey("B", 14) will open the chils interview with id 14 from where it was stopped, to modify.
See Also