1
In Delphi 7 when opening the search dialog box: CTRL+F and selecting the option: Regular Expressions would like to find everything that starts with the word Gpfield and ended with Isnull
For example, I have the code:
if GPField('TABELATAXAS').IsNull then
if GPField('TABELACARNE').IsNull then
I’d like to research something like:
GPField*IsNull
Which would bring me the two lines of code above.
How could I do that?