COURSE PACKAGE CORRECTIONS ========================== 1. Visual Basic 2, Slide Lec7-8: Change: Dim Length As Int To: Dim Length As Integer 2. Visual Basic 2, Slide Lec7-26: Change: Do While (Num <> -1) Then If (Num < Smallest) To: Do While (Num <> -1) If (Num < Smallest) Then 3. Visual Basic 2, Slide Lec7-30: Change: Text2.Text = Text2.Text & Mid(Text1.Text, Count, 1) To: Text2.Text = Text2.Text & thisChar [Note: If you wanted, you could also change thisChar to ThisChar, because this is the standard form of an identifier.] 4. Internet, Slide Lec10-9: Change "ASDL" to "ADSL" 5. Number Systems, Page 4 of 14: Change the first question to: 1. Convert (735)8 to Hexadecimal... 7 3 5 | | | | | | 111 011 101 Regroup into 4 bits... 0001 1101 1101 | | | | | | 1 D D Thus, (735)8 = (1DD)16