我尝试了下面的代码,但它说它必须设置或评估值,这是我不知道该怎么做。
Something.Location.X(Something.Location.X - 100 * w)
有人可以帮忙吗?
答案 0 :(得分:1)
您需要使用" ="
指定值也许这样使用New Point(X,Y):
Something.location = New Point(something.location.x - 100 * w, something.location.y)
答案 1 :(得分:0)
我们将在两个简短的陈述中完成。我们将使用对象的top
和left
属性。 Top
我会告诉我们距离顶部的距离,Left
会告诉我们距离左边的距离。
Private Sub EnterCodeHere ()
Something.Top = 20
Something.Left = 100 'Or 100*w (Assuming w is a variable) According to your code.
End Sub
我希望它完美无缺!