Wednesday, December 2, 2009

A link to Jamie Levy's Website

is here.

Thursday, October 22, 2009

Sample Midterm Exams

Here and here.

Wednesday, October 21, 2009

http://download.microsoft.com/download/9/a/5/9a52f4fc-50d8-4811-961f-97bcff44b644/VS%202008%20RTM%20VBSamples.zip

Wednesday, October 14, 2009

http://docs.google.com/View?id=ajbqhgmq9qdz_12hsbwfrhb

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