아래와 같이 짜고있는데요..
for i:=0 to 7 do
begin
if(stringGrid1.Cells[i,0]=cbbox_field.Text)then
begin
for j:=0 to total_db do
begin
if(pos(찾는단어,stringgrid1.Cells[i,j]) >0)then
begin
stringgrid1.Row:=j;
stringgrid1.col:=i;
stringgrid1.setfocus;
end;
end;
end;
end;
이렇게 하면 찾는단어가 있는 스트링그리드의 cell에가서 포커스를 맞춤니다.
여기까지는 잘 되는데요..
찾는단어에만 포커스가 맞춰지지않고
cell전체에 포커스가 맞춰지고 있습니다.
찾는 단어에만 포커스를 맞추는것은 어떻게 해야할지.. 전혀 모르겠어요..
왜.. 다른 텍스트에디터들은 찾는단어만 딱 포커스 맞춰주구 그러는데..
그렇게 할려고하거든요..
도와주세요