Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7818857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T06:43:24+00:00 2026-06-02T06:43:24+00:00

Somewhat new to .NET 4.0 C# development and have a quick question. I am

  • 0

Somewhat new to .NET 4.0 C# development and have a quick question. I am working on a basic windows form application where I am using a DataGridView to view data stored in an Access Database.

I would like to use ALT+N to select the next row down and ALT+P to select the next row up (wrapping if possible or maybe just not move at all if already at top of row list or bottom).

I have done a fair amount of looking into this via the internet and I am just not seeing how I can accomplish this, and I am not seeing an option via the properties of the control. :-/

Can anyone provide a solution that will work in a .NET 4.0 C# development environment?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T06:43:26+00:00Added an answer on June 2, 2026 at 6:43 am

    I ended up using the below event code for a “Next” and “Previous” button making use of the “Alt+N” and “Alt+P” hot keys. Thanks to “Chuck Wilbur” for his contribution as well to this solution.

    private void btnNext_Click(object sender, EventArgs e)
            {
                //Get number of records displayed in the data grid view and subtract one to keep in line with index that starts with 0
                int numOfRows = dataGrdViewCases.Rows.Count - 1;
    
                //Get current row selected
                int index = dataGrdViewCases.SelectedRows[0].Index;
    
                // Determine if the next record exists or cycle back to the first record in the set
                if (index < numOfRows)
                {
                    //Change the selected row to next row down in the data set
                    dataGrdViewCases.CurrentCell = dataGrdViewCases[0, index + 1];
                }
                else
                {
                    // Select the first record of the data set
                    dataGrdViewCases.CurrentCell = dataGrdViewCases[0, 0];
                }
            }
    
            private void btnPrevious_Click(object sender, EventArgs e)
            {
                //Get number of records displayed in the data grid view and subtract one to keep in line with index that starts with 0
                int numOfRows = dataGrdViewCases.Rows.Count - 1;
    
                //Get current row selected
                int index = dataGrdViewCases.SelectedRows[0].Index;
    
                // Determine if the previous record exists or cycle back to the last record in the set
                if (index != 0)
                {
                    //Change the selected row to next row down in the data set
                    dataGrdViewCases.CurrentCell = dataGrdViewCases[0, index - 1];
                }
                else
                {
                    // Select the first record of the data set
                    dataGrdViewCases.CurrentCell = dataGrdViewCases[0, numOfRows];
                }
            }
    

    By using the above event code I am able to cycle through the rows in a circular manner in either direction. Works well for me at least.

    Thanks again for the help and taking the time to assist “Chuck Wilbur”!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am somewhat new to LINQ and have a quick question regarding deleting. Say,
I have multiple business entities in VB.NET Windows Forms application. Right now they are
I'm using jquerymobile and asp.net MVC3 razor. I'm somewhat new to this, but figuring
I'm somewhat new to .Net, so go easy on me ;-). Anyway. I working
I would like to build a new web application using ASP.NET MVC3 and MongoDB.
I'm somewhat new to the ASP.NET MVC architecture and I'm trying to sort out
I am somewhat new to R, and i have this piece of code which
I am somewhat new to jQuery and I have a problem with something I
I am relatively new to ASP.NET programming, and web programming in general. We have
I have a somewhat complex custom user control, created in C# .NET, which is

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.