If needed to exclude a certain field e.g. named "xlable" how is it done ?
Thanks in advanced, hershrev
On Thursday, February 26, 2004, at 08:07 PM, Ken Ray wrote:


sure:

repeat with x = 1 to the number of flds
  put empty into fld x
end repeat

or, if they're all named similarly, like "DataHolder_1" through
"DataHolder_5", you can do:

repeat with x = 1 to the number of flds
  put empyt into fld ("DataHolder_" & x)
end repeat

HTH,

Ken Ray
Sons of Thunder Software
Email: [EMAIL PROTECTED]
Web Site: http://www.sonsothunder.com/

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of hershrev
Sent: Thursday, February 26, 2004 6:53 PM
To: [EMAIL PROTECTED]
Subject: empty multiple fields


Hi everybody, is there a faster way to clear (empty) multiple fields then put empty in field"1" put empty in field"2" and so on ? to put all field names in Var and repeat for each line or so? Thanks, hershrev.

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-> revolution



_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution


_______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to