Is it possible to insert a new record within a table? I don't have a way to
sort. It's just a list that needs to stay in a certain order. I'm using vfp8.
Thanks
Sherry

Re: inserting new record by borisb

borisb
Tue Jan 11 09:29:11 CST 2005

sherry wrote:
> Is it possible to insert a new record within a table? I don't have a way to
> sort. It's just a list that needs to stay in a certain order. I'm using vfp8.
> Thanks
> Sherry
Why not index the table?
anyway, In the table has no indexes You must opened it exclusive & use
INSERT BLANK.

USE MyTable EXCLUSIVE
GO 15
INSERT BLANK
REPLACE Field1 WITH 111 ...

But the Table must have NO indexes no metter if You use order or not

Re: inserting new record by Anders

Anders
Tue Jan 11 15:05:44 CST 2005

Use an index or display as items in a Listbox or combobox with Sorted = .T.,
or use a query cursor with an appropiate ORDER BY clause.

-Anders

"sherry" <sherry@discussions.microsoft.com> wrote in message
news:CC9D447E-36B0-4C69-8837-794538BC5939@microsoft.com...
> Is it possible to insert a new record within a table? I don't have a way
to
> sort. It's just a list that needs to stay in a certain order. I'm using
vfp8.
> Thanks
> Sherry