Extra paren in example
On Page 69 of the 2008 book, there is an extra paren in the second grey code blok on the page. The text says:
NextWeek.Text = DateChooser.Value.AddDays(7)).ToString()
and it should say:
NextWeek.Text = DateChooser.Value.AddDays(7).ToString()
Good catch by Kurt - thanks.
S


