Getting the current row from an EpiUltraGrid

I actually have another quick question that is related somewhat to getting the row. Right now I have it set up so that when you click on a row, it will look at the data in one column and use it to populate data in the same row of another column.

I would like for this copy of data to also take place for all the rows when you use the shift+click function between rows.

Would anyone happen to have some advice as to how I should go about this?

Thank you for your time!

--- In vantage@yahoogroups.com, "gkoutre" <gkoutre@...> wrote:
>
> Thank you that helped a lot!
>
> --- In vantage@yahoogroups.com, Karen Schoenung <kschoenung@> wrote:
> >
> > This should work to get you started...
> >
> > Private Sub ugdEpiCustom1_AfterRowActivate(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles ugdEpiCustom1.AfterRowActivate
> > '// ** Place Event Handling Code Here **
> > Dim activeRow As UltraGridRow = ugdEpiCustom1.ActiveRow
> >
> > Dim jobnumber as String = ugdEpiCustom1.ActiveRow.Cells(0).Value.ToString
> > Dim partnumber as String = ugdEpiCustom1.ActiveRow.Cells(1).Value.ToString
> >
> > From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of gkoutre
> > Sent: Friday, May 24, 2013 8:10 AM
> > To: vantage@yahoogroups.com
> > Subject: [Vantage] Getting the current row from an EpiUltraGrid
> >
> >
> >
> > Hello,
> >
> > I am currently working on an application where I need to get the current row selected in an EpiUltraGrid. How would I be able to pull this information?
> >
> > Thank you for the time and help!
> >
> >
> >
> > [Non-text portions of this message have been removed]
> >
>
Hello,

I am currently working on an application where I need to get the current row selected in an EpiUltraGrid. How would I be able to pull this information?

Thank you for the time and help!
This should work to get you started...

Private Sub ugdEpiCustom1_AfterRowActivate(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles ugdEpiCustom1.AfterRowActivate
'// ** Place Event Handling Code Here **
Dim activeRow As UltraGridRow = ugdEpiCustom1.ActiveRow

Dim jobnumber as String = ugdEpiCustom1.ActiveRow.Cells(0).Value.ToString
Dim partnumber as String = ugdEpiCustom1.ActiveRow.Cells(1).Value.ToString

From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of gkoutre
Sent: Friday, May 24, 2013 8:10 AM
To: vantage@yahoogroups.com
Subject: [Vantage] Getting the current row from an EpiUltraGrid



Hello,

I am currently working on an application where I need to get the current row selected in an EpiUltraGrid. How would I be able to pull this information?

Thank you for the time and help!



[Non-text portions of this message have been removed]
Thank you that helped a lot!

--- In vantage@yahoogroups.com, Karen Schoenung <kschoenung@...> wrote:
>
> This should work to get you started...
>
> Private Sub ugdEpiCustom1_AfterRowActivate(ByVal Sender As Object, ByVal Args As System.EventArgs) Handles ugdEpiCustom1.AfterRowActivate
> '// ** Place Event Handling Code Here **
> Dim activeRow As UltraGridRow = ugdEpiCustom1.ActiveRow
>
> Dim jobnumber as String = ugdEpiCustom1.ActiveRow.Cells(0).Value.ToString
> Dim partnumber as String = ugdEpiCustom1.ActiveRow.Cells(1).Value.ToString
>
> From: vantage@yahoogroups.com [mailto:vantage@yahoogroups.com] On Behalf Of gkoutre
> Sent: Friday, May 24, 2013 8:10 AM
> To: vantage@yahoogroups.com
> Subject: [Vantage] Getting the current row from an EpiUltraGrid
>
>
>
> Hello,
>
> I am currently working on an application where I need to get the current row selected in an EpiUltraGrid. How would I be able to pull this information?
>
> Thank you for the time and help!
>
>
>
> [Non-text portions of this message have been removed]
>