我有這個代碼描繪了(B;5)
單元格紅色,並開始移動它來回移動。Excel VBA同時發佈多個宏
Declare Sub Sleep Lib "kernel32" (ByVal dwMillisecons As Long)
Private Sub Button1_Click()
Move
End Sub
Sub Move()
gr = 1
st = 1
While Cells(2, 2) = 0
If st > 1 Then
Cells(5, st - 1).Clear
End If
Cells(5, st + 1).Clear
Cells(5, st).Interior.Color = vbGreen
st = st + gr
If st > 48 Then
gr = -1
End If
If st < 2 Then
gr = 1
End If
Sleep 100
DoEvents
Wend
End Sub
如何使這將油漆(B;7)
和(B,9)
細胞,也將開始在同一時間移動它們?
什麼是你的代碼嗎? –
它以綠色繪製細胞,並開始來回移動。 – Faux