发布网友
共1个回答
热心网友
Private Sub Command1_Click()
Call JS
End Sub
Private Sub JS()
Dim I As Integer
For I = 7 To 100 Step 7
Print I; ",";
Next I
End Sub