VB6 Datagrid question - number of selected rows?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Hmmm...

    VB6 Datagrid question - number of selected rows?

    How can I programmaticall y determine the number of selected rows in a bound
    Datagrid? Thanks.


  • Frank Adam

    #2
    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 ?

    --

    Regards, Frank

    Comment

    • Rowland Banks

      #3
      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

      HTH,
      Rowland


      Comment

      Working...