365文库
登录
注册
搜索
下载二维码
App功能展示
海量免费资源 海量免费资源
文档在线修改 文档在线修改
图片转文字 图片转文字
限时免广告 限时免广告
多端同步存储 多端同步存储
格式轻松转换 格式轻松转换
用户头像
何必不快樂 上传于:2024-04-08
弹球游戏  Dim x_step As Integer Dim y_step As Integer Private Sub command1_Click() If Timer1.Enabled = True Then Timer1.Enabled = False Else Timer1.Enabled = True End If If command1.Caption = "暂停" Then command1.Caption = "继续" Else command1.Caption = "暂停" End If End Sub Private Sub Form_Load() x_step = 200 y_step = 200 End Sub Private Sub Picture1_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = 37 Then If Line1.X1 < 0 Then Line1.X1 = 0: Line1.X2 = 2000
tj