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

  • Home
  • SEARCH
  • 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 4541506
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T15:14:55+00:00 2026-05-21T15:14:55+00:00

I have a DataGridView where I am scanning in checks from a keyboard emulated

  • 0

I have a DataGridView where I am scanning in checks from a keyboard emulated device.

While keypreview is on and I’m waiting for input, the user cannot type anything in otherwise it grabbed by my method to read the input by the check reader. All this is working fine.

After the scan, I am adding to the datagridview a row, which is being put at the end.

How do I make the datagridview scroll to the bottom after each add? I wind up with a few hundred checks and it’s at the top. So, every time they scan, they have no idea what was scanned in.

This is my method that creates the row:

private void Timer1Tick(object sender, EventArgs e)
{
  _secondswaited += 1;
  if (_secondswaited == SecondsToWait)
  {
    timer1.Enabled = false;

    var psc = new ParseScannedCheckNumbers();
    if (psc.ParseCheck(_checkData))
    {
      label_Status.Text = @"Scan Next Check";

      var ct = checkTrans.IndividualCheck.NewIndividualCheckRow();
      ct.Date = DateTime.Now.ToShortDateString();
      ct.AccountNumber = GetAccountNumber(psc.BankAccountNumber);
      ct.Name = GetAccountName(ct.AccountNumber);
      ct.AccountBalance = GetAccountBalance(ct.AccountNumber);
      //ct.CheckAmount = 0;
      ct.BankRoutingNumber = psc.BankRoutingNumber;
      ct.BankAccountNumber = psc.BankAccountNumber;
      ct.CheckNumber = psc.CheckNumber;
      ct.Status = "Entered";
      checkTrans.IndividualCheck.Rows.Add(ct);
      var dgvcount = dgv_Checks.Rows.Count;
      **dgv_Checks.Rows[dgvcount - 1].Selected = true;**       
    }
    else
    {
      label_Status.Text = @"Scan failed. Rescan check.";
    }
    _checkData = string.Empty;
    _secondswaited = 0;

    var rs = new Registry.RegistrySettings();
    if (!rs.ScanChecksContinuous)
    {
      StopScanning();
      label_Status.Text = @"Success!";
      EditLastRowEntered();
    }

    label_ChecksScanned.Text = (dgv_Checks.RowCount - 1).ToString();
  }
}

The part that is bold is where I attempted to move to the last row, without success.

Thanks!

  • 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-05-21T15:14:56+00:00Added an answer on May 21, 2026 at 3:14 pm

    I’d use the DataGridView.CurrentCell property. Try this in place of the line you’re having problems with:

    dgv_Checks.CurrentCell = dgv_Checks.Rows[dgvcount - 1].Cells[0];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have datagridview with paging enabled. But when I want to move from page
i have a datagridview which is binded on a table and i cannot display
I have a DataGridView that displays data from a MS Access database. I'm using
I have a DataGridView with 4 columns. When a user double clicks the row,
hi i have datagridview name data1, and binding data to data1 from database, when
I have a dataGridView that has a column with checkboxes. Whenever the user clicks
I have a DataGridView in a WinForm. I fill the DataGridView from a database
I have datagridview in form1. How can I access datagridview from form2. private void
I have a DataGridView with cells from a database file that contains data. Basically,
I have DataGridView and I set DataSource of datagridview by using DataTables. DataTable dt

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.