ScriptCase is very useful for creating an interface to an existing data model. It is not very useful for creating a data model in reverse, especially based on a vague idea.
You must first devise a data model to support your examination criteria. This will be the really hard part, and it’s why database analysts make billions of dollars an hour. Yes, billions.
You’ll need a table: (T_Questions) that includes a question (T_Questions.Question), a type (T_Questions.Type) example: multiple choice (‘M’), essay (‘E’), or true/false (‘T’), and an id that identifies all the possible answers in a T_Answers table that includes whether an answer is correct or not. Create all of the possible interface types, and use the onRecord event to hide the interfaces that aren’t used for this type of question, and load up the possible answers (if it’s not an essay question). Don’t ask me to be more detailed than this, because that will be work, and billions have to be earned…
It’s not terribly difficult, it’s a common need, and I’m a little surprised that NetMake doesn’t have an example available.