Excel 97 Annoyances by Woody Leonhard, Lee Hudspeth, T.J. Lee The unconfirmed error reports are from readers. They have not yet been approved or disproved by the author or editor and represent solely the opinion of the reader. Here's a key to the markup: [page-number]: serious technical mistake {page-number}: minor technical mistake : important language/formatting problem (page-number): language change or minor formatting problem ?page-number?: reader question or request for clarification This page was updated August 22, 2003. UNCONFIRMED errors and comments from readers: {180} Example 5-3 Top of Page; On Error Resume Next lngRowIndex = lngRowIndex + 1 For Each cbarControl In CommandBars(strCBarName).Controls This is wrong. The variable lngRowIndex must be incremented inside the For loop so it should read: On Error Resume Next For Each cbarControl In CommandBars(strCBarName).Controls lngRowIndex = lngRowIndex + 1