for each with dataview

  • Thread starter Thread starter Sam
  • Start date Start date
S

Sam

Hi,
Is there a way of doing something similar for a dataview :

for each r as datarow in mytable.rows
next

Thx
 
sorry that was stupid....
for each r as datarow in myview.table.rows
next


.....
 
Sam,
sorry that was stupid....
for each r as datarow in myview.table.rows
next

What you now use is the same as
\\\
for each r as datarow in mytable
next
///
You need something as
\\\
for each r as datarowview in myview
next
///

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