XLSSpreadSheet Can it search in a sheet?
XLSSpreadSheet Can it search in a sheet?
Hello. I have just downloaded XLSSpreadSheet. I can't find a way to search within sheets. Ctrl+F won't work. Can it search the document?
Re: XLSSpreadSheet Can it search in a sheet?
Hello
Use:
Use:
Code: Select all
FXSS.XLSSheet.BeginFindText;
while FXSS.XLSSheet.FindText('MyFindText') do begin
FXSS.XLSSheet.GetFindData(Col,Row,TextPos,Text);
ShowMessage('Found at ' + ColRowToRefStr(Col,Row) + ': ' + Text);
end;
Lars Arvidsson, Axolot Data
Re: XLSSpreadSheet Can it search in a sheet?
Hi
This is outdated. How is this done in Delphi 10.3.3 ?
FXSS.XLSSheet.BeginFindText;
while FXSS.XLSSheet.FindText('MyFindText') do begin
FXSS.XLSSheet.GetFindData(Col,Row,TextPos,Text);
ShowMessage('Found at ' + ColRowToRefStr(Col,Row) + ': ' + Text);
end;
This is outdated. How is this done in Delphi 10.3.3 ?
FXSS.XLSSheet.BeginFindText;
while FXSS.XLSSheet.FindText('MyFindText') do begin
FXSS.XLSSheet.GetFindData(Col,Row,TextPos,Text);
ShowMessage('Found at ' + ColRowToRefStr(Col,Row) + ': ' + Text);
end;