Topic: Search made by code

How can we make search using script for specific field.

Re: Search made by code

Hello unforgettable

There are a lot of examples about your forum search

Here is an exemple :

Form1.Label1.Text := SQLExecute('SELECT definition from glossaire WHERE id=' + IntToStr(Glossaire.TableGrid1.dbItemID) );

Here I want to retrieve into Label1  the content of the Definition field belonging to the Glossary table corresponding to the term contained in TableGrid1 (via the ID of this item) clicked.

am I clear in my explanation ?

JB

Re: Search made by code

Thank you Jean