<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
<font face="Arial">Hi Hans<br>
<br>
That did it - thank you.<br>
<br>
I did try every permutation I could think of ... but I wouldn't have
got there with your help.<br>
<br>
Now I can see it working I can better understand the concepts. <br>
If it's o.k. with you I'll post the input form/template/edit form on
the Fox-Comments page to share with others who might take this route
too.<br>
<br>
Best Regards<br>
<br>
Graham<br>
<br>
<br>
</font><br>
Hans wrote:
<blockquote cite="mid:122831756.20080917085449@softflow.co.uk"
type="cite">
<pre wrap="">Wednesday, September 17, 2008, 8:36:04 AM, Graham Archer wrote:
</pre>
<blockquote type="cite">
<pre wrap="">In the input form I have ...
</pre>
</blockquote>
<pre wrap=""><!---->
</pre>
<blockquote type="cite">
<pre wrap=""> (:input hidden RowNumber '{$$(add {$:RowNumber} 1)}':)
(:input text name=$:firstname :)
(:joined:{$:firstname}{$:RowNumber}:)
(:input hidden {$:joined} :)
</pre>
</blockquote>
<pre wrap=""><!---->
</pre>
<blockquote type="cite">
<pre wrap=""> This outputs freda14 to the page on submitting the entry to the table.
</pre>
</blockquote>
<pre wrap=""><!---->
Try this in the form:
(:input hidden RowNumber '{$$(add {$:RowNumber} 1)}':)
(:input text firstname :)
(:input hidden joined {$$firstname}{$$Rownumber}:)
and in the form template to post a PTV named 'joined' with the value
of firstname plus row id
(:joined: {$$joined}:)
and in you edit form to edit this PTV:
(:input text name=$:joined :)
Basically (:joined:{$:firstname}{$:RowNumber}:) from your form does
not get posted.
~Hans
</pre>
</blockquote>
</body>
</html>