Hi Experts,
I am using windows infragistics controls in my application
Is there a way to create the ultrawingrid dynamically through coding and add the grid control to the form.
As I am not able to find out the object for ultrawingrid (it is a namespace)
I'm not sure what you are asking, exactly. Creating a control at run-time is basically the same for any control. There's nothing special about the grid in this regard.
private void Form1_Load(object sender, EventArgs e) { Infragistics.Win.UltraWinGrid.UltraGrid grid = new Infragistics.Win.UltraWinGrid.UltraGrid(); this.Controls.Add(grid); }