Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
120
UltraGrid does not appear on the form
posted

Hi,

Please can anyone help with a problem I'm experiencing with the UltraGrid?

When I drop an UltrGrid onto a WinForm the control appears at the bottom of the form (in the area where you'd expect to see ToolStrip or BindingSource controls), the Grid itself is not displayed on the actual form design area.

When I look at the code generated in the designer it is....

Private Sub InitializeComponent()
        Me.UltraGrid1 = New Infragistics.Win.UltraWinGrid.UltraGrid
        CType(Me.UltraGrid1, System.ComponentModel.ISupportInitialize).BeginInit()
        Me.SuspendLayout()
        '
        'UltraGrid1
        '
        Me.UltraGrid1.Location = New System.Drawing.Point(0, 0)
        Me.UltraGrid1.Name = "UltraGrid1"
        Me.UltraGrid1.TabIndex = 0
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(284, 262)
        Me.Name = "Form1"
        Me.Text = "Form1"
        CType(Me.UltraGrid1, System.ComponentModel.ISupportInitialize).EndInit()
        Me.ResumeLayout(False)

End Sub
Friend WithEvents UltraGrid1 As Infragistics.Win.UltraWinGrid.UltraGrid


I noticed that the line Me.Controls.Add(Me.UltraGrid1) was missing and I added it in.  This caused the Grid to appear on the form but it still wasn't right as it can't be selected or moved etc.  Even when I right click on grid, the popup menu is missing items such as the UltraGrid Designer, Layout Wizard etc..

To confuse matters further, other colleagues working on the same project do not have any problem and this would imply it's my setup rather than the project.  However, if I create a new project then I can add grids to forms without any issue.

I'm using version 8.3.20083.2102 of the UltraWinGrid.

Thanks,

Paul

Parents Reply Children
No Data