I wanted to modify xbincflt.prg so that the search-promp display something like
- Code: Select all Expand view
- *string*
instead of
- Code: Select all Expand view
- string
if lSeekWild is on.
I modify the line
- Code: Select all Expand view
- @ 11,160 SAY oBrw:oSeek PROMPT oBrw:cSeek SIZE 200,10 PIXEL ;
OF oDlg COLOR CLR_BLACK,CLR_YELLOW PICTURE '@!'
to
- Code: Select all Expand view
- @ 11,160 SAY oBrw:oSeek PROMPT '*'+oBrw:cSeek+'*' SIZE 200,10 PIXEL ;
OF oDlg COLOR CLR_BLACK,CLR_YELLOW PICTURE '@!'
but this doesn't work.
At the begin it shows **, but then it I type something, I just see the search string.
How can I modify this?