How can i detect the selected line in datagrid and how to send the selected
value to other form ?

I need know whats cliente cod was selected to display complet information in
other form..

Tanks

Re: how detect selected line in datagrid by Felipe

Felipe
Thu Feb 26 07:47:12 CST 2004

Hyo Rafael,
I use this way:

If grd.IsSelected(grd.CurrentRowIndex) Then
mCliCod = CType(grd.Item(grd.CurrentRowIndex, 0), Short)
Endif

So, with .CurrentRowIndex u can get the line selected,
the .IsSelected is for error handling when no item is selected.

well, u cand send information to ur form using Constructor parameters,
Shared variables,
or many other forms, i guess.

Cya,
Felipe T.

"Rafael Metring" <rafael_metring@pop.com.br> wrote in message
news:e63di0G$DHA.3712@tk2msftngp13.phx.gbl...
> How can i detect the selected line in datagrid and how to send the
selected
> value to other form ?
>
> I need know whats cliente cod was selected to display complet information
in
> other form..
>
> Tanks
>
>
>



Re: how detect selected line in datagrid by William

William
Thu Feb 26 08:16:44 CST 2004

Like Felipe mentions, you can check CurrentCell or you can use .HitTest
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/
frlrfsystemwindowsformsdatagridhittesttypeclasstopic.asp
"Rafael Metring" <rafael_metring@pop.com.br> wrote in message
news:e63di0G$DHA.3712@tk2msftngp13.phx.gbl...
> How can i detect the selected line in datagrid and how to send the
selected
> value to other form ?
>
> I need know whats cliente cod was selected to display complet information
in
> other form..
>
> Tanks
>
>
>