Initially selected TTMSFMXGrid cell

I have a TTMSFMXGrid. On program startup, the top left non-fixed cell is selected and has a blue highlight as is normal. But I have programmed this cell to contain a TTrackbar. I would like the cell not to be highlighted on startup. Once the user clicks in another cell, the top left cell is never highlighted again even when the user clicks back into the TTrackbar to operate it. 


Can I either eliminate the highlight in the top left cell on startup or else move the initially selected cell away from the top left position?

Thanks.

Hi, 


You can use the following code to force a different initial focused cell:

procedure TForm1.TMSFMXGrid1ApplyStyleLookup(Sender: TObject);
begin
  TMSFMXGrid1.FocusedCell := Cell(3, 3);
end;