Delphi中,可使用數據集控件提供的 Locate 成員方法快速定位至某條記錄, 而後經過清除數據集控件的選中狀態,並從新賦值達到咱們的目的。code
grDirectory.DataSource.DataSet.Locate('StepNo', StrToInt(stepList[i]), []); grDirectory.ClearSelection; grDirectory.FocusedNode.Selected := True;