Hi- ver .98 win tdbf
for this property i got some code off the internet for use with delphi.
property SelectedIndex: Integer; [rw]
procedure TForm1.Button1Click(Sender: TObject);
Var
Column:TColumn;
begin
dbGridIncome.SelectedIndex:=1;
dbGridIncome.SetFocus;
dbGridIncome.OnCellClick(Column)
end;
this property seems to be public and a descendant of tdbgrid so it should be available right...unless i am not setting it correctly (probably the case)
i'd kind of like to get a programmable cell click working because
on arrival at the grid i'd like to have col 0 ready to edit without
clicking.
i just learned tonight that it is better to use the reference in the wiki then figure out what is and isnt available on code complete for now.
this isnt a huge deal but if you know right off i'd apreciate the tip.
thanks,
jim