Hi everyone! I'm stuck. I'm trying to create a function to create forms dynamically. For example
CreateForm("UserDetails");
Function($FormType){
if ($FormType == "UserDetails)
{
// create specific forms
Now, I don't want to hard code the forms. Does anyone know a way without hardcoding the forms? I've heard of FastTemplate, can I use this to solve my problem?
Thx in advance.