Help with some code

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • John Rogers

    Help with some code

    I just found this code and I am eager to get it working to
    see if it really works. I am having a few problems with
    some lines that are not referencing peoperly. Can someone
    show me how to correct these errors.

    ..Items and .Columns the compiler does not like.

    public System.Windows. Forms.ProgressB ar ListView_AddPro gressBar(ref
    System.Windows. Forms.ListView pListView, int ListViewItemInd ex, int
    ColumnIndex)
    {
    Rectangle r;
    System.Windows. Forms.ProgressB ar pb = new
    System.Windows. Forms.ProgressB ar();
    // .Items here
    r = pListView.Items (ListViewItemIn dex).Bounds();
    // .Columns here
    r.Width = pListView.Colum ns(ColumnIndex) .Width;
    if (ColumnIndex 0)
    {
    // .Columns here
    r.X = r.X + pListView.Colum ns(ColumnIndex - 1).Width;
    }
    pb.Parent = pListView;
    pb.SetBounds(r. X, r.Y, r.Width, r.Height);
    pb.Visible = true;
    return pb;
    }

    Appreciate it

    John-


Working...