or
control, but several RichTextBox controls. For example, when my focus is in Subject field, I should be able to add a Mail Merge to that control. When my focus is in main body, all mail merge fields should go there. Of course, when I scan through items, both should change.
If someone can attach a sample program, it would be best.
Thank you in advance.
Michael
private void grid_RowLoaded(object sender, RowLoadedEventArgs e)
{
if (e.Row is GridViewRow && !(e.Row is GridViewNewRow))
{
// at this point e.Row.Cells.Count is 0
}
}