Wednesday, September 23, 2009

hw

test numbers, and print:
both even
both odd
one even and one odd
pg 128 even exercises in 4.1 from 40 to 48

Wednesday, September 9, 2009

the code for pressing enter to make it navigate
Private Sub txtAddress_KeyUp(ByVal sender As System.Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles txtAddress.KeyUp
If e.KeyCode = Keys.Enter Then
myInternetExplorer.Navigate(txtAddress.Text)
End If

End Sub