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
220
ultragrid Cardview cell to string?
posted

Hi,

I'm using ultragrid in c#.net 2005....

i have my ultragrid displaying data as a CardView...

How do i send the first row of the cardview data to a string?

 

cheers,

 

  • 220
    Verified Answer
    posted

    Problem solved: 

    for (int i = 0; i < ultradatagridview.Rows.Count; i++)
    {
    string PONo = ultradatagridview.Rows[i].Cells["No_"].Value.ToString();
    System.
    Console.WriteLine(PONo);
    }