Search Result

Collapse
2 results in 0.0013 seconds.
Keywords
Members
Tags
move-to-next-record
  •  

  • Neekos
    started a topic code to move to next record

    code to move to next record

    ok i have the following snippet of code. All i want it to do is move to the next record, but i keep getting an error of: You cannot go to the specified record.

    Code:
    amount = DCount("*", "[Sheet1]")
    counter = 0
    Debug.Print amount
    
    Do
    emailgroup = Me![Email]
    [B]DoCmd.GoToRecord , , acNext[/B]
    emailgroup = emailgroup & ";" & Me![Email]
    counter = counter
    ...
    See more | Go to post

  • mariyana
    started a topic move to next record in vb.net
    in .NET

    move to next record in vb.net

    I have been trying to display the records from SQL server in a sequential manner using vb.net, but only the last record is displyed. how to display ????? in vb we were using rs.MoveNext and how to use in this.

    While dr.Read
    TextBox1.Text = dr(0).ToString( )
    TextBox2.Text = dr(1).ToString( )
    End While

    do help me out soon!!!!!!!!!!!
    See more | Go to post
Working...