Description
|
I have another one for you. Take a look at the name fields below (Cust_Acct1, Cust_Name1, AMR-Inter1). This code is repeated 20 times, Cust_acct1 through Cust_Acct20 and so on.
I would like to be able to use the TELOOP command and replace the nunmber in the name with a variable. Is this possible? It would say a lot of repetative typing.
Thanks once again for your help.
<TR><TD><TESHOW TextTrim(Screen(3,49,20))></TD>
<TD><INPUT TYPE="Text" NAME="Cust_Acct1" SIZE=13
MAXLENGTH=13
VALUE="<TESHOW TextTrim(Screen(3,3,10))>">
</TEXTAREA></TD>
<TD><INPUT TYPE="Text" NAME="Cust_Name1" SIZE=20
MAXLENGTH=20
VALUE="<TESHOW TextTrim(Screen(3,14,20))>">
</TEXTAREA></TD>
<TD>
<SELECT NAME="AMR_Inter1">
<OPTION>0
<TEIF TextTrim(Screen(3,40,2)) = "15">
<OPTION SELECTED>15
<TEELSE>
<OPTION>15
</TEIF>
<T
|