Hi,
There is a control called nbText (which formats numbers) which inherits from TextBox.
How can I place this nbText control inside a datagridview (dgv) control in windows?

The following does not seem to work:
Code:
nbText nbValue = new nbText();
nbValue.Name = "nbValue";
nbValue.HeaderText = "nbValue"; //HeaderText is not available...
nbValue.Width = 300;
dgv.Columns.Add(nbValue);

How can I add this nbText control to the dgv?

Thanks