so this is probably the easiest thing ever. I am just having a brain cramp from workin on this thing and I can't think anymore. I am trying to declare 32 different points on a form. A picturebox can be dragged and dropped and it will pop up into the closest of those points. My problem is I can not figure out how to declare those points without there being an error.
Heres my code
CODE
Dim square1 As Point = (288,91)
Dim square2 As Point = (365,91)
Dim square3 As Point = (441,91)
Dim square4 As Point = (517,91)
Dim square5 As Point = (250,130)
Dim square6 As Point = (327,130)
Dim square7 As Point = (403,130)
Dim square8 As Point = (478,130)
Dim square9 As Point = (288,168)
Dim square10 As Point = (365,168)
Dim square11 As Point = (441,168)
Dim square12 As Point = (517,168)
Dim square13 As Point = (250,205)
Dim square14 As Point = (327,205)
Dim square15 As Point = (403,205)
Dim square16 As Point = (478,205)
Dim square17 As Point = (288,242)
Dim square18 As Point = (365,242)
Dim square19 As Point = (441,242)
Dim square20 As Point = (517,242)
Dim square21 As Point = (250,282)
Dim square22 As Point = (327,282)
Dim square23 As Point = (403,282)
Dim square24 As Point = (478,282)
Dim square25 As Point = (288,318)
Dim square26 As Point = (365,318)
Dim square27 As Point = (441,318)
Dim square28 As Point = (517,318)
Dim square29 As Point = (250,357)
Dim square30 As Point = (327,357)
Dim square31 As Point = (403,357)
Dim square32 As Point = (478,357)
It says i have 32 errors. The error says ") expected". I do not know what I am doing wrong. Please help