What event fires every time a TDbGrid's selected location is changed? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T06:03:09Zhttp://stackoverflow.com/feeds/question/294748http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/294748/what-event-fires-every-time-a-tdbgrids-selected-location-is-changed0What event fires every time a TDbGrid's selected location is changed?Mason Wheeler2008-11-17T02:21:04Z2008-11-17T18:36:29Z
<p>I've got a TDbGrid in my project, and I'm trying to have an event go off every time I change the selected row. Any change in row already updates all the data-aware controls linked to the same DataSource, but there are other changes to be made too, that I need an event handler for.</p>
<p>I thought OnColEnter would work. According to the helpfile, it fires when:</p>
<ul>
<li><p>The user navigates to the cell using
the keyboard. For example, when the
user uses the Tab key, or the Home
key. </p></li>
<li><p>The user clicks the mouse button
down in the cell. </p></li>
<li><p>The SelectedField or SelectedIndex
property is set.</p></li>
</ul>
<p>Unfortunately, it does <em>not</em> fire when the user navigates using the keyboard while the dgRowSelect option is enabled, and there's no OnRowEnter. And the OnKeyDown event fires before the selection change has been made. I'm trying to simulate a data-aware version of a TListBox here, and I need something to replace the List Box's OnClick handler, which despite the name actually goes off anytime the selection is changed, whether through the mouse or the keyboard. Is there any way I can do that with a TDbGrid? If not, there's got to be some other grid control that will do it. Does anyone know what it is? (Preferably open source?)</p>
http://stackoverflow.com/questions/294748/what-event-fires-every-time-a-tdbgrids-selected-location-is-changed/294935#2949357Answer by Osman for What event fires every time a TDbGrid's selected location is changed?Osman2008-11-17T05:21:42Z2008-11-17T09:12:42Z<p>Have you tried OnDataChange event of DataSource?</p>
http://stackoverflow.com/questions/294748/what-event-fires-every-time-a-tdbgrids-selected-location-is-changed/295727#2957271Answer by skamradt for What event fires every time a TDbGrid's selected location is changed?skamradt2008-11-17T14:48:51Z2008-11-17T14:48:51Z<p>Use the OnDataChange and to handle the case where your loading the dataset, add a boolean check as the first line of the routine, and set this to false when your loading is complete.</p>
<pre><code>procedure TForm1.DataSource1DataChange(Sender: TObject; Field: TField);
begin
if fbLoading then exit;
// rest of your code here
end;
procedure TForm1.Form1Create(Sender:tObject);
begin
fbLoading := true;
// load your table here
fbLoading := false;
end;
</code></pre>
http://stackoverflow.com/questions/294748/what-event-fires-every-time-a-tdbgrids-selected-location-is-changed/295929#2959293Answer by Fabricio Araujo for What event fires every time a TDbGrid's selected location is changed?Fabricio Araujo2008-11-17T15:47:15Z2008-11-17T15:47:15Z<p>OnDataChange is one choice. The other is, on TDataset side, the event AfterScroll. Most times, I found it more practical than OnDataChange; because in OnDataChange a scroll event comes with the Field parameter nil (which is a trap and can be one of the cause of your AVs coding it).</p>
http://stackoverflow.com/questions/294748/what-event-fires-every-time-a-tdbgrids-selected-location-is-changed/296442#2964420Answer by Osama ALASSIRY for What event fires every time a TDbGrid's selected location is changed?Osama ALASSIRY2008-11-17T18:36:29Z2008-11-17T18:36:29Z<p>I would only use AfterScroll on the dataset, it is fired when you first open the dataset, and every time you move in it. In a DBGrid, that would be on every click on a row, or the scrollbar, or using the keyboard (Home, Edn, Up, Down, PgUp,PgDown) ...etc. </p>
<p>You could even dynamically assign it if you use the same Dataset in many different forms (Either in Create/Free or Show/Close):</p>
<pre><code>procedure TForm1.myAfterScroll(DataSet: TDataSet);
begin
//do your thing here
if oldAfterScroll<>nil then
oldAfterScroll(DataSet);
end;
constructor TForm1.Create(AOwner: TComponent);
begin
oldAfterScroll:=DBGrid1.DataSet.OnAfterScroll;
DBGrid1.DataSet.OnAfterScroll:=myAdrerScroll;
end;
destructor TForm1.Free;
begin
DBGrid1.DataSet.OnAfterScroll:=oldAfterScroll;
end;
</code></pre>