Deleting a column ...
Alex Tweedly
alex at tweedly.net
Mon Feb 9 17:50:46 EST 2009
[ Sorry - I have deleted the original mail, so can't reply to it (or
even find out the exact subject line ...) ]
deleting a column ...
I haven't tested extensively, but in a simple case or two, it seems to
work just doing
split tVar by column
delete variable tVar[3] -- to delete the 3rd column
combine tVar by column
or if you want to delete the content of a column, but keep it there as
an empty column, you can do
split tVar by column
put empty into tVar[3]
combine tVar by column
-- Alex.
More information about the use-livecode
mailing list