CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    DataGrid - HScroll

    Can anyone tell me How to detect left Scorlling or right Scrolling ?


  2. #2
    Join Date
    May 1999
    Location
    Omika, Japan
    Posts
    729

    Re: DataGrid - HScroll

    Only way is by remembering the previous value using a static variable (or a form level global - would be over kill)

    Check the current value and the saved value and the -ve/+ve should give left/right scroll.

    This is the standard method for any scroll - i think it should work for DBDrid also.

    RK

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