Path: utzoo!utgpu!jarvis.csri.toronto.edu!rutgers!att!shuxd!devildog!atux01!jlc From: jlc@atux01.UUCP (J. Collymore) Newsgroups: comp.sys.mac.hypercard Subject: Re: Field size Message-ID: <1219@atux01.UUCP> Date: 22 May 89 13:50:39 GMT References: <2148@csun.edu> Organization: AT&T CSEd/CET, Piscataway, N.J. Lines: 44 In article <2148@csun.edu>, mx!mst@csun.edu writes: > > What I want is for incoming data to be put AFTER the current data, > and have old data removed. Is this possible or must I 'put empty' into the > field before each data deposit? What can be done about data larger than the > field that you want to store it in? > > HELP! > > Thanks all, > Mike. > > Mike Temkin > ...!{sdcrdcf,hplabs,psivax,ttidca}!csun!mst mst@mx.csun.edu > Cal. State U. Northridge, School of Engineering and Computer Science PLEASE NOTE: I have not tried the following scripts, I am only offering them as possibilities you may wish to experiment with! If you don't care that it's your first line of "old data," why not just have your script do something like: delete line 1 of field x OR If you know what the "old data" is that you want to delete from the field, you can try a script that does something like: ask "Find and delete what info?" put it into temp1 find temp1 in field x put the foundLine into temp2 delete temp2 I hope this helps. Jim Collymore p.s. When testing things like this, make a duplicate stack to use for experimenting with FIRST! If you inadvertantly damage something, at least you still have your original stack INTACT and uncorrupted to go back to!