for each with dataview

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

    #1

    for each with dataview

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

    for each r as datarow in mytable.rows
    next

    Thx

  • Sam

    #2
    Re: for each with dataview

    sorry that was stupid....
    for each r as datarow in myview.table.ro ws
    next


    .....

    Comment

    • Cor Ligthert

      #3
      Re: for each with dataview

      Sam,
      [color=blue]
      > sorry that was stupid....
      > for each r as datarow in myview.table.ro ws
      > next[/color]

      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


      Comment

      • Sam

        #4
        Re: for each with dataview

        yeah thanks :)

        Comment

        Working...