access to other records in tvirtualtable

Discussion of open issues, suggestions and bugs regarding SDAC (SQL Server Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
Ludek
Posts: 301
Joined: Thu 12 Oct 2006 09:34

access to other records in tvirtualtable

Post by Ludek » Thu 12 Mar 2009 11:02

Hi, I need to access data in non-current records in a TVirtualTable. how can I do that?

example: user inserts record and, while being in dsinserted mode, the cumulative sums under the current record have to be online updated, if the user enters a value in the field, that is to be summed.

Posting the record, scrolling through the other records and coming back is not possible - the inserted record has to be in dsinsert mode, not in dsedit (for example - because the required fields are not all set yet). and, the code would be crazy (full of sucking bookmarks, disablecontrols etc.)

is there a way to access (read/modify) fields in other records of a tvirtualtable while staying on an other one? something like duplicating a cursor to the data or (better) direct array-like access?

thanks, Ludek.

Plash
Devart Team
Posts: 2844
Joined: Wed 10 May 2006 07:09

Post by Plash » Fri 13 Mar 2009 08:31

There is no way to access non-current records in TVirtualTable.

You can use TEdit components to enter values for new record. Then add values from edits to the TVirtualTable component.

Post Reply