<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[My Visual Database — Auto Select first row in grid after enter text in a textbox.]]></title>
		<link>https://myvisualdatabase.com/forum/viewtopic.php?id=584</link>
		<atom:link href="https://myvisualdatabase.com/forum/extern.php?action=feed&amp;tid=584&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Auto Select first row in grid after enter text in a textbox..]]></description>
		<lastBuildDate>Fri, 17 Oct 2014 11:24:28 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Auto Select first row in grid after enter text in a textbox.]]></title>
			<link>https://myvisualdatabase.com/forum/viewtopic.php?pid=2878#p2878</link>
			<description><![CDATA[<p>Great! <br />Thank you and have a good weekend, Carlo</p>]]></description>
			<author><![CDATA[null@example.com (carlo_dj)]]></author>
			<pubDate>Fri, 17 Oct 2014 11:24:28 +0000</pubDate>
			<guid>https://myvisualdatabase.com/forum/viewtopic.php?pid=2878#p2878</guid>
		</item>
		<item>
			<title><![CDATA[Re: Auto Select first row in grid after enter text in a textbox.]]></title>
			<link>https://myvisualdatabase.com/forum/viewtopic.php?pid=2877#p2877</link>
			<description><![CDATA[<p>Sorry )</p><div class="codebox"><pre><code>procedure frmProdModel_Button1_OnAfterClick (Sender: string);
begin
          frmProdModel.GridProdMod.SelectedRow := 0;
          frmProdModel.lblCompType.Caption := frmProdModel.GridProdMod.Cells[3, 0];
          frmProdModel. EdProdModel.Text := frmProdModel.GridProdMod.Cells[2, 0];
end;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (DriveSoft)]]></author>
			<pubDate>Fri, 17 Oct 2014 11:06:30 +0000</pubDate>
			<guid>https://myvisualdatabase.com/forum/viewtopic.php?pid=2877#p2877</guid>
		</item>
		<item>
			<title><![CDATA[Re: Auto Select first row in grid after enter text in a textbox.]]></title>
			<link>https://myvisualdatabase.com/forum/viewtopic.php?pid=2876#p2876</link>
			<description><![CDATA[<p>Sorry, this not working, error.</p>]]></description>
			<author><![CDATA[null@example.com (carlo_dj)]]></author>
			<pubDate>Fri, 17 Oct 2014 10:59:21 +0000</pubDate>
			<guid>https://myvisualdatabase.com/forum/viewtopic.php?pid=2876#p2876</guid>
		</item>
		<item>
			<title><![CDATA[Re: Auto Select first row in grid after enter text in a textbox.]]></title>
			<link>https://myvisualdatabase.com/forum/viewtopic.php?pid=2868#p2868</link>
			<description><![CDATA[<p>try this</p><div class="codebox"><pre><code>procedure frmProdModel_Button1_OnAfterClick (Sender: string);
begin
          frmProdModel.GridProdMod.SelectedRow := 0;
          frmProdModel.lblCompType.Caption := frmProdModel.GridProdMod.Cells[3, ARow];
          frmProdModel. EdProdModel.Text := frmProdModel.GridProdMod.Cells[2, ARow];
end;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (DriveSoft)]]></author>
			<pubDate>Fri, 17 Oct 2014 08:18:30 +0000</pubDate>
			<guid>https://myvisualdatabase.com/forum/viewtopic.php?pid=2868#p2868</guid>
		</item>
		<item>
			<title><![CDATA[Re: Auto Select first row in grid after enter text in a textbox.]]></title>
			<link>https://myvisualdatabase.com/forum/viewtopic.php?pid=2861#p2861</link>
			<description><![CDATA[<p>Hi again,<br />Maybe is the problem this script below, the event&nbsp; OnCellClick ?</p><p>procedure frmProdModel_GridProdMod_OnCellClick (Sender: string; ACol, ARow: Integer);<br />begin<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; frmProdModel.lblCompType.Caption := frmProdModel.GridProdMod.Cells[3, ARow];<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; frmProdModel. EdProdModel.Text := frmProdModel.GridProdMod.Cells[2, ARow];<br />end;</p><p>Thanks</p>]]></description>
			<author><![CDATA[null@example.com (carlo_dj)]]></author>
			<pubDate>Fri, 17 Oct 2014 05:13:54 +0000</pubDate>
			<guid>https://myvisualdatabase.com/forum/viewtopic.php?pid=2861#p2861</guid>
		</item>
		<item>
			<title><![CDATA[Re: Auto Select first row in grid after enter text in a textbox.]]></title>
			<link>https://myvisualdatabase.com/forum/viewtopic.php?pid=2860#p2860</link>
			<description><![CDATA[<p>Hi,</p><p>First Row select works. But the label(s) show nothing, is empty. I must still click on the Row or cell in grid for show label data?</p><p>Button1=the Search button.</p><p>procedure frmProdModel_Button1_OnAfterClick (Sender: string);<br />begin<br />&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; frmProdModel.GridProdMod.SelectedRow := 0;</p><p>end;</p>]]></description>
			<author><![CDATA[null@example.com (carlo_dj)]]></author>
			<pubDate>Fri, 17 Oct 2014 04:47:48 +0000</pubDate>
			<guid>https://myvisualdatabase.com/forum/viewtopic.php?pid=2860#p2860</guid>
		</item>
		<item>
			<title><![CDATA[Re: Auto Select first row in grid after enter text in a textbox.]]></title>
			<link>https://myvisualdatabase.com/forum/viewtopic.php?pid=2854#p2854</link>
			<description><![CDATA[<p>Hello,</p><br /><p>You should use event OnAfterClick of button for search and use this script:<br /></p><div class="codebox"><pre><code>Form1.TableGrid1.SelectedRow := 0;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (DriveSoft)]]></author>
			<pubDate>Thu, 16 Oct 2014 22:27:54 +0000</pubDate>
			<guid>https://myvisualdatabase.com/forum/viewtopic.php?pid=2854#p2854</guid>
		</item>
		<item>
			<title><![CDATA[Auto Select first row in grid after enter text in a textbox.]]></title>
			<link>https://myvisualdatabase.com/forum/viewtopic.php?pid=2851#p2851</link>
			<description><![CDATA[<p>Hi, <br />How to enable Automatic First Row Selection in Grid Control with script after enter search data in a textbox ? So not need first select record with mouse in grid to show data in a label or textbox. Thanks</p>]]></description>
			<author><![CDATA[null@example.com (carlo_dj)]]></author>
			<pubDate>Thu, 16 Oct 2014 20:30:47 +0000</pubDate>
			<guid>https://myvisualdatabase.com/forum/viewtopic.php?pid=2851#p2851</guid>
		</item>
	</channel>
</rss>
