VB & VBA in a Nutshell by Paul Lomax Here are the changes made in the 1/99 reprint: {42} Line 3 of the first program listing on the page, the line of code Dim intIndex As Integer now reads Dim iIndex As Integer {322} First code example after first full block of text, the line: For i = LBound(sArray) to UBound(sArray) Step-1 now reads: For i = UBound(sArray) to LBound(sArray) Step -1 {597} Descriptions of functions Ucase() and Ucase$() used to read "converted to lowercase" but now read "converted to uppercase"