Hullo there,
C#Net 2003 Window Application
I need your help again.
I am trying to loop through the DataGrid rows and confirm that FirstColumn which hold Checkbox is TRUE. If it's TRUE, I need to retrieve the Customer FirstName(2nd Column) and LastName (3rd Column) and transfer the data onto WORD LETTER TEMPLATE for printing.
I wrote this script and it's completely wrong:
private void BtnSelectRow(object sender, System.EventArgs e)
{
foreach (datarow DR in this.DataGrid1)
{
if ( DR.Column(0).checked == true )
strFName = DR.Cell(1).text;
strLName = DR.Cell(2).text;
}
}
I need your help. Please Help me. Thanks