all i need to do this when the cusor moves over a certain area of a map the word Cardiff appears in textbox, the cordinates are X = 2040 And Y = 2280. this is what i have come up with so farPrivate Sub Picture1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)

If Picture1.Picture = "2040" and "2280" Then
Text1.Text = "Cardiff"

End Sub

please help