Hi
I'm very new to both ASP.NET and VB so I'm working through a study book but have hit an error. i dont know if the error is in the book as I;ve copied the code from there or if it's the fact that I've done something silly but basically I recieve the followingh error when I debug using Visual Studio:
'Error 1 Handles clause requires a WithEvents variable defined in the containing type or one of its base types.' This is referring to line 4 column 101 of the below code. Please can someone tell me how to resolve the error, it's driving me mad!!! The file in question is only on my pc so I'm assuming sending a link to it wont be useable and have had to post the code below instead:

Thank you!!!
Partial
Public Class Currency
Inherits System.Web.UI.Page
Protected Sub ShowGraph_ServerClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles ShowGraph.ServerClick
Graph.Src =
"Pic" + Currency.SelectedIndex.ToString() + ".png"
Graph.Visible =
True
End Sub
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)