Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. General Programming
  3. C#
  4. C# DataGridView Cell Focus

C# DataGridView Cell Focus

Scheduled Pinned Locked Moved C#
csharphelpquestion
2 Posts 1 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    StyleGuide
    wrote on last edited by
    #1

    Hi there, I am using a DataGridView with an Add button. On pressing the Add button, I add a new row to a table in the underlying dataset. Heres the problem : I then want to set the focus to the first cell of the added row - and for the user to start typing the contents of the cell, without haveing to click on the cell.... heres a code snippet : ..... dataGridViewInvoices.Rows[i - 1].Cells[0].Selected = true; then I guess I need something like the Set equivalent of - dataGridViewInvoices.Rows[i - 1].Cells[0].IsInEditMode = true; //Invailid as property is read only. ..... any ideas? Thanks Jonny

    S 1 Reply Last reply
    0
    • S StyleGuide

      Hi there, I am using a DataGridView with an Add button. On pressing the Add button, I add a new row to a table in the underlying dataset. Heres the problem : I then want to set the focus to the first cell of the added row - and for the user to start typing the contents of the cell, without haveing to click on the cell.... heres a code snippet : ..... dataGridViewInvoices.Rows[i - 1].Cells[0].Selected = true; then I guess I need something like the Set equivalent of - dataGridViewInvoices.Rows[i - 1].Cells[0].IsInEditMode = true; //Invailid as property is read only. ..... any ideas? Thanks Jonny

      S Offline
      S Offline
      StyleGuide
      wrote on last edited by
      #2

      answered my own question.... int i = dataGridViewUsers.RowCount; dataGridViewInvoices.CurrentCell = dataGridViewInvoices.Rows[i - 1].Cells[1]; dataGridViewInvoices.BeginEdit(false); Jonny

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups