Re: VB6 Datagrid question - number of selected rows?
On Tue, 20 Jul 2004 02:37:49 GMT, "Hmmm..." <blahblah@blah. com> wrote:
[color=blue]
>How can I programmaticall y determine the number of selected rows in a bound
>Datagrid? Thanks.
>[/color]
Been a while, but isn't there a .Selbookmarks.C ount ?
Re: VB6 Datagrid question - number of selected rows?
"Hmmm..." <blahblah@blah. com> wrote in message
news:1A%Kc.1815 5$gt1.6041@nwrd dc02.gnilink.ne t...[color=blue]
> How can I programmaticall y determine the number of selected rows in a[/color]
bound[color=blue]
> Datagrid? Thanks.
>
>[/color]
try :
dim iSelectedRows
iSelectedRows = DataGrid1.SelBo okmarks.Count
Comment