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:
dgv.Columns.Add(nbValue);Code:nbText nbValue = new nbText(); nbValue.Name = "nbValue"; nbValue.HeaderText = "nbValue"; //HeaderText is not available... nbValue.Width = 300;
How can I add this nbText control to the dgv?
Thanks




Reply With Quote