Passing a dataview to a subroutine

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've successfully created a dataview that I want to passing to another
subroutine. See Example below:

Creation of dataview:
For Each CriteriaDetailRow In AlertData.AlertDS.Tables("EventCriteria").Rows

Dim foundRows() As DataRowView = Min_NumView.FindRows(New
Object() {CriteriaDetailRow.Item("Min_Num")})

For Each MinGPSHistoryDetailRow In foundRows

I want to pass the foundrows collection as follows:
 
Larry,

????

This is incomplete, do yo know that.

A normal existing dataview can always be passed by value because it is only
an object that holds a lot of references to a datatable.

I hope this helps?

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top