Hi,

I'm running into error 111 and can't see any reason.

Removing the dbc from the project has no effect. When the dbc is in the
project it is marked as "Exclude".

When I start the app, and every time the table goes to a new row, I get
the 111 error but the error appears to come from code that is NOT trying
to write to the table!

The full error message:

".txtValue.Value = Symbols.TotShares * Symbols.Price
Error: 111
Cannot update the cursor Symbols, since it is read-only.
Method navrefresh
Line: 53"

How would a simple calculation on data in the table require an update?

Symbols is a vfp table. All data is local (Drive C). No server is
involved.

This vfp9.

Thanks for any help,

Frank

Re: Error 111 Cannot update the cursor... by Frank

Frank
Mon Jul 04 07:26:16 CDT 2005

Frank Dreyfus <fdreyfus@nyw.com> wrote in
news:Xns968952CCD3A39adfslur0mdoaur03jadl@207.115.63.158:

> I'm running into error 111 and can't see any reason.

Oops. I found the problem.

I had a controlsource property set on the edit box (txtValue) so it was
trying to write back to the table whenever it's value property changed.

Frank