I have a Windows form with a calendar which is hidden. I want to show the form right under the current cell of a DataGridView. The position changes according to the position
You can use paygrid.PointToScreen() method.
form_date.Location = paygrid.PointToScreen( paygrid.GetCellDisplayRectangle(e.ColumnIndex, e.RowIndex, false).Location);