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
140
How to display data using UltraWinGrid Quick Start
posted

I have created a grid using the UltraWinGrid Quick start.

For the data schema I select “Bind the control to an existing data source now.

I select the data source – Which in the Band Preview screen displays the columns

Using all the defaults get to finish.

 

When I run debugging. The grid displays with all the correct columns but no data.

 

Below is the code created by the Quick Start along with the TableAdapter info

 

 

 

Public Class Form2

 

    Private Property SfworkdataTableAdapter As Object

 

    Private Sub Form2_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load

 

        'TODO: This line of code loads data into the 'PuhsdDataSet.sfworkdata' table. You can move, or remove it, as needed.

        Me.SfworkdataTableAdapter.Fill(Me.PuhsdDataSet.sfworkdata)

 

    End Sub

 

 

 

    Private Function PuhsdDataSet() As Object

        Throw New NotImplementedException

    End Function

 

    Private Sub UltraGrid1_InitializeLayout(sender As System.Object, e As Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs) Handles UltraGrid1.InitializeLayout

 

    End Sub

End Class