About 9,050 results
Open links in new tab
  1. Drag n drop fails - Object reference not set to an instance of an …

    Jan 24, 2016 · "Object reference not set to an instance of an object". The difference would be that I do create the DataGridView in code behind. Also there's several of them. One in each tab. …

  2. Problem with scrollbars of panel in C#

    Dec 5, 2008 · When the height and width of dataGridView increases and becomes more than panel size, scrollbars of panel are enabled. When i scroll using any scrollbar and click on the …

  3. DataGridView - Increase max scroll value

    Apr 12, 2011 · I created a control that inherits from DataGridView so that a footer can be added after the last row. The additional row is just painted in the overridden OnPaint method. It works …

  4. paging in the WinForm DataGridView-control

    Oct 31, 2008 · See for the DatagridView in ASP.NET. There is a property called 'Allowpaging' that takes care of that feature automatically

  5. Datagridview : scrolling through rows with arrow keys

    Mar 25, 2016 · I have a datagridview control into a SplitContainer (for vertical adjustment), and that SplitContainer is into another SplitContainer (for horizontal adjustment). I would like to be …

  6. how to print a dataGridView - social.msdn.microsoft.com

    Dec 26, 2006 · I want to print a dataGridView but when i try msdn's code (which is below) gridview is in normal size but records are very small and not in the gridview.

  7. How to get the column index in the EditingControlShowing Event

    Sep 19, 2007 · You can get the current cell of the DataGridView, then get the column index of this cell. Try like the following: Code Snippet int colIndex = …

  8. DataGridView Default Error Dialog --------------------------- The ...

    Jan 9, 2012 · for (int i = 0; i < dt.Columns.Count; i++) //Getting Columns Name present in the table { dataGridView1.Rows.Insert (i, ""); dataGridView1.Rows.Insert (i, ""); cname ...

  9. DataGridView CheckBox column appearence

    Jun 19, 2007 · To make the datagridview interface clearer i would like to change the appearence of my chechbox. I know that the CheckBox control of Windows Forms has a property named …

  10. Select and drag a datagridview row with a single click

    Oct 19, 2015 · I have a DataGridView, with a context menu, that also is the source for a number of drapdrop operations. I am using the "FullRowSelect" mode. At the moment, to get the …