Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to find the desired words in the grid?
#1
I look for a word in the title of the search result of the first grid.

For example:
jpg,png,tif,pcx,exe,avi,etc

and I want to transfer the value to the second grid that matches title keywords.

I do not know whether to look for words.
It sure to ask your help.
#2
To find a string in QM grid control:

int row
for row 0 g.RowsCountGet
,lpstr s=g.CellGet(row 1)
,if findrx(s "\bJPG\b")>=0 ;;or use findw or some other string function.

OR

ICsv c
g.ToICsv©
for row 0 c.RowCount
,lpstr s=c.Cell(row 1)
,if(findrx...


Forum Jump:


Users browsing this thread: 1 Guest(s)