Hello, usally when i make programs i encounter many errors in my code, i usally just find ways around them. Why whenever i type something with this in it:

Code:
 
'the following code Should set the location of thecontrol to 50,50 (50 on the x axis and 50 on the y axis)
thecontrol.location = thecontrol.location(50,50)
or i tried many alternates to this solve this (maybe)

Code:
'heres another way i TRIED
thecontrol.location = (50, 50)
That doesnt work either.

How would i change the location of thecontrol?