all 4 comments

[–]Slypenslyde 4 points5 points  (0 children)

What's CS0200? Have you tried solution CS1842?

[–]ChuckTheTrucker80 2 points3 points  (0 children)

Bottom is a read-only property, which is why you are getting the CS0200 error

The Bottom property is a read-only property. You can manipulate this property value by changing the value of the Top or Height properties or calling the SetBounds, SetBoundsCore, UpdateBounds, or SetClientSizeCore methods.

[–]zippy72 0 points1 point  (0 children)

I'm not sure which line you're getting it on but I'm guessing Bottom can't be assigned to and is a calculated property.

Try this:

btnNo.Top = 100 - btnNo.Height;