Topic: Copy raw

Hello,

is it possible to copy and paste selected raw in a table grid with one button?

Re: Copy raw

Here you can download example:

Post's attachments

Attachment icon Dublicate from selected row in grid.zip 6.15 kb, 917 downloads since 2016-05-16 

Dmitry.

Re: Copy raw

It works. Thanks a lot.

Another question. I want to show a certain value from the database entry in a messagebox.
For example: Database Table 'Teileverwaltung', Field name 'revision'

Could you give me an example please?

Re: Copy raw

DanielDTR wrote:

It works. Thanks a lot.

Another question. I want to show a certain value from the database entry in a messagebox.
For example: Database Table 'Teileverwaltung', Field name 'revision'

Could you give me an example please?

Also you need to know record id
ShowMessage( SQLExecute('SELECT revision FROM Teileverwaltung WHERE id=1') );

Dmitry.