Thanks for the reply, I just like to be efficient and define it all at once, most places don't respond so thanks again.I've studied the route files and they pretty easy, but I program in Delphi Pascal so it's not really compatible with this project🙁.As far as the gl2&3 layers, when I load them in it doesn't generate them as negatives for the first half of the file; when it's LPC for the first color command, it is supposed to solid fill the layer instead of using a clear background, then apply the...
CNC, Zooming and Composite layers
My bad guys, the .Last fix does work, I just had a bug in my code...still it would be nice if they could encorporate a built-in change ;)
Update, after working with it more, I found that the memo data is written to many of the fields.
A work around is you can use .Last after you append the record, but before you update the memo field; even though it is supposed to put the pointer on the new record it doesn't in this case so the .Last procedure forces it to do so. Any fix coming soon so I don't have to do this?
Thanks for the example, any suggestions about resolving the problem on the component level?
So I found if you use LAST on the dataset after you AppendRecord, but before commiting the lines to the Memo field, everything works fine.
Here is a really basic program to add 10 records. If you examine the database with MyDBF you'll see the 2nd record has invalid data. When you run the program, it intentionally filters the bad record out otherwise it throws errors. but you'll also notice that the physical record numbers (before each append) are -1, 2, 0, 0... maybe this will help.