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
300
how to fill data manually Ultra win grid ultra grid
posted

 

I want to fill data manually ultra wingrid Ultragrid using vb.net

like 

for i=1 to 10

ultragrid....(i)="1"

 

next i

 

how to do it.

 

________

Thank you.

Parents
  • 469350
    Offline posted

    Hi,

    The UltraWinGrid must have a DataSource in order to function. For a sample case like you have here, I recommend using the UltraDataSource component, or maybe a BindingList<T>.


                BindingList<string> bindingList = new BindingList<string>();
                for (int i = 0; i < 10; i++)
                    bindingList.Add(i.ToString());

                this.ultraGrid1.SetDataBinding(bindingList, null);

     

     

Reply Children