I get the following error when i execute
<% import("willsub") %> <%=cFormSelects{"ReqTypes"}{1} %>
Active4D error Unknown identifier. =cFormSelects{"ReqType"}{1}
the cFormSelects is red.
I think I have a collection scope problem, but I've run out of things to try. Anything obvious to you other active4d'ers?
Mike,
Maybe you need a space between <%= and cFormSelects, e.g.,
<% import("willsub") %>
<%= cFormSelects{"ReqTypes"}{1} %>
-- Brad
