I have a Form with a DataGridView.
RMShyperlink = new System.Windows.Forms.DataGridViewLinkColumn(); //create a link column column
dataGridView1.Columns.Add(RMShyperlink); //add to my datagrid
for(int i =0 ; i < dataGridView1.Rows.Count; i++)
{
dataGridView1.Rows[i].Cells[0].Value = "http://localhost"; //i set the value
//but the value is null when I inspect it
}
how can I write a value to the cell?