level 3
百里奚举于市
楼主
Public Class drivecar Private Sub go_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles go.Click
While carpic.Width < 762
carpic.Width = carpic.Width + 20
If carpic.Width < 762 Then
MessageBox.Show("距离终点你还有" & 762 - carpic.Width & "米")
Else
MessageBox.Show("已到达终点")
Me.Close()
End If
End While
End Sub
2012年05月05日 01点05分
1
While carpic.Width < 762
carpic.Width = carpic.Width + 20
If carpic.Width < 762 Then
MessageBox.Show("距离终点你还有" & 762 - carpic.Width & "米")
Else
MessageBox.Show("已到达终点")
Me.Close()
End If
End While
End Sub