CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Feb 2001
    Posts
    33

    How to check it is the first record?

    How to check the cursor is now pointing to the first record?

    Other than using :
    rs.MovePrevious
    if rs.bof then
    'do something
    end if

    I would like to know is there any alternative methods


  2. #2
    Join Date
    Sep 2000
    Location
    Ottawa, Ontario
    Posts
    356

    Re: How to check it is the first record?

    rs.MoveFirst does this.

    Jean-Guy


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured