Picture1.point(x,y)可以用,Image1.point(x,y)应该怎么写?
一个游戏,好像能检测VB生成的EXE文件中的Picturebox,只要有Picturebox的vb exe程序,游戏就会自动断线。游戏地址http://www.为了解决这个问题,我测试了下,image控件可以使用。
下面是问题:
Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Label1.Caption = Point(X, Y)
End Sub
在image的鼠标移动事件中,可以正常获得x,y点的颜色。但在Command1_Click事件中写Label1.Caption = Image1.point(x,y)就提示错误,这里应该怎么写?
不要让我改为直接用Picturebox控件,上面说过Picturebox会让游戏断线。